#software-development
Read more stories on Hashnode
Articles with this tag
If we have a problem where we're interested in knowing the smallest in element in one part of a given set of elements and the biggest element in the...
This pattern is useful when dealing with problems involving arrays containing numbers in a range. How would you solve the following problem? Given n...
This is quite a nifty pattern to apply to linked lists (also arrays and other sequences). Also known as: Hare and Tortoise algorithm. Floyd's...