Best of Algorithms2023

  1. 1
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    Learn JavaScript by Building 21 Projects – a Major freeCodeCamp Curriculum Update

    freeCodeCamp has launched a major update to the JavaScript Algorithms and Data Structures Certification. Readers can now learn JavaScript by building 21 projects, including certification projects. The projects cover a wide range of topics and concepts, such as form validation, string and array methods, recursion, functional programming, regular expressions, object-oriented programming, and more.

  2. 2
    Article
    Avatar of devtoDEV·2y

    Personal Roadmap for becoming a better software developer in 2024

    Suggestions to become a better software developer: focus on building a strong foundation, learn data structures and algorithms, improve communication and writing skills, solve problems on LeetCode and HackerRank, be active on LinkedIn, enhance frontend skills, create a new portfolio, invest in courses and books, prioritize consistency and discipline.

  3. 3
    Video
    Avatar of fireshipFireship·2y

    10 weird algorithms

    Explore 10 weird algorithms that are used to solve interesting real-world problems in science, gaming, machine learning, and digital security.

  4. 4
    Article
    Avatar of 30seconds30 seconds of code·3y

    Big-O Cheat Sheet

    Big-O Cheat Sheet represents an algorithm's worst-case complexity. It uses algebraic terms to describe the complexity of an algorithm, allowing you to measure its efficiency and performance. Below you can find the best, average and worst time complexities for the most common array sorting algorithms.

  5. 5
    Article
    Avatar of habrhabr·3y

    From Zero to Hero: LeetCode

    The post provides a breakdown of different levels of LeetCode problem-solving and offers tips for progressing to the next level. It emphasizes the importance of practice, studying algorithms and data structures, and improving communication skills for interviews.

  6. 6
    Article
    Avatar of quastorQuastor Daily·3y

    How Booking.com Searches Through Millions of Locations in Milliseconds

    The data structure powering this map is a Quadtree, a tree data structure that’s used extensively for spatial indexing, image processing and more. For Quadtrees storing more than 300,000 markers, Booking achieves a p99 lookup time of less than 5.5 milliseconds. Pinterest uses Apache Druid for storing ad reporting metrics.

  7. 7
    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.

  8. 8
    Article
    Avatar of gcgitconnected·3y

    10 Best Coding and Programming Interview Books in 2023

    10 Best Coding and Programming Interview Books in 2023. In the past, I have hared some of the best online courses to prepare coding interviews. These books are enough to crack even the toughest of the job interviews at Amazon, or Microsoft. They provide excellent coverage of all essential topics for programming job interviews.

  9. 9
    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.

  10. 10
    Article
    Avatar of bytebytegoByteByteGo·3y

    EP60: Netflix Tech Stack - Databases

    This week’s system design refresher: SQL Query Execution Order (Youtube video) Netflix Tech Stack - Databases The 10 Algorithms That Dominate Our World ‘Pull’ and ‘Push’ Payments ByteByteGo Talent Collective Retool is the fast way to build internal tools.

  11. 11
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    Key Computer Science Concepts Every Software Engineer Should Know – and How to Learn Them

    The more fundamentals you know, the less you will struggle learning new things. There are 10 core subjects which, if you learn them, will give you a solid foundation. The book I recommend to learn programming is Structures and Interpretations of Computer Programs (SICP) The book is free and has a set of MIT lectures.

  12. 12
    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.

  13. 13
    Article
    Avatar of communityCommunity Picks·3y

    Dynamic Programming Algorithms Every Programmer Should Know

    Dynamic programming is a popular technique in computer science and software engineering that allows for solving complex problems by breaking them down into smaller subproblems. This post explores various dynamic programming algorithms every programmer should know, including Fibonacci numbers, longest common subsequence, knapsack problem, edit distance, maximum subarray, coin change, matrix chain multiplication, longest increasing subsequence, traveling salesman problem, 0-1 integer programming, egg dropping problem, counting bits, perfect squares, partition equal subset sum, unique paths, unique paths II, and more.

  14. 14
    Article
    Avatar of communityCommunity Picks·3y

    Why Every Developer Should Learn Data Structures and Algorithms

    Learn why every developer should learn data structures and algorithms, their benefits, and how they are related.

  15. 15
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    Machine Learning Fundamentals Handbook – Key Concepts, Algorithms, and Python Code Examples

    This handbook provides an overview of machine learning fundamentals, key concepts, popular algorithms like XGBoost and AdaBoost, and techniques for feature selection.

  16. 16
    Article
    Avatar of colkgirlCode Like A Girl·3y

    Top 5 PHP Best Practices

    The world craves PHP-based websites and applications, and why not since it has covered 80% of the web? Getting familiar with the PHP best practices below is the only way to succeed in the long haul. Maintaining proper documentation of your code documentation is the first and foremost practice to follow.

  17. 17
    Article
    Avatar of communityCommunity Picks·3y

    Dynamic Programming Algorithms Every Programmer Should Know

    Dynamic programming is a technique that allows us to break down complex problems into smaller, more manageable subproblems. It involves solving subproblems only once and storing the results in memory for future use, instead of solving them repeatedly. This article explores essential dynamic programming algorithms like the Fibonacci sequence, the knapsack problem, and the longest common subsequence problem.

  18. 18
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    Learn Machine Leaning without Libraries or Frameworks

    "No Black Box" Machine Learning Course in JavaScript offers a hands-on approach to understanding machine learning systems by coding from scratch. By delving into the inner workings of these algorithms, you'll gain valuable insights and experience that will help you become a more proficient developer.

  19. 19
    Article
    Avatar of mlnewsMachine Learning News·3y

    Top Artificial Intelligence (AI) Books to Read in 2023

    The ability of a machine to reason, learn, and solve problems in the same ways that people do constitutes artificial intelligence. We’re learning more and more about how computers can mimic human thought processes and even complete jobs that were once thought too complex for machines to complete.

  20. 20
    Article
    Avatar of habrhabr·3y

    LeetCode 956 (Hard). Solution of the day. Tallest Billboard. Swift. DP. O(n)

    The code uses dynamic programming to solve the problem. It maintains a dictionary dp, where the keys represent the possible height differences between the two billboards. The code iterates through each rod in the given input rods. For each rod i, it creates a new dictionary cur to store the updated values for dp.

  21. 21
    Article
    Avatar of taiTowards AI·3y

    A Cheat Sheet to Deep Learning Algorithms: Types, Applications, and Examples

    Deep learning is a subset of machine learning that involves training artificial neural networks to perform tasks. There are three main types of deep learning algorithms: supervised, unsupervised, and semi-supervised. The right algorithm for a specific problem will depend on the characteristics of the data and the complexity of the task.

  22. 22
    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.

  23. 23
    Article
    Avatar of coinsbenchCoins Bench·3y

    The Math You Need to Know as a Solidity Developer

    The Math You Need to Know as a Solidity Developer will provide you with the knowledge you need to take your skills to the next level. In this article, we’ll dive deep into the role of math in cryptography and how it relates to Solidity.

  24. 24
    Article
    Avatar of kdnuggetsKDnuggets·3y

    ChatGPT for Data Science Interview Cheat Sheet

    ChatGPT can help candidates understand and clarify complex concepts, algorithms, and methodologies commonly encountered in data science interviews. To help out, KDnuggets has put together a cheat sheet on the topic, ChatGPT for Data Science Interview Cheat Sheet.

  25. 25
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    The Difference Between AI and Machine Learning

    Artificial Intelligence is a field which contains a lot of sub-fields, including Machine Learning. Machine Learning is not the same thing as Artificial Intelligence, but rather a part of it – like a cog amongst many cogs that makes up the machine which is Artificial Intelligence. I'll explain how Machine Learning fits into AI as a field.