Performance Premature optimization Avoiding memory allocations Don’t create intermediate strings when writing to an IO Use string interpolation instead of concatenation Avoid IO...
» Tips & Tricks » Loop Over VM Definitions » Overwrite host locale in ssh session » Tips & Tricks The Vagrantfile is a very flexible configuration format. Since it is justRub...
Iterating over Result s Ignore the failed items with filter_map() Fail the entire operation with collect() Collect all valid values and failures with partition() Iteratin...
Vectors Vectors Vectors are re-sizable arrays. Like slices, their size is not known at compiletime, but they can grow or shrink at any time. A vector is represented using3 word...
Fast Powering Algorithm Naive Algorithm Complexity Fast Power Algorithm References Fast Powering Algorithm Read this in other languages: français . The power of a number s...