Crack FAANGIntro to Hashing in C++Hashing is the process of converting a given key into another smaller value for O(1) retrieval time.Jan 30, 20211Jan 30, 20211
Crack FAANGIntro to Greedy Algorithms with C++It is a simple and efficient algorithmic approach for solving any given problem by selecting the best available option at that moment.Jan 29, 20211Jan 29, 20211
Crack FAANGIntro to Graphs with C++Dijkstra’s algorithm is used in finding the shortest possible distance between 2 geographical locations such as in Google Maps.Jan 28, 20211Jan 28, 20211
Crack FAANGBacktracking with C++Backtracking is an algorithmic technique that considers searching in every possible combination for solving a computational problem.Jan 28, 20213Jan 28, 20213
Crack FAANGSorting Algorithms in C++Sorting Algorithms are methods of reorganizing a large number of items into some specific order such as highest to lowest, or vice-versa.Jan 21, 20212Jan 21, 20212
Crack FAANGIntro to Discrete Math With C++Maths ( especially discrete mathematics ) and computer science go very much hand in hand.Jan 19, 20211Jan 19, 20211
Crack FAANGHandling Two Pointers in C++Try to look for monotonicity in one of the loops as other loops move forward. If you find that, you have found your optimization.Oct 8, 20201Oct 8, 20201
Crack FAANGIntro to DP in C++If you have solved a problem with the given input, then save the result for future reference, so as to avoid solving the same problem…Sep 27, 20201Sep 27, 20201
Crack FAANGIntro to Doubly Linked List in C++A doubly linked list is a data structure where a set of sequential links of records called nodes exist. Unlike the singly linked list, a…Sep 7, 20201Sep 7, 20201
Crack FAANGIntro to Linked Lists in C++Arrays and Linked Lists both are linear data structures, but they both have some advantages and disadvantages over each other.Sep 6, 20201Sep 6, 20201
Crack FAANGIntro to C++ StringsC style char arrays work in C++ as well. However, C++ provides string which is much more powerful than C arrays.Sep 3, 20201Sep 3, 20201
Crack FAANGIntro to Stacks in C++Understand how to use a Stack in C++ with exampleSep 3, 20201Sep 3, 20201