Best of AlgorithmsNovember 2023

  1. 1
    Article
    Avatar of devtoDEV·3y

    20 Essential Coding Patterns to Ace Your Next Coding Interview

    Learn about coding patterns that can enhance problem-solving skills and help ace coding interviews.

  2. 2
    Article
    Avatar of medium_jsMedium·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. 3
    Article
    Avatar of communityCommunity Picks·3y

    Three Simple Algorithms with JavaScript

    The article provides solutions to three simple algorithms in JavaScript, including reversing a string, reversing an integer, and capitalizing a string.

  4. 4
    Article
    Avatar of communityCommunity 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. 5
    Article
    Avatar of freecodecampfreeCodeCamp·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.