├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── main.yml │ └── push_to_main.yml ├── .gitignore ├── LICENSE ├── README.md ├── make_solved_problems.py ├── questions └── casting_to_bool │ └── casting_to_bool.py ├── setup.cfg ├── solutions ├── add_two_numbers │ ├── README.md │ ├── bonus_solution │ │ ├── README.md │ │ └── solution.py │ └── solution │ │ ├── README.md │ │ └── solution.py ├── add_two_numbers_ii │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── best_time_to_buy_and_sell_stock │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── binary_search │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── binary_tree_inorder_traversal │ ├── README.md │ └── solution │ │ ├── README.md │ │ ├── recursion.py │ │ └── using_loop.py ├── boats_to_sove_people │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── buddy_strings │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── can_make_arithmetic_progression_from_sequence │ ├── README.md │ └── solution │ │ ├── README.md │ │ ├── solution.py │ │ └── sorting.py ├── check_if_it_is_a_straight_line │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── check_if_one_string_swap_can_make_strings_equal │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── decoded_string_at_index │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── dota2_senate │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── dungeon_game │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── expressive_words │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── find_eventual_safe_states │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── find_minimum_in_rotated_sorted_array │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── find_smaller_letter_greater_than_target │ └── README.md ├── find_the_difference │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── find_the_highest_altitude │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── find_the_index_of_the_first_occurrence_in_a_string │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── flatten_binary_tree_to_linked_list │ ├── README.md │ └── solution │ │ ├── README.md │ │ ├── recursion.py │ │ ├── stack.py │ │ └── without_additional_space.py ├── guess_number_higher_or_lower │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── has_group_size_x │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── implement_magic_dictionary │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── iterator_for_combination │ ├── README.md │ └── solution │ │ ├── README.md │ │ ├── solution.py │ │ └── using_itertools.py ├── kids_with_the_greatest_number_of_candies │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── left_and_right_sum_difference │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── length_of_last_word │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── letter_combinations_of_a_phone_number │ └── README.md ├── linked_list_cycle │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── longest_palindromic_substring │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── longest_subarray_of_1s_after_deleting_one_element │ └── README.md ├── longest_substring_without_repeating_characters │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── majority_element │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── maximum_level_sum_of_a_binary_tree │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── maximum_number_of_pairs_in_array │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── median_of_two_sorted_arrays │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── merge_k_sorted_lists │ ├── README.md │ ├── bonus_solution │ │ ├── README.md │ │ └── solution.py │ ├── simple_solutions │ │ ├── README.md │ │ └── solution.py │ └── solution │ │ ├── README.md │ │ └── solution.py ├── merge_two_sorted_lists │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── minimum_absolute_difference_in_bst │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── minimum_ascii_delete_sum_for_two_strings │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── minimum_cost_to_cut_a_stick │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── minimum_depth_of_binary_tree │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── minimum_path_sum │ └── README.md ├── minimum_speed_to_arrive_on_time │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── n_ary_tree_level_order_traversal │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── non_overlapping_intervals │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── number_of_provinces │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── palindrome_linked_list │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── pascals_triangle │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── path_with_maximum_probability │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── permutations │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── power_of_two │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── powx_n │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── problem_two_sum │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── remove_colored_pieces_if_both_neighbors_are_the_same_color │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── remove_duplicates_from_sorted_list │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── reserse_integer │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── reverse_linked_list │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── roman_to_integer │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── rotate_list │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── same_tree │ ├── README.md │ └── solution │ │ ├── README.md │ │ ├── bfs.py │ │ └── recursion.py ├── search_a_2d_matrix │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── search_in_rotated_sorted_array │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── search_in_rotated_sorted_array_2 │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── sign_of_the_product_of_an_array │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── single_element_in_a_sorted_array │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── single_number │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── spiral_matrix_problem │ ├── README.md │ ├── bonus_solution │ │ ├── README.md │ │ └── solution.py │ └── solution │ │ ├── README.md │ │ └── solution.py ├── string_to_integer_atoi │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── subsets │ ├── README.md │ └── solution │ │ ├── README.md │ │ ├── recursion.py │ │ └── using_itertools.py ├── summary_ranges │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── swapping_nodes_in_a_linked_list │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── symmetric_tree │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── top_k_frequent_elements │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── top_k_frequent_words │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── triangle │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── two_furthest_houses_with_different_colors │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── uncommon_from_sentences │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── unique_paths │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── unique_paths_ii │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── valid-parentheses │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py ├── valid_anagram │ ├── README.md │ └── solution │ │ ├── README.md │ │ └── solution.py └── zigzag_conversion │ └── README.md └── solved_problems.csv /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/push_to_main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/.github/workflows/push_to_main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/README.md -------------------------------------------------------------------------------- /make_solved_problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/make_solved_problems.py -------------------------------------------------------------------------------- /questions/casting_to_bool/casting_to_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/questions/casting_to_bool/casting_to_bool.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/setup.cfg -------------------------------------------------------------------------------- /solutions/add_two_numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/add_two_numbers/README.md -------------------------------------------------------------------------------- /solutions/add_two_numbers/bonus_solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/add_two_numbers/bonus_solution/README.md -------------------------------------------------------------------------------- /solutions/add_two_numbers/bonus_solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/add_two_numbers/bonus_solution/solution.py -------------------------------------------------------------------------------- /solutions/add_two_numbers/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/add_two_numbers/solution/README.md -------------------------------------------------------------------------------- /solutions/add_two_numbers/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/add_two_numbers/solution/solution.py -------------------------------------------------------------------------------- /solutions/add_two_numbers_ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/add_two_numbers_ii/README.md -------------------------------------------------------------------------------- /solutions/add_two_numbers_ii/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/add_two_numbers_ii/solution/README.md -------------------------------------------------------------------------------- /solutions/add_two_numbers_ii/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/add_two_numbers_ii/solution/solution.py -------------------------------------------------------------------------------- /solutions/best_time_to_buy_and_sell_stock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/best_time_to_buy_and_sell_stock/README.md -------------------------------------------------------------------------------- /solutions/best_time_to_buy_and_sell_stock/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/best_time_to_buy_and_sell_stock/solution/README.md -------------------------------------------------------------------------------- /solutions/best_time_to_buy_and_sell_stock/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/best_time_to_buy_and_sell_stock/solution/solution.py -------------------------------------------------------------------------------- /solutions/binary_search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/binary_search/README.md -------------------------------------------------------------------------------- /solutions/binary_search/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/binary_search/solution/README.md -------------------------------------------------------------------------------- /solutions/binary_search/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/binary_search/solution/solution.py -------------------------------------------------------------------------------- /solutions/binary_tree_inorder_traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/binary_tree_inorder_traversal/README.md -------------------------------------------------------------------------------- /solutions/binary_tree_inorder_traversal/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/binary_tree_inorder_traversal/solution/README.md -------------------------------------------------------------------------------- /solutions/binary_tree_inorder_traversal/solution/recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/binary_tree_inorder_traversal/solution/recursion.py -------------------------------------------------------------------------------- /solutions/binary_tree_inorder_traversal/solution/using_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/binary_tree_inorder_traversal/solution/using_loop.py -------------------------------------------------------------------------------- /solutions/boats_to_sove_people/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/boats_to_sove_people/README.md -------------------------------------------------------------------------------- /solutions/boats_to_sove_people/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/boats_to_sove_people/solution/README.md -------------------------------------------------------------------------------- /solutions/boats_to_sove_people/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/boats_to_sove_people/solution/solution.py -------------------------------------------------------------------------------- /solutions/buddy_strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/buddy_strings/README.md -------------------------------------------------------------------------------- /solutions/buddy_strings/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/buddy_strings/solution/README.md -------------------------------------------------------------------------------- /solutions/buddy_strings/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/buddy_strings/solution/solution.py -------------------------------------------------------------------------------- /solutions/can_make_arithmetic_progression_from_sequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/can_make_arithmetic_progression_from_sequence/README.md -------------------------------------------------------------------------------- /solutions/can_make_arithmetic_progression_from_sequence/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/can_make_arithmetic_progression_from_sequence/solution/README.md -------------------------------------------------------------------------------- /solutions/can_make_arithmetic_progression_from_sequence/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/can_make_arithmetic_progression_from_sequence/solution/solution.py -------------------------------------------------------------------------------- /solutions/can_make_arithmetic_progression_from_sequence/solution/sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/can_make_arithmetic_progression_from_sequence/solution/sorting.py -------------------------------------------------------------------------------- /solutions/check_if_it_is_a_straight_line/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/check_if_it_is_a_straight_line/README.md -------------------------------------------------------------------------------- /solutions/check_if_it_is_a_straight_line/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/check_if_it_is_a_straight_line/solution/README.md -------------------------------------------------------------------------------- /solutions/check_if_it_is_a_straight_line/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/check_if_it_is_a_straight_line/solution/solution.py -------------------------------------------------------------------------------- /solutions/check_if_one_string_swap_can_make_strings_equal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/check_if_one_string_swap_can_make_strings_equal/README.md -------------------------------------------------------------------------------- /solutions/check_if_one_string_swap_can_make_strings_equal/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/check_if_one_string_swap_can_make_strings_equal/solution/README.md -------------------------------------------------------------------------------- /solutions/check_if_one_string_swap_can_make_strings_equal/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/check_if_one_string_swap_can_make_strings_equal/solution/solution.py -------------------------------------------------------------------------------- /solutions/decoded_string_at_index/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/decoded_string_at_index/README.md -------------------------------------------------------------------------------- /solutions/decoded_string_at_index/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/decoded_string_at_index/solution/README.md -------------------------------------------------------------------------------- /solutions/decoded_string_at_index/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/decoded_string_at_index/solution/solution.py -------------------------------------------------------------------------------- /solutions/dota2_senate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/dota2_senate/README.md -------------------------------------------------------------------------------- /solutions/dota2_senate/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/dota2_senate/solution/README.md -------------------------------------------------------------------------------- /solutions/dota2_senate/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/dota2_senate/solution/solution.py -------------------------------------------------------------------------------- /solutions/dungeon_game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/dungeon_game/README.md -------------------------------------------------------------------------------- /solutions/dungeon_game/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/dungeon_game/solution/README.md -------------------------------------------------------------------------------- /solutions/dungeon_game/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/dungeon_game/solution/solution.py -------------------------------------------------------------------------------- /solutions/expressive_words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/expressive_words/README.md -------------------------------------------------------------------------------- /solutions/expressive_words/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/expressive_words/solution/README.md -------------------------------------------------------------------------------- /solutions/expressive_words/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/expressive_words/solution/solution.py -------------------------------------------------------------------------------- /solutions/find_eventual_safe_states/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_eventual_safe_states/README.md -------------------------------------------------------------------------------- /solutions/find_eventual_safe_states/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_eventual_safe_states/solution/README.md -------------------------------------------------------------------------------- /solutions/find_eventual_safe_states/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_eventual_safe_states/solution/solution.py -------------------------------------------------------------------------------- /solutions/find_minimum_in_rotated_sorted_array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_minimum_in_rotated_sorted_array/README.md -------------------------------------------------------------------------------- /solutions/find_minimum_in_rotated_sorted_array/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_minimum_in_rotated_sorted_array/solution/README.md -------------------------------------------------------------------------------- /solutions/find_minimum_in_rotated_sorted_array/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_minimum_in_rotated_sorted_array/solution/solution.py -------------------------------------------------------------------------------- /solutions/find_smaller_letter_greater_than_target/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_smaller_letter_greater_than_target/README.md -------------------------------------------------------------------------------- /solutions/find_the_difference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_the_difference/README.md -------------------------------------------------------------------------------- /solutions/find_the_difference/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_the_difference/solution/README.md -------------------------------------------------------------------------------- /solutions/find_the_difference/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_the_difference/solution/solution.py -------------------------------------------------------------------------------- /solutions/find_the_highest_altitude/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_the_highest_altitude/README.md -------------------------------------------------------------------------------- /solutions/find_the_highest_altitude/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_the_highest_altitude/solution/README.md -------------------------------------------------------------------------------- /solutions/find_the_highest_altitude/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_the_highest_altitude/solution/solution.py -------------------------------------------------------------------------------- /solutions/find_the_index_of_the_first_occurrence_in_a_string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_the_index_of_the_first_occurrence_in_a_string/README.md -------------------------------------------------------------------------------- /solutions/find_the_index_of_the_first_occurrence_in_a_string/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_the_index_of_the_first_occurrence_in_a_string/solution/README.md -------------------------------------------------------------------------------- /solutions/find_the_index_of_the_first_occurrence_in_a_string/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/find_the_index_of_the_first_occurrence_in_a_string/solution/solution.py -------------------------------------------------------------------------------- /solutions/flatten_binary_tree_to_linked_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/flatten_binary_tree_to_linked_list/README.md -------------------------------------------------------------------------------- /solutions/flatten_binary_tree_to_linked_list/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/flatten_binary_tree_to_linked_list/solution/README.md -------------------------------------------------------------------------------- /solutions/flatten_binary_tree_to_linked_list/solution/recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/flatten_binary_tree_to_linked_list/solution/recursion.py -------------------------------------------------------------------------------- /solutions/flatten_binary_tree_to_linked_list/solution/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/flatten_binary_tree_to_linked_list/solution/stack.py -------------------------------------------------------------------------------- /solutions/flatten_binary_tree_to_linked_list/solution/without_additional_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/flatten_binary_tree_to_linked_list/solution/without_additional_space.py -------------------------------------------------------------------------------- /solutions/guess_number_higher_or_lower/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/guess_number_higher_or_lower/README.md -------------------------------------------------------------------------------- /solutions/guess_number_higher_or_lower/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/guess_number_higher_or_lower/solution/README.md -------------------------------------------------------------------------------- /solutions/guess_number_higher_or_lower/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/guess_number_higher_or_lower/solution/solution.py -------------------------------------------------------------------------------- /solutions/has_group_size_x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/has_group_size_x/README.md -------------------------------------------------------------------------------- /solutions/has_group_size_x/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/has_group_size_x/solution/README.md -------------------------------------------------------------------------------- /solutions/has_group_size_x/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/has_group_size_x/solution/solution.py -------------------------------------------------------------------------------- /solutions/implement_magic_dictionary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/implement_magic_dictionary/README.md -------------------------------------------------------------------------------- /solutions/implement_magic_dictionary/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/implement_magic_dictionary/solution/README.md -------------------------------------------------------------------------------- /solutions/implement_magic_dictionary/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/implement_magic_dictionary/solution/solution.py -------------------------------------------------------------------------------- /solutions/iterator_for_combination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/iterator_for_combination/README.md -------------------------------------------------------------------------------- /solutions/iterator_for_combination/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/iterator_for_combination/solution/README.md -------------------------------------------------------------------------------- /solutions/iterator_for_combination/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/iterator_for_combination/solution/solution.py -------------------------------------------------------------------------------- /solutions/iterator_for_combination/solution/using_itertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/iterator_for_combination/solution/using_itertools.py -------------------------------------------------------------------------------- /solutions/kids_with_the_greatest_number_of_candies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/kids_with_the_greatest_number_of_candies/README.md -------------------------------------------------------------------------------- /solutions/kids_with_the_greatest_number_of_candies/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/kids_with_the_greatest_number_of_candies/solution/README.md -------------------------------------------------------------------------------- /solutions/kids_with_the_greatest_number_of_candies/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/kids_with_the_greatest_number_of_candies/solution/solution.py -------------------------------------------------------------------------------- /solutions/left_and_right_sum_difference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/left_and_right_sum_difference/README.md -------------------------------------------------------------------------------- /solutions/left_and_right_sum_difference/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/left_and_right_sum_difference/solution/README.md -------------------------------------------------------------------------------- /solutions/left_and_right_sum_difference/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/left_and_right_sum_difference/solution/solution.py -------------------------------------------------------------------------------- /solutions/length_of_last_word/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/length_of_last_word/README.md -------------------------------------------------------------------------------- /solutions/length_of_last_word/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/length_of_last_word/solution/README.md -------------------------------------------------------------------------------- /solutions/length_of_last_word/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/length_of_last_word/solution/solution.py -------------------------------------------------------------------------------- /solutions/letter_combinations_of_a_phone_number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/letter_combinations_of_a_phone_number/README.md -------------------------------------------------------------------------------- /solutions/linked_list_cycle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/linked_list_cycle/README.md -------------------------------------------------------------------------------- /solutions/linked_list_cycle/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/linked_list_cycle/solution/README.md -------------------------------------------------------------------------------- /solutions/linked_list_cycle/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/linked_list_cycle/solution/solution.py -------------------------------------------------------------------------------- /solutions/longest_palindromic_substring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/longest_palindromic_substring/README.md -------------------------------------------------------------------------------- /solutions/longest_palindromic_substring/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/longest_palindromic_substring/solution/README.md -------------------------------------------------------------------------------- /solutions/longest_palindromic_substring/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/longest_palindromic_substring/solution/solution.py -------------------------------------------------------------------------------- /solutions/longest_subarray_of_1s_after_deleting_one_element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/longest_subarray_of_1s_after_deleting_one_element/README.md -------------------------------------------------------------------------------- /solutions/longest_substring_without_repeating_characters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/longest_substring_without_repeating_characters/README.md -------------------------------------------------------------------------------- /solutions/longest_substring_without_repeating_characters/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/longest_substring_without_repeating_characters/solution/README.md -------------------------------------------------------------------------------- /solutions/longest_substring_without_repeating_characters/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/longest_substring_without_repeating_characters/solution/solution.py -------------------------------------------------------------------------------- /solutions/majority_element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/majority_element/README.md -------------------------------------------------------------------------------- /solutions/majority_element/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/majority_element/solution/README.md -------------------------------------------------------------------------------- /solutions/majority_element/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/majority_element/solution/solution.py -------------------------------------------------------------------------------- /solutions/maximum_level_sum_of_a_binary_tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/maximum_level_sum_of_a_binary_tree/README.md -------------------------------------------------------------------------------- /solutions/maximum_level_sum_of_a_binary_tree/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/maximum_level_sum_of_a_binary_tree/solution/README.md -------------------------------------------------------------------------------- /solutions/maximum_level_sum_of_a_binary_tree/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/maximum_level_sum_of_a_binary_tree/solution/solution.py -------------------------------------------------------------------------------- /solutions/maximum_number_of_pairs_in_array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/maximum_number_of_pairs_in_array/README.md -------------------------------------------------------------------------------- /solutions/maximum_number_of_pairs_in_array/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/maximum_number_of_pairs_in_array/solution/README.md -------------------------------------------------------------------------------- /solutions/maximum_number_of_pairs_in_array/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/maximum_number_of_pairs_in_array/solution/solution.py -------------------------------------------------------------------------------- /solutions/median_of_two_sorted_arrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/median_of_two_sorted_arrays/README.md -------------------------------------------------------------------------------- /solutions/median_of_two_sorted_arrays/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/median_of_two_sorted_arrays/solution/README.md -------------------------------------------------------------------------------- /solutions/median_of_two_sorted_arrays/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/median_of_two_sorted_arrays/solution/solution.py -------------------------------------------------------------------------------- /solutions/merge_k_sorted_lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/merge_k_sorted_lists/README.md -------------------------------------------------------------------------------- /solutions/merge_k_sorted_lists/bonus_solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/merge_k_sorted_lists/bonus_solution/README.md -------------------------------------------------------------------------------- /solutions/merge_k_sorted_lists/bonus_solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/merge_k_sorted_lists/bonus_solution/solution.py -------------------------------------------------------------------------------- /solutions/merge_k_sorted_lists/simple_solutions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/merge_k_sorted_lists/simple_solutions/README.md -------------------------------------------------------------------------------- /solutions/merge_k_sorted_lists/simple_solutions/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/merge_k_sorted_lists/simple_solutions/solution.py -------------------------------------------------------------------------------- /solutions/merge_k_sorted_lists/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/merge_k_sorted_lists/solution/README.md -------------------------------------------------------------------------------- /solutions/merge_k_sorted_lists/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/merge_k_sorted_lists/solution/solution.py -------------------------------------------------------------------------------- /solutions/merge_two_sorted_lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/merge_two_sorted_lists/README.md -------------------------------------------------------------------------------- /solutions/merge_two_sorted_lists/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/merge_two_sorted_lists/solution/README.md -------------------------------------------------------------------------------- /solutions/merge_two_sorted_lists/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/merge_two_sorted_lists/solution/solution.py -------------------------------------------------------------------------------- /solutions/minimum_absolute_difference_in_bst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_absolute_difference_in_bst/README.md -------------------------------------------------------------------------------- /solutions/minimum_absolute_difference_in_bst/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_absolute_difference_in_bst/solution/README.md -------------------------------------------------------------------------------- /solutions/minimum_absolute_difference_in_bst/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_absolute_difference_in_bst/solution/solution.py -------------------------------------------------------------------------------- /solutions/minimum_ascii_delete_sum_for_two_strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_ascii_delete_sum_for_two_strings/README.md -------------------------------------------------------------------------------- /solutions/minimum_ascii_delete_sum_for_two_strings/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_ascii_delete_sum_for_two_strings/solution/README.md -------------------------------------------------------------------------------- /solutions/minimum_ascii_delete_sum_for_two_strings/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_ascii_delete_sum_for_two_strings/solution/solution.py -------------------------------------------------------------------------------- /solutions/minimum_cost_to_cut_a_stick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_cost_to_cut_a_stick/README.md -------------------------------------------------------------------------------- /solutions/minimum_cost_to_cut_a_stick/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_cost_to_cut_a_stick/solution/README.md -------------------------------------------------------------------------------- /solutions/minimum_cost_to_cut_a_stick/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_cost_to_cut_a_stick/solution/solution.py -------------------------------------------------------------------------------- /solutions/minimum_depth_of_binary_tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_depth_of_binary_tree/README.md -------------------------------------------------------------------------------- /solutions/minimum_depth_of_binary_tree/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_depth_of_binary_tree/solution/README.md -------------------------------------------------------------------------------- /solutions/minimum_depth_of_binary_tree/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_depth_of_binary_tree/solution/solution.py -------------------------------------------------------------------------------- /solutions/minimum_path_sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_path_sum/README.md -------------------------------------------------------------------------------- /solutions/minimum_speed_to_arrive_on_time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_speed_to_arrive_on_time/README.md -------------------------------------------------------------------------------- /solutions/minimum_speed_to_arrive_on_time/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_speed_to_arrive_on_time/solution/README.md -------------------------------------------------------------------------------- /solutions/minimum_speed_to_arrive_on_time/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/minimum_speed_to_arrive_on_time/solution/solution.py -------------------------------------------------------------------------------- /solutions/n_ary_tree_level_order_traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/n_ary_tree_level_order_traversal/README.md -------------------------------------------------------------------------------- /solutions/n_ary_tree_level_order_traversal/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/n_ary_tree_level_order_traversal/solution/README.md -------------------------------------------------------------------------------- /solutions/n_ary_tree_level_order_traversal/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/n_ary_tree_level_order_traversal/solution/solution.py -------------------------------------------------------------------------------- /solutions/non_overlapping_intervals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/non_overlapping_intervals/README.md -------------------------------------------------------------------------------- /solutions/non_overlapping_intervals/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/non_overlapping_intervals/solution/README.md -------------------------------------------------------------------------------- /solutions/non_overlapping_intervals/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/non_overlapping_intervals/solution/solution.py -------------------------------------------------------------------------------- /solutions/number_of_provinces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/number_of_provinces/README.md -------------------------------------------------------------------------------- /solutions/number_of_provinces/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/number_of_provinces/solution/README.md -------------------------------------------------------------------------------- /solutions/number_of_provinces/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/number_of_provinces/solution/solution.py -------------------------------------------------------------------------------- /solutions/palindrome_linked_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/palindrome_linked_list/README.md -------------------------------------------------------------------------------- /solutions/palindrome_linked_list/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/palindrome_linked_list/solution/README.md -------------------------------------------------------------------------------- /solutions/palindrome_linked_list/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/palindrome_linked_list/solution/solution.py -------------------------------------------------------------------------------- /solutions/pascals_triangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/pascals_triangle/README.md -------------------------------------------------------------------------------- /solutions/pascals_triangle/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/pascals_triangle/solution/README.md -------------------------------------------------------------------------------- /solutions/pascals_triangle/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/pascals_triangle/solution/solution.py -------------------------------------------------------------------------------- /solutions/path_with_maximum_probability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/path_with_maximum_probability/README.md -------------------------------------------------------------------------------- /solutions/path_with_maximum_probability/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/path_with_maximum_probability/solution/README.md -------------------------------------------------------------------------------- /solutions/path_with_maximum_probability/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/path_with_maximum_probability/solution/solution.py -------------------------------------------------------------------------------- /solutions/permutations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/permutations/README.md -------------------------------------------------------------------------------- /solutions/permutations/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/permutations/solution/README.md -------------------------------------------------------------------------------- /solutions/permutations/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/permutations/solution/solution.py -------------------------------------------------------------------------------- /solutions/power_of_two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/power_of_two/README.md -------------------------------------------------------------------------------- /solutions/power_of_two/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/power_of_two/solution/README.md -------------------------------------------------------------------------------- /solutions/power_of_two/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/power_of_two/solution/solution.py -------------------------------------------------------------------------------- /solutions/powx_n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/powx_n/README.md -------------------------------------------------------------------------------- /solutions/powx_n/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/powx_n/solution/README.md -------------------------------------------------------------------------------- /solutions/powx_n/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/powx_n/solution/solution.py -------------------------------------------------------------------------------- /solutions/problem_two_sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/problem_two_sum/README.md -------------------------------------------------------------------------------- /solutions/problem_two_sum/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/problem_two_sum/solution/README.md -------------------------------------------------------------------------------- /solutions/problem_two_sum/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/problem_two_sum/solution/solution.py -------------------------------------------------------------------------------- /solutions/remove_colored_pieces_if_both_neighbors_are_the_same_color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/remove_colored_pieces_if_both_neighbors_are_the_same_color/README.md -------------------------------------------------------------------------------- /solutions/remove_colored_pieces_if_both_neighbors_are_the_same_color/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/remove_colored_pieces_if_both_neighbors_are_the_same_color/solution/README.md -------------------------------------------------------------------------------- /solutions/remove_colored_pieces_if_both_neighbors_are_the_same_color/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/remove_colored_pieces_if_both_neighbors_are_the_same_color/solution/solution.py -------------------------------------------------------------------------------- /solutions/remove_duplicates_from_sorted_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/remove_duplicates_from_sorted_list/README.md -------------------------------------------------------------------------------- /solutions/remove_duplicates_from_sorted_list/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/remove_duplicates_from_sorted_list/solution/README.md -------------------------------------------------------------------------------- /solutions/remove_duplicates_from_sorted_list/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/remove_duplicates_from_sorted_list/solution/solution.py -------------------------------------------------------------------------------- /solutions/reserse_integer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/reserse_integer/README.md -------------------------------------------------------------------------------- /solutions/reserse_integer/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/reserse_integer/solution/README.md -------------------------------------------------------------------------------- /solutions/reserse_integer/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/reserse_integer/solution/solution.py -------------------------------------------------------------------------------- /solutions/reverse_linked_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/reverse_linked_list/README.md -------------------------------------------------------------------------------- /solutions/reverse_linked_list/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/reverse_linked_list/solution/README.md -------------------------------------------------------------------------------- /solutions/reverse_linked_list/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/reverse_linked_list/solution/solution.py -------------------------------------------------------------------------------- /solutions/roman_to_integer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/roman_to_integer/README.md -------------------------------------------------------------------------------- /solutions/roman_to_integer/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/roman_to_integer/solution/README.md -------------------------------------------------------------------------------- /solutions/roman_to_integer/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/roman_to_integer/solution/solution.py -------------------------------------------------------------------------------- /solutions/rotate_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/rotate_list/README.md -------------------------------------------------------------------------------- /solutions/rotate_list/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/rotate_list/solution/README.md -------------------------------------------------------------------------------- /solutions/rotate_list/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/rotate_list/solution/solution.py -------------------------------------------------------------------------------- /solutions/same_tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/same_tree/README.md -------------------------------------------------------------------------------- /solutions/same_tree/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/same_tree/solution/README.md -------------------------------------------------------------------------------- /solutions/same_tree/solution/bfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/same_tree/solution/bfs.py -------------------------------------------------------------------------------- /solutions/same_tree/solution/recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/same_tree/solution/recursion.py -------------------------------------------------------------------------------- /solutions/search_a_2d_matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/search_a_2d_matrix/README.md -------------------------------------------------------------------------------- /solutions/search_a_2d_matrix/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/search_a_2d_matrix/solution/README.md -------------------------------------------------------------------------------- /solutions/search_a_2d_matrix/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/search_a_2d_matrix/solution/solution.py -------------------------------------------------------------------------------- /solutions/search_in_rotated_sorted_array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/search_in_rotated_sorted_array/README.md -------------------------------------------------------------------------------- /solutions/search_in_rotated_sorted_array/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/search_in_rotated_sorted_array/solution/README.md -------------------------------------------------------------------------------- /solutions/search_in_rotated_sorted_array/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/search_in_rotated_sorted_array/solution/solution.py -------------------------------------------------------------------------------- /solutions/search_in_rotated_sorted_array_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/search_in_rotated_sorted_array_2/README.md -------------------------------------------------------------------------------- /solutions/search_in_rotated_sorted_array_2/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/search_in_rotated_sorted_array_2/solution/README.md -------------------------------------------------------------------------------- /solutions/search_in_rotated_sorted_array_2/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/search_in_rotated_sorted_array_2/solution/solution.py -------------------------------------------------------------------------------- /solutions/sign_of_the_product_of_an_array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/sign_of_the_product_of_an_array/README.md -------------------------------------------------------------------------------- /solutions/sign_of_the_product_of_an_array/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/sign_of_the_product_of_an_array/solution/README.md -------------------------------------------------------------------------------- /solutions/sign_of_the_product_of_an_array/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/sign_of_the_product_of_an_array/solution/solution.py -------------------------------------------------------------------------------- /solutions/single_element_in_a_sorted_array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/single_element_in_a_sorted_array/README.md -------------------------------------------------------------------------------- /solutions/single_element_in_a_sorted_array/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/single_element_in_a_sorted_array/solution/README.md -------------------------------------------------------------------------------- /solutions/single_element_in_a_sorted_array/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/single_element_in_a_sorted_array/solution/solution.py -------------------------------------------------------------------------------- /solutions/single_number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/single_number/README.md -------------------------------------------------------------------------------- /solutions/single_number/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/single_number/solution/README.md -------------------------------------------------------------------------------- /solutions/single_number/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/single_number/solution/solution.py -------------------------------------------------------------------------------- /solutions/spiral_matrix_problem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/spiral_matrix_problem/README.md -------------------------------------------------------------------------------- /solutions/spiral_matrix_problem/bonus_solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/spiral_matrix_problem/bonus_solution/README.md -------------------------------------------------------------------------------- /solutions/spiral_matrix_problem/bonus_solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/spiral_matrix_problem/bonus_solution/solution.py -------------------------------------------------------------------------------- /solutions/spiral_matrix_problem/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/spiral_matrix_problem/solution/README.md -------------------------------------------------------------------------------- /solutions/spiral_matrix_problem/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/spiral_matrix_problem/solution/solution.py -------------------------------------------------------------------------------- /solutions/string_to_integer_atoi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/string_to_integer_atoi/README.md -------------------------------------------------------------------------------- /solutions/string_to_integer_atoi/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/string_to_integer_atoi/solution/README.md -------------------------------------------------------------------------------- /solutions/string_to_integer_atoi/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/string_to_integer_atoi/solution/solution.py -------------------------------------------------------------------------------- /solutions/subsets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/subsets/README.md -------------------------------------------------------------------------------- /solutions/subsets/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/subsets/solution/README.md -------------------------------------------------------------------------------- /solutions/subsets/solution/recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/subsets/solution/recursion.py -------------------------------------------------------------------------------- /solutions/subsets/solution/using_itertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/subsets/solution/using_itertools.py -------------------------------------------------------------------------------- /solutions/summary_ranges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/summary_ranges/README.md -------------------------------------------------------------------------------- /solutions/summary_ranges/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/summary_ranges/solution/README.md -------------------------------------------------------------------------------- /solutions/summary_ranges/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/summary_ranges/solution/solution.py -------------------------------------------------------------------------------- /solutions/swapping_nodes_in_a_linked_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/swapping_nodes_in_a_linked_list/README.md -------------------------------------------------------------------------------- /solutions/swapping_nodes_in_a_linked_list/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/swapping_nodes_in_a_linked_list/solution/README.md -------------------------------------------------------------------------------- /solutions/swapping_nodes_in_a_linked_list/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/swapping_nodes_in_a_linked_list/solution/solution.py -------------------------------------------------------------------------------- /solutions/symmetric_tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/symmetric_tree/README.md -------------------------------------------------------------------------------- /solutions/symmetric_tree/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/symmetric_tree/solution/README.md -------------------------------------------------------------------------------- /solutions/symmetric_tree/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/symmetric_tree/solution/solution.py -------------------------------------------------------------------------------- /solutions/top_k_frequent_elements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/top_k_frequent_elements/README.md -------------------------------------------------------------------------------- /solutions/top_k_frequent_elements/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/top_k_frequent_elements/solution/README.md -------------------------------------------------------------------------------- /solutions/top_k_frequent_elements/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/top_k_frequent_elements/solution/solution.py -------------------------------------------------------------------------------- /solutions/top_k_frequent_words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/top_k_frequent_words/README.md -------------------------------------------------------------------------------- /solutions/top_k_frequent_words/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/top_k_frequent_words/solution/README.md -------------------------------------------------------------------------------- /solutions/top_k_frequent_words/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/top_k_frequent_words/solution/solution.py -------------------------------------------------------------------------------- /solutions/triangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/triangle/README.md -------------------------------------------------------------------------------- /solutions/triangle/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/triangle/solution/README.md -------------------------------------------------------------------------------- /solutions/triangle/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/triangle/solution/solution.py -------------------------------------------------------------------------------- /solutions/two_furthest_houses_with_different_colors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/two_furthest_houses_with_different_colors/README.md -------------------------------------------------------------------------------- /solutions/two_furthest_houses_with_different_colors/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/two_furthest_houses_with_different_colors/solution/README.md -------------------------------------------------------------------------------- /solutions/two_furthest_houses_with_different_colors/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/two_furthest_houses_with_different_colors/solution/solution.py -------------------------------------------------------------------------------- /solutions/uncommon_from_sentences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/uncommon_from_sentences/README.md -------------------------------------------------------------------------------- /solutions/uncommon_from_sentences/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/uncommon_from_sentences/solution/README.md -------------------------------------------------------------------------------- /solutions/uncommon_from_sentences/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/uncommon_from_sentences/solution/solution.py -------------------------------------------------------------------------------- /solutions/unique_paths/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/unique_paths/README.md -------------------------------------------------------------------------------- /solutions/unique_paths/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/unique_paths/solution/README.md -------------------------------------------------------------------------------- /solutions/unique_paths/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/unique_paths/solution/solution.py -------------------------------------------------------------------------------- /solutions/unique_paths_ii/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/unique_paths_ii/README.md -------------------------------------------------------------------------------- /solutions/unique_paths_ii/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/unique_paths_ii/solution/README.md -------------------------------------------------------------------------------- /solutions/unique_paths_ii/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/unique_paths_ii/solution/solution.py -------------------------------------------------------------------------------- /solutions/valid-parentheses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/valid-parentheses/README.md -------------------------------------------------------------------------------- /solutions/valid-parentheses/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/valid-parentheses/solution/README.md -------------------------------------------------------------------------------- /solutions/valid-parentheses/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/valid-parentheses/solution/solution.py -------------------------------------------------------------------------------- /solutions/valid_anagram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/valid_anagram/README.md -------------------------------------------------------------------------------- /solutions/valid_anagram/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/valid_anagram/solution/README.md -------------------------------------------------------------------------------- /solutions/valid_anagram/solution/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/valid_anagram/solution/solution.py -------------------------------------------------------------------------------- /solutions/zigzag_conversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solutions/zigzag_conversion/README.md -------------------------------------------------------------------------------- /solved_problems.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DushnoAndTochka/solutions_algorithmic_problems/HEAD/solved_problems.csv --------------------------------------------------------------------------------