├── README.md ├── easy ├── array_sum.py ├── circle_area.py ├── distance.py ├── distance_n_dimensions.py ├── fizzbuzz.py ├── reverse_string.py └── substring.py ├── hard ├── brainfck.py ├── lcs.py ├── maze.py ├── sort_linked_list.py └── sudoku.py ├── highlevel └── highlevel_questions.md ├── interview_handout.md ├── medium ├── 2d_array.py ├── anagrams.py ├── binary_representation.py ├── bst_level_order.py ├── bst_sorted_order.py ├── cipher_match.py ├── duplicate.py ├── fib.py ├── make_change.py ├── matching_parentheses.py ├── min_stack.py ├── permutations.py ├── powerset.py ├── print_reverse.py ├── second_largest_bst.py ├── sort.py └── target.py └── systems └── systems_questions.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/README.md -------------------------------------------------------------------------------- /easy/array_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/easy/array_sum.py -------------------------------------------------------------------------------- /easy/circle_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/easy/circle_area.py -------------------------------------------------------------------------------- /easy/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/easy/distance.py -------------------------------------------------------------------------------- /easy/distance_n_dimensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/easy/distance_n_dimensions.py -------------------------------------------------------------------------------- /easy/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/easy/fizzbuzz.py -------------------------------------------------------------------------------- /easy/reverse_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/easy/reverse_string.py -------------------------------------------------------------------------------- /easy/substring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/easy/substring.py -------------------------------------------------------------------------------- /hard/brainfck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/hard/brainfck.py -------------------------------------------------------------------------------- /hard/lcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/hard/lcs.py -------------------------------------------------------------------------------- /hard/maze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/hard/maze.py -------------------------------------------------------------------------------- /hard/sort_linked_list.py: -------------------------------------------------------------------------------- 1 | # Sort a linked list. 2 | -------------------------------------------------------------------------------- /hard/sudoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/hard/sudoku.py -------------------------------------------------------------------------------- /highlevel/highlevel_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/highlevel/highlevel_questions.md -------------------------------------------------------------------------------- /interview_handout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/interview_handout.md -------------------------------------------------------------------------------- /medium/2d_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/2d_array.py -------------------------------------------------------------------------------- /medium/anagrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/anagrams.py -------------------------------------------------------------------------------- /medium/binary_representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/binary_representation.py -------------------------------------------------------------------------------- /medium/bst_level_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/bst_level_order.py -------------------------------------------------------------------------------- /medium/bst_sorted_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/bst_sorted_order.py -------------------------------------------------------------------------------- /medium/cipher_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/cipher_match.py -------------------------------------------------------------------------------- /medium/duplicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/duplicate.py -------------------------------------------------------------------------------- /medium/fib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/fib.py -------------------------------------------------------------------------------- /medium/make_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/make_change.py -------------------------------------------------------------------------------- /medium/matching_parentheses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/matching_parentheses.py -------------------------------------------------------------------------------- /medium/min_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/min_stack.py -------------------------------------------------------------------------------- /medium/permutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/permutations.py -------------------------------------------------------------------------------- /medium/powerset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/powerset.py -------------------------------------------------------------------------------- /medium/print_reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/print_reverse.py -------------------------------------------------------------------------------- /medium/second_largest_bst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/second_largest_bst.py -------------------------------------------------------------------------------- /medium/sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/sort.py -------------------------------------------------------------------------------- /medium/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/medium/target.py -------------------------------------------------------------------------------- /systems/systems_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adicu/interview_help/HEAD/systems/systems_questions.md --------------------------------------------------------------------------------