6 followers
My ongoing journey in software development.
A very crucial part of software projects is the estimation. It takes place in the early stages of development, be that sequential or iterative. The...
Memoization is useful when you have some code that is used multiple times to avoid computing it each time. Suppose the following example: class...
All the time. ยท Unless you are new to the world of ruby you're probably familiar with unless. It's the inverse of if. The code is executed when the...