Best of Algorithms — November 2023
- 1
- 2
Medium·2y
Unlocking the Power of PHP Generators
PHP generators provide a way to iterate over large datasets or arrays without loading everything into memory. They work by processing one piece of data at a time using the 'yield' keyword. Generators can also receive input and return values. They are useful for memory management and handling large files.
- 3
- 4
Community Picks·3y
A Look At The Fibonacci Sequence: A Recursive and Iterative Solution
The Fibonacci sequence is a sequence of numbers where each number is the sum of the two previous numbers. It was introduced by the Italian mathematician Fibonacci. The article explores both iterative and recursive solutions for the Fibonacci sequence in JavaScript.
- 5
freeCodeCamp·3y
Master Technical Interviews
A course on the freeCodeCamp.org YouTube channel that prepares developers for technical job interviews. It covers interview formats, Big O notation, data structures, advanced data structures, algorithms, coding patterns, best practices, common pitfalls, and expert tips. The course is taught by experienced engineer Parth Vyas.