Skip to content

Here I make a list of some of the good questions asked in Google interview codding rounds.

Notifications You must be signed in to change notification settings

codewithdeepak-in/JSAlgoDSAMastery

Repository files navigation

Let's kill DSA this time.

JavaScript

Data Structure And Algorithms.

  1. Array.
  2. Linked List.
  3. Stack.
  4. Lists.
  5. Dictionaries.
  6. Queue.
  7. Sets
  8. Tree.
  9. Hash Table.
  10. Graph and Graph Algorithm.
  11. Binary Tress and Binary Search Trees.
  12. Sorting Alogithms.
  13. Searching Algorithms.
  14. Advanced Algorithms.

JavaScript DSA: Every Puzzle, My Motivation!.

    const cup = {
      isEmpty: true,
      fill: function() {
        this.isEmpty = false;
        console.log("Cup filled! Time to code with coffee.!");
      }  
    };

    if (cup.isEmpty) {
      cup.fill();
      // Start coding here...
      console.log("Let's write some awesome code!");
    } else {
      // Cup is already filled, no need to refill.
      console.log("Cup is already filled! Don't waste your time let's together dive into coding!");
    }

About

Here I make a list of some of the good questions asked in Google interview codding rounds.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published