Google Interview Questions
One week Preparation tips:
Try to solve cover topics listed below along with good understanding of all the Data Structures like Graph, tree, LL, String, Set, Stack, Queue, Binary tree, Trie etc:
Binary Search, Priority Queue, Sliding Window (These will be used to optimize the solution) - LogN
Prefix Sum (This concept will be used to optimize O(N^2) time to O(N) time)
DSU (Disjoint set union) : A graph concept mostly asked in interview.
DP (1D , 2D) : Recursive Approach to better optimal Solution
Brute Force: You should always aware of Brute Force Solution because thats why interview get tricky.
Last updated