Collection of various interview related questions and solutions
How are the files organized?
- includes/ contains any files needed by src
- src/ contains all the solutions written to the problems
How do I compile?
- $ g++ src/array_sum_pair.cpp -Iincludes/
all the files are in src/
- Array pair sum -> (array_sum_pair.cpp)
- Linked List element removal -> (linked_list_removal.cpp)
- Find if str3 is interleaved shuffle of str1 and str2 -> (shuffle_two_strings.cpp)
- Verify if Binary Tree is a Binary Search Tree -> (verify_binary_search_tree.cpp)
- Shuffle a word into target word one letter at a time -> (shuffle_two_strings.cpp)
- Kth largest element in array -> (k_th_largest.cpp)
- Reverse words in a sentence-> (reverse_words.cpp)
- Median of integer stream -> (median_int_stream.cpp)