├── .gitignore ├── AdventOfCode ├── 2015 │ ├── day1_not_quite_lisp.py │ ├── day2_was_told_there_will_be_no_match.py │ ├── day3_perfectly_spherical_houses_in_a_vacuum.py │ ├── day4_the_ideal_stocking_stuffer.py │ ├── day5_doesnt_he_have_internelves_for_this.py │ └── day6_probably_a_fire_hazard.py ├── 2016 │ └── day1_no_time_for_a_taxicab.py ├── 2017 │ ├── day1_inverse_captcha.py │ ├── day2_corruption_checksum.py │ └── day3_spiral_memory.py ├── 2018 │ ├── day1_chronal_calibration.py │ ├── day2_inventory_management_system.py │ └── input.txt.temp ├── 2019 │ └── day1_the_tyranny_of_the_rocket_equation.py ├── 2020 │ ├── day1_report_repair.py │ ├── day2_password_philosophy.py │ ├── day3_toboggan_trajectory.py │ └── tt_input.txt ├── 2021 │ ├── day1_sonar_sweep.py │ ├── day2_dive.py │ └── day3_binary_diagnostic.py ├── 2022 │ ├── day1_calorie_counting.py │ ├── day2_rock_paper_scissors.py │ ├── day3_rucksack_reorganization.py │ ├── day4_camp_cleanup.py │ ├── day5_supply_stack.py │ ├── day6_tuning_trouble.py │ └── day7_no_space_left_on_device.py ├── 2023 │ ├── day1_trebouchet.py │ ├── day2_cube_conundrum.py │ └── day3_gear_rations.py ├── 2024 │ ├── day1_historian_hysteria.py │ ├── day2_red_noses_reports.py │ └── day3_mull_it_over.py └── aoc_template.py ├── BinarySearchTree └── binarySearchTree.js ├── CodeWars └── check_same_case.py ├── Graphs └── Graph.js ├── HackerRank ├── 2d_arrays_hourglass.py ├── alphabet_rangoli.py ├── capitalize.py ├── designer_floor_mat.py ├── find_a_string.py ├── mutations.py ├── string_formatting.py ├── string_validators.py ├── swap_case.py ├── text_wrap.py ├── tuples.py └── whats_your_name.py ├── HashTable └── hashtable.js ├── LeetCode ├── 1002_find_common_characters.py ├── 1021_remove_outermost_parentheses.py ├── 10_regular_expression_matching.py ├── 1108_defanging_an_ip_address.py ├── 118_pascals_triangle.py ├── 119_pascals_triangle_ii.py ├── 11_container_with_most_water.py ├── 121_best_time_to_buy_and_sell_stock.py ├── 1232_check_if_it_is_a_straight_line.py ├── 125_valid_palindrome.py ├── 1281_subtract_the_product_and_sum_of_digits_of_an_integer.py ├── 12_integer_to_roman.py ├── 1313_decompress_runlength_encoded_list.py ├── 1323_maximum_69_number.py ├── 1342_number_of_steps_to_reduce_a_number_to_zero.py ├── 1353_maximum_number_of_events_that_can_be_attended.py ├── 1365_how_many_numbers_are_smaller_than_the_current_number.py ├── 136_single_number.py ├── 1389_create_target_array_in_the_given_order.py ├── 13_roman_to_integer.py ├── 1431_kids_with_the_greatest_number_of_candies.php ├── 1431_kids_with_the_greatest_number_of_candies.py ├── 1446_consecutive_characters.py ├── 1464_maximum_product_of_two_elements_in_an_array.py ├── 1470_shuffle_the_array.py ├── 1480_running_sum_of_1d_array.py ├── 1488_avoid_flood_in_the_city.py ├── 1491_average_salary_excluding_the_minimum_and_maximum_salary.py ├── 14_longest_common_prefix.py ├── 1512_number_of_good_pairs.py ├── 1523_count_odd_numbers_in_an_interval_range.py ├── 1528_shuffle_string.py ├── 1534_count_good_triplets.py ├── 15_3sum.py ├── 1603_design_parking_system.py ├── 1636_sort_array_by_increasing_frequency.py ├── 1662_check_if_two_string_arrays_are_equivalent.py ├── 1672_richest_customer_wealth.py ├── 1678_goal_parser_interpretation.php ├── 1678_goal_parser_interpretation.py ├── 1684_count_the_number_of_consistent_strings.py ├── 1688_count_of_matches_in_tournament.py ├── 168_excel_sheet_column_title.py ├── 169_majority_element.py ├── 16_3sum_closest.py ├── 1720_decode_xored_array.py ├── 1757_recyclable_and_low_fat_products.py ├── 1757_recyclable_and_low_fat_products.sql ├── 1768_merge_strings_alternately.py ├── 1773_count_items_matching_a_rule.py ├── 1784_check_if_binary_string_has_at_most_one_segment_of_ones.py ├── 17_letter_combinations_of_a_phone_number.py ├── 1816_truncate_sentence.py ├── 1822_sign_of_the_product_of_an_array.py ├── 1832_check_if_the_sentence_is_pangram.py ├── 1844_replace_all_digits_with_characters.py ├── 1859_sorting_the_sentence.py ├── 1869_longer_contiguous_segments_of_ones_than_zeros.php ├── 1869_longer_contiguous_segments_of_ones_than_zeros.py ├── 1904_the_number_of_full_rounds_you_have_played.py ├── 1909_remove_one_element_to_make_the_array_strictly_increasing.py ├── 190_reverse_bits.py ├── 191_number_of_1_bits.php ├── 191_number_of_1_bits.py ├── 1920_build_array_from_permutation.php ├── 1920_build_array_from_permutation.py ├── 1921_eliminate_maximum_number_of_monsters.py ├── 1929_concatenation_of_array.js ├── 1941_check_if_all_characters_have_equal_number_of_occurrences.py ├── 1945_sum_of_digits_of_string_after_convert.py ├── 1952_three_divisors.py ├── 1967_number_of_strings_that_appear_as_substrings_in_word.py ├── 1979_find_greatest_common_divisor_of_array.py ├── 1_two_sum.js ├── 1_two_sum.py ├── 2006_count_number_of_pairs_with_absolute_difference_k.py ├── 2011_final_value_of_variable_after_performing_operations.py ├── 2016_maximum_difference_between_increasing_elements.py ├── 202_happy_number.py ├── 2042_check_if_numbers_are_ascending_in_a_sentence.py ├── 2047_number_of_valid_words_in_a_sentence.php ├── 2047_number_of_valid_words_in_a_sentence.py ├── 205_isomorphic_strings.py ├── 20_valid_parentheses.py ├── 2103_rings_and_rods.py ├── 2114_maximum_number_of_words_found_in_sentences.php ├── 2114_maximum_number_of_words_found_in_sentences.py ├── 2124_check_if_all_as_appears_before_all_bs.py ├── 2129_capitalize_the_title.py ├── 2160_minimum_sum_of_four_digit_number_after_splitting_digits.py ├── 2169_count_operations_to_obtain_zero.py ├── 217_contains_duplicate.js ├── 2180_count_integers_with_even_digit_sum.py ├── 219_contains_duplicate_ii.py ├── 21_merge_two_sorted_lists.py ├── 2235_add_two_integers.php ├── 2235_add_two_integers.py ├── 2283_check_if_number_has_equal_digit_count_and_digit_value.py ├── 2287_rearrange_characters_to_make_target_string.py ├── 2309_greatest_english_letter_in_upper_and_lower_case.py ├── 2315_count_asterisks.py ├── 231_power_of_two.py ├── 2325_decode_the_message.py ├── 2351_first_letter_to_appear_twice.py ├── 2413_smallest_even_multiple.py ├── 2418_sort_the_people.py ├── 2427_number_of_common_factors.py ├── 242_valid_anagram.py ├── 2469_convert_the_temperature.php ├── 2469_convert_the_temperature.py ├── 2485_find_the_pivot_integer.py ├── 2500_delete_greatest_value_in_each_row.py ├── 2506_count_pairs_of_similar_strings.py ├── 2520_count_the_digits_that_divide_a_number.py ├── 2525_categorize_box_according_to_criteria.py ├── 2535_difference_between_element_sum_and_digit_sum_of_an_array.py ├── 258_add_digits.py ├── 263_ugly_number.py ├── 268_missing_number.py ├── 2703_return_length_of_arguments_passed.js ├── 2727_is_object_empty.js ├── 2727_is_object_empty.py ├── 278_first_bad_version.py ├── 2798_number_of_employees_who_met_the_target.py ├── 27_remove_element.py ├── 2824_count_pairs_whose_sum_is_less_than_target.py ├── 2828_check_if_a_string_is_an_acronym_of_words.py ├── 283_move_zeroes.py ├── 2859_sum_of_values_at_indices_with_k_set_bits.py ├── 287_find_the_duplicate_number.py ├── 2894_divisible_and_nondivisible_sums_difference.py ├── 28_find_the_index_of_the_first_occurrence_in_a_string.py ├── 290_word_pattern.py ├── 292_nim_game.py ├── 2942_find_words_containing_character.py ├── 3110_score_of_a_string.py ├── 3190_find_minimum_operations_to_make_all_elements_divisible_by_three.py ├── 326_power_of_three.py ├── 3289_the_two_sneaky_numbers_of_digitville.py ├── 32_longest_valid_parentheses.py ├── 338_counting_bits.py ├── 342_power_of_four.py ├── 344_reverse_string.py ├── 345_reverse_vowels_of_a_string.py ├── 34_find_first_and_last_position_of_element_in_sorted_array.py ├── 35_search_insert_position.py ├── 367_valid_perfect_square.py ├── 36_valid_sudoku.py ├── 383_ransom_note.py ├── 387_first_unique_character_in_a_string.py ├── 389_find_the_difference.py ├── 392_is_subsequence.py ├── 3_longest_substring_without_repeating_characters.py ├── 409_longest_palindrome.py ├── 412_fizz_buzz.py ├── 415_add_strings.py ├── 41_first_missing_positive.py ├── 434_number_of_segments_in_a_string.py ├── 441_arranging_coins.py ├── 442_find_all_duplicates_in_an_array.py ├── 448_find_all_numbers_disappeared_in_an_array.py ├── 455_assign_cookies.py ├── 459_repeated_substring_pattern.py ├── 461_hamming_distance.py ├── 463_island_perimeter.py ├── 476_number_complement.py ├── 477_total_hamming_distance.py ├── 482_license_key_formatting.py ├── 485_max_consecutive_ones.php ├── 485_max_consecutive_ones.py ├── 492_construct_the_rectangle.py ├── 495_teemo_attacking.py ├── 4_median_of_two_sorted_arrays.py ├── 500_keyboard_row.py ├── 507_perfect_number.py ├── 50_powx_n.py ├── 520_detect_capital.py ├── 521_longest_uncommon_subsequence_i.py ├── 53_maximum_subarray.js ├── 557_reverse_words_in_a_string_iii.py ├── 58_length_of_last_word.py ├── 599_minimum_index_sum_of_two_lists.py ├── 5_longest_palindromic_substring.py ├── 66_plus_one.py ├── 67_add_binary.py ├── 69_sqrtx.py ├── 6_zigzag_conversion.py ├── 709_to_lower_case.py ├── 70_climbing_stairs.py ├── 728_self_dividing_numbers.py ├── 771_jewels_and_stones.py ├── 7_reverse_integer.js ├── 804_unique_morse_code_words.py ├── 832_flipping_an_image.py ├── 83_remove_duplicates_from_sorted_list.py ├── 896_monotonic_array.py ├── 8_string_to_integer_atoi.py ├── 917_reverse_only_letters.py ├── 941_valid_mountain_array.py ├── 953_verifying_an_alien_dictionary.py ├── 989_add_to_arrayform_of_integer.py ├── 9_palindrome_number.js ├── 9_palindrome_number.py ├── __init__.py ├── abstract_solution.py ├── leet ├── template.js ├── template.php ├── template.py ├── template.sql └── test.py ├── LinkedList ├── doubleLinkedList.js └── linkedList.js ├── ProjectEuler ├── Euler13 │ ├── euler13.py │ └── euler13.txt ├── Euler2.py ├── Euler22 │ ├── euler22.py │ ├── names.py │ ├── names.pyc │ └── p022_names.txt ├── Euler25 │ └── euler25.py ├── Euler4 │ ├── build.xml │ ├── build │ │ ├── built-jar.properties │ │ └── classes │ │ │ └── euler4 │ │ │ └── Euler4.class │ ├── dist │ │ ├── Euler4.jar │ │ └── README.TXT │ ├── manifest.mf │ └── src │ │ └── euler4 │ │ └── Euler4.java ├── Euler44 │ └── euler44.py ├── Euler52 │ └── Euler │ │ ├── build.xml │ │ ├── manifest.mf │ │ ├── nbproject │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── private │ │ │ ├── private.properties │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ │ └── src │ │ └── euler │ │ └── Euler.java ├── Euler55 │ ├── build.xml │ ├── manifest.mf │ └── src │ │ └── euler55 │ │ └── Euler55.java ├── Euler6 │ ├── build.xml │ ├── build │ │ ├── built-jar.properties │ │ └── classes │ │ │ ├── .netbeans_automatic_build │ │ │ ├── .netbeans_update_resources │ │ │ └── euler │ │ │ └── Euler.class │ ├── manifest.mf │ └── src │ │ └── euler │ │ └── Euler.java ├── Euler7 ├── Euler7.cpp ├── Euler8.py └── Euler9 │ ├── build.xml │ ├── build │ ├── built-jar.properties │ └── classes │ │ ├── .netbeans_automatic_build │ │ ├── .netbeans_update_resources │ │ └── Euler9.class │ ├── manifest.mf │ └── src │ └── Euler9.java ├── Queue ├── queueDequeImpl.py └── queueLinkedListImpl.js ├── README.md ├── Recursion └── factorial.js ├── Sorting ├── BubbleSort │ └── bubbleSort.js ├── InsertionSort │ └── insertionSort.js ├── SelectionSort │ └── selectionSort.js └── sortingAlgorithmsCompare.js ├── Stack ├── StackArrayImpl.js └── StackLinkedListImpl.js ├── asm ├── .gdb_history ├── compileandlink.sh ├── exit ├── exit.asm ├── exit.lst └── exit.o ├── c ├── format_string ├── format_string.c ├── memory ├── memory.c ├── networking ├── networking.c ├── tests └── tests.c └── misc ├── fibonacci ├── fibonacci.cpp ├── maccarthy ├── maccarthy.cpp ├── sieve.html ├── sieve.js ├── silnia ├── silnia.cpp ├── sito_eratostenesa ├── sito_eratostenesa.cpp └── stack.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/.gitignore -------------------------------------------------------------------------------- /AdventOfCode/2015/day1_not_quite_lisp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2015/day1_not_quite_lisp.py -------------------------------------------------------------------------------- /AdventOfCode/2015/day2_was_told_there_will_be_no_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2015/day2_was_told_there_will_be_no_match.py -------------------------------------------------------------------------------- /AdventOfCode/2015/day3_perfectly_spherical_houses_in_a_vacuum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2015/day3_perfectly_spherical_houses_in_a_vacuum.py -------------------------------------------------------------------------------- /AdventOfCode/2015/day4_the_ideal_stocking_stuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2015/day4_the_ideal_stocking_stuffer.py -------------------------------------------------------------------------------- /AdventOfCode/2015/day5_doesnt_he_have_internelves_for_this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2015/day5_doesnt_he_have_internelves_for_this.py -------------------------------------------------------------------------------- /AdventOfCode/2015/day6_probably_a_fire_hazard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2015/day6_probably_a_fire_hazard.py -------------------------------------------------------------------------------- /AdventOfCode/2016/day1_no_time_for_a_taxicab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2016/day1_no_time_for_a_taxicab.py -------------------------------------------------------------------------------- /AdventOfCode/2017/day1_inverse_captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2017/day1_inverse_captcha.py -------------------------------------------------------------------------------- /AdventOfCode/2017/day2_corruption_checksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2017/day2_corruption_checksum.py -------------------------------------------------------------------------------- /AdventOfCode/2017/day3_spiral_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2017/day3_spiral_memory.py -------------------------------------------------------------------------------- /AdventOfCode/2018/day1_chronal_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2018/day1_chronal_calibration.py -------------------------------------------------------------------------------- /AdventOfCode/2018/day2_inventory_management_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2018/day2_inventory_management_system.py -------------------------------------------------------------------------------- /AdventOfCode/2018/input.txt.temp: -------------------------------------------------------------------------------- 1 | +7 2 | +7 3 | -2 4 | -7 5 | -4 -------------------------------------------------------------------------------- /AdventOfCode/2019/day1_the_tyranny_of_the_rocket_equation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2019/day1_the_tyranny_of_the_rocket_equation.py -------------------------------------------------------------------------------- /AdventOfCode/2020/day1_report_repair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2020/day1_report_repair.py -------------------------------------------------------------------------------- /AdventOfCode/2020/day2_password_philosophy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2020/day2_password_philosophy.py -------------------------------------------------------------------------------- /AdventOfCode/2020/day3_toboggan_trajectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2020/day3_toboggan_trajectory.py -------------------------------------------------------------------------------- /AdventOfCode/2020/tt_input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2020/tt_input.txt -------------------------------------------------------------------------------- /AdventOfCode/2021/day1_sonar_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2021/day1_sonar_sweep.py -------------------------------------------------------------------------------- /AdventOfCode/2021/day2_dive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2021/day2_dive.py -------------------------------------------------------------------------------- /AdventOfCode/2021/day3_binary_diagnostic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2021/day3_binary_diagnostic.py -------------------------------------------------------------------------------- /AdventOfCode/2022/day1_calorie_counting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2022/day1_calorie_counting.py -------------------------------------------------------------------------------- /AdventOfCode/2022/day2_rock_paper_scissors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2022/day2_rock_paper_scissors.py -------------------------------------------------------------------------------- /AdventOfCode/2022/day3_rucksack_reorganization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2022/day3_rucksack_reorganization.py -------------------------------------------------------------------------------- /AdventOfCode/2022/day4_camp_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2022/day4_camp_cleanup.py -------------------------------------------------------------------------------- /AdventOfCode/2022/day5_supply_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2022/day5_supply_stack.py -------------------------------------------------------------------------------- /AdventOfCode/2022/day6_tuning_trouble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2022/day6_tuning_trouble.py -------------------------------------------------------------------------------- /AdventOfCode/2022/day7_no_space_left_on_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2022/day7_no_space_left_on_device.py -------------------------------------------------------------------------------- /AdventOfCode/2023/day1_trebouchet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2023/day1_trebouchet.py -------------------------------------------------------------------------------- /AdventOfCode/2023/day2_cube_conundrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2023/day2_cube_conundrum.py -------------------------------------------------------------------------------- /AdventOfCode/2023/day3_gear_rations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2023/day3_gear_rations.py -------------------------------------------------------------------------------- /AdventOfCode/2024/day1_historian_hysteria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2024/day1_historian_hysteria.py -------------------------------------------------------------------------------- /AdventOfCode/2024/day2_red_noses_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2024/day2_red_noses_reports.py -------------------------------------------------------------------------------- /AdventOfCode/2024/day3_mull_it_over.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/2024/day3_mull_it_over.py -------------------------------------------------------------------------------- /AdventOfCode/aoc_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/AdventOfCode/aoc_template.py -------------------------------------------------------------------------------- /BinarySearchTree/binarySearchTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/BinarySearchTree/binarySearchTree.js -------------------------------------------------------------------------------- /CodeWars/check_same_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/CodeWars/check_same_case.py -------------------------------------------------------------------------------- /Graphs/Graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/Graphs/Graph.js -------------------------------------------------------------------------------- /HackerRank/2d_arrays_hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/HackerRank/2d_arrays_hourglass.py -------------------------------------------------------------------------------- /HackerRank/alphabet_rangoli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/HackerRank/alphabet_rangoli.py -------------------------------------------------------------------------------- /HackerRank/capitalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/HackerRank/capitalize.py -------------------------------------------------------------------------------- /HackerRank/designer_floor_mat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/HackerRank/designer_floor_mat.py -------------------------------------------------------------------------------- /HackerRank/find_a_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/HackerRank/find_a_string.py -------------------------------------------------------------------------------- /HackerRank/mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/HackerRank/mutations.py -------------------------------------------------------------------------------- /HackerRank/string_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/HackerRank/string_formatting.py -------------------------------------------------------------------------------- /HackerRank/string_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/HackerRank/string_validators.py -------------------------------------------------------------------------------- /HackerRank/swap_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/HackerRank/swap_case.py -------------------------------------------------------------------------------- /HackerRank/text_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/HackerRank/text_wrap.py -------------------------------------------------------------------------------- /HackerRank/tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/HackerRank/tuples.py -------------------------------------------------------------------------------- /HackerRank/whats_your_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/HackerRank/whats_your_name.py -------------------------------------------------------------------------------- /HashTable/hashtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/HashTable/hashtable.js -------------------------------------------------------------------------------- /LeetCode/1002_find_common_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1002_find_common_characters.py -------------------------------------------------------------------------------- /LeetCode/1021_remove_outermost_parentheses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1021_remove_outermost_parentheses.py -------------------------------------------------------------------------------- /LeetCode/10_regular_expression_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/10_regular_expression_matching.py -------------------------------------------------------------------------------- /LeetCode/1108_defanging_an_ip_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1108_defanging_an_ip_address.py -------------------------------------------------------------------------------- /LeetCode/118_pascals_triangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/118_pascals_triangle.py -------------------------------------------------------------------------------- /LeetCode/119_pascals_triangle_ii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/119_pascals_triangle_ii.py -------------------------------------------------------------------------------- /LeetCode/11_container_with_most_water.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/11_container_with_most_water.py -------------------------------------------------------------------------------- /LeetCode/121_best_time_to_buy_and_sell_stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/121_best_time_to_buy_and_sell_stock.py -------------------------------------------------------------------------------- /LeetCode/1232_check_if_it_is_a_straight_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1232_check_if_it_is_a_straight_line.py -------------------------------------------------------------------------------- /LeetCode/125_valid_palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/125_valid_palindrome.py -------------------------------------------------------------------------------- /LeetCode/1281_subtract_the_product_and_sum_of_digits_of_an_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1281_subtract_the_product_and_sum_of_digits_of_an_integer.py -------------------------------------------------------------------------------- /LeetCode/12_integer_to_roman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/12_integer_to_roman.py -------------------------------------------------------------------------------- /LeetCode/1313_decompress_runlength_encoded_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1313_decompress_runlength_encoded_list.py -------------------------------------------------------------------------------- /LeetCode/1323_maximum_69_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1323_maximum_69_number.py -------------------------------------------------------------------------------- /LeetCode/1342_number_of_steps_to_reduce_a_number_to_zero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1342_number_of_steps_to_reduce_a_number_to_zero.py -------------------------------------------------------------------------------- /LeetCode/1353_maximum_number_of_events_that_can_be_attended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1353_maximum_number_of_events_that_can_be_attended.py -------------------------------------------------------------------------------- /LeetCode/1365_how_many_numbers_are_smaller_than_the_current_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1365_how_many_numbers_are_smaller_than_the_current_number.py -------------------------------------------------------------------------------- /LeetCode/136_single_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/136_single_number.py -------------------------------------------------------------------------------- /LeetCode/1389_create_target_array_in_the_given_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1389_create_target_array_in_the_given_order.py -------------------------------------------------------------------------------- /LeetCode/13_roman_to_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/13_roman_to_integer.py -------------------------------------------------------------------------------- /LeetCode/1431_kids_with_the_greatest_number_of_candies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1431_kids_with_the_greatest_number_of_candies.php -------------------------------------------------------------------------------- /LeetCode/1431_kids_with_the_greatest_number_of_candies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1431_kids_with_the_greatest_number_of_candies.py -------------------------------------------------------------------------------- /LeetCode/1446_consecutive_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1446_consecutive_characters.py -------------------------------------------------------------------------------- /LeetCode/1464_maximum_product_of_two_elements_in_an_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1464_maximum_product_of_two_elements_in_an_array.py -------------------------------------------------------------------------------- /LeetCode/1470_shuffle_the_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1470_shuffle_the_array.py -------------------------------------------------------------------------------- /LeetCode/1480_running_sum_of_1d_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1480_running_sum_of_1d_array.py -------------------------------------------------------------------------------- /LeetCode/1488_avoid_flood_in_the_city.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1488_avoid_flood_in_the_city.py -------------------------------------------------------------------------------- /LeetCode/1491_average_salary_excluding_the_minimum_and_maximum_salary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1491_average_salary_excluding_the_minimum_and_maximum_salary.py -------------------------------------------------------------------------------- /LeetCode/14_longest_common_prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/14_longest_common_prefix.py -------------------------------------------------------------------------------- /LeetCode/1512_number_of_good_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1512_number_of_good_pairs.py -------------------------------------------------------------------------------- /LeetCode/1523_count_odd_numbers_in_an_interval_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1523_count_odd_numbers_in_an_interval_range.py -------------------------------------------------------------------------------- /LeetCode/1528_shuffle_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1528_shuffle_string.py -------------------------------------------------------------------------------- /LeetCode/1534_count_good_triplets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1534_count_good_triplets.py -------------------------------------------------------------------------------- /LeetCode/15_3sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/15_3sum.py -------------------------------------------------------------------------------- /LeetCode/1603_design_parking_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1603_design_parking_system.py -------------------------------------------------------------------------------- /LeetCode/1636_sort_array_by_increasing_frequency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1636_sort_array_by_increasing_frequency.py -------------------------------------------------------------------------------- /LeetCode/1662_check_if_two_string_arrays_are_equivalent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1662_check_if_two_string_arrays_are_equivalent.py -------------------------------------------------------------------------------- /LeetCode/1672_richest_customer_wealth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1672_richest_customer_wealth.py -------------------------------------------------------------------------------- /LeetCode/1678_goal_parser_interpretation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1678_goal_parser_interpretation.php -------------------------------------------------------------------------------- /LeetCode/1678_goal_parser_interpretation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1678_goal_parser_interpretation.py -------------------------------------------------------------------------------- /LeetCode/1684_count_the_number_of_consistent_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1684_count_the_number_of_consistent_strings.py -------------------------------------------------------------------------------- /LeetCode/1688_count_of_matches_in_tournament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1688_count_of_matches_in_tournament.py -------------------------------------------------------------------------------- /LeetCode/168_excel_sheet_column_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/168_excel_sheet_column_title.py -------------------------------------------------------------------------------- /LeetCode/169_majority_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/169_majority_element.py -------------------------------------------------------------------------------- /LeetCode/16_3sum_closest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/16_3sum_closest.py -------------------------------------------------------------------------------- /LeetCode/1720_decode_xored_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1720_decode_xored_array.py -------------------------------------------------------------------------------- /LeetCode/1757_recyclable_and_low_fat_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1757_recyclable_and_low_fat_products.py -------------------------------------------------------------------------------- /LeetCode/1757_recyclable_and_low_fat_products.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1757_recyclable_and_low_fat_products.sql -------------------------------------------------------------------------------- /LeetCode/1768_merge_strings_alternately.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1768_merge_strings_alternately.py -------------------------------------------------------------------------------- /LeetCode/1773_count_items_matching_a_rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1773_count_items_matching_a_rule.py -------------------------------------------------------------------------------- /LeetCode/1784_check_if_binary_string_has_at_most_one_segment_of_ones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1784_check_if_binary_string_has_at_most_one_segment_of_ones.py -------------------------------------------------------------------------------- /LeetCode/17_letter_combinations_of_a_phone_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/17_letter_combinations_of_a_phone_number.py -------------------------------------------------------------------------------- /LeetCode/1816_truncate_sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1816_truncate_sentence.py -------------------------------------------------------------------------------- /LeetCode/1822_sign_of_the_product_of_an_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1822_sign_of_the_product_of_an_array.py -------------------------------------------------------------------------------- /LeetCode/1832_check_if_the_sentence_is_pangram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1832_check_if_the_sentence_is_pangram.py -------------------------------------------------------------------------------- /LeetCode/1844_replace_all_digits_with_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1844_replace_all_digits_with_characters.py -------------------------------------------------------------------------------- /LeetCode/1859_sorting_the_sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1859_sorting_the_sentence.py -------------------------------------------------------------------------------- /LeetCode/1869_longer_contiguous_segments_of_ones_than_zeros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1869_longer_contiguous_segments_of_ones_than_zeros.php -------------------------------------------------------------------------------- /LeetCode/1869_longer_contiguous_segments_of_ones_than_zeros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1869_longer_contiguous_segments_of_ones_than_zeros.py -------------------------------------------------------------------------------- /LeetCode/1904_the_number_of_full_rounds_you_have_played.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1904_the_number_of_full_rounds_you_have_played.py -------------------------------------------------------------------------------- /LeetCode/1909_remove_one_element_to_make_the_array_strictly_increasing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1909_remove_one_element_to_make_the_array_strictly_increasing.py -------------------------------------------------------------------------------- /LeetCode/190_reverse_bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/190_reverse_bits.py -------------------------------------------------------------------------------- /LeetCode/191_number_of_1_bits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/191_number_of_1_bits.php -------------------------------------------------------------------------------- /LeetCode/191_number_of_1_bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/191_number_of_1_bits.py -------------------------------------------------------------------------------- /LeetCode/1920_build_array_from_permutation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1920_build_array_from_permutation.php -------------------------------------------------------------------------------- /LeetCode/1920_build_array_from_permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1920_build_array_from_permutation.py -------------------------------------------------------------------------------- /LeetCode/1921_eliminate_maximum_number_of_monsters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1921_eliminate_maximum_number_of_monsters.py -------------------------------------------------------------------------------- /LeetCode/1929_concatenation_of_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1929_concatenation_of_array.js -------------------------------------------------------------------------------- /LeetCode/1941_check_if_all_characters_have_equal_number_of_occurrences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1941_check_if_all_characters_have_equal_number_of_occurrences.py -------------------------------------------------------------------------------- /LeetCode/1945_sum_of_digits_of_string_after_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1945_sum_of_digits_of_string_after_convert.py -------------------------------------------------------------------------------- /LeetCode/1952_three_divisors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1952_three_divisors.py -------------------------------------------------------------------------------- /LeetCode/1967_number_of_strings_that_appear_as_substrings_in_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1967_number_of_strings_that_appear_as_substrings_in_word.py -------------------------------------------------------------------------------- /LeetCode/1979_find_greatest_common_divisor_of_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1979_find_greatest_common_divisor_of_array.py -------------------------------------------------------------------------------- /LeetCode/1_two_sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1_two_sum.js -------------------------------------------------------------------------------- /LeetCode/1_two_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/1_two_sum.py -------------------------------------------------------------------------------- /LeetCode/2006_count_number_of_pairs_with_absolute_difference_k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2006_count_number_of_pairs_with_absolute_difference_k.py -------------------------------------------------------------------------------- /LeetCode/2011_final_value_of_variable_after_performing_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2011_final_value_of_variable_after_performing_operations.py -------------------------------------------------------------------------------- /LeetCode/2016_maximum_difference_between_increasing_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2016_maximum_difference_between_increasing_elements.py -------------------------------------------------------------------------------- /LeetCode/202_happy_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/202_happy_number.py -------------------------------------------------------------------------------- /LeetCode/2042_check_if_numbers_are_ascending_in_a_sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2042_check_if_numbers_are_ascending_in_a_sentence.py -------------------------------------------------------------------------------- /LeetCode/2047_number_of_valid_words_in_a_sentence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2047_number_of_valid_words_in_a_sentence.php -------------------------------------------------------------------------------- /LeetCode/2047_number_of_valid_words_in_a_sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2047_number_of_valid_words_in_a_sentence.py -------------------------------------------------------------------------------- /LeetCode/205_isomorphic_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/205_isomorphic_strings.py -------------------------------------------------------------------------------- /LeetCode/20_valid_parentheses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/20_valid_parentheses.py -------------------------------------------------------------------------------- /LeetCode/2103_rings_and_rods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2103_rings_and_rods.py -------------------------------------------------------------------------------- /LeetCode/2114_maximum_number_of_words_found_in_sentences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2114_maximum_number_of_words_found_in_sentences.php -------------------------------------------------------------------------------- /LeetCode/2114_maximum_number_of_words_found_in_sentences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2114_maximum_number_of_words_found_in_sentences.py -------------------------------------------------------------------------------- /LeetCode/2124_check_if_all_as_appears_before_all_bs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2124_check_if_all_as_appears_before_all_bs.py -------------------------------------------------------------------------------- /LeetCode/2129_capitalize_the_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2129_capitalize_the_title.py -------------------------------------------------------------------------------- /LeetCode/2160_minimum_sum_of_four_digit_number_after_splitting_digits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2160_minimum_sum_of_four_digit_number_after_splitting_digits.py -------------------------------------------------------------------------------- /LeetCode/2169_count_operations_to_obtain_zero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2169_count_operations_to_obtain_zero.py -------------------------------------------------------------------------------- /LeetCode/217_contains_duplicate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/217_contains_duplicate.js -------------------------------------------------------------------------------- /LeetCode/2180_count_integers_with_even_digit_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2180_count_integers_with_even_digit_sum.py -------------------------------------------------------------------------------- /LeetCode/219_contains_duplicate_ii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/219_contains_duplicate_ii.py -------------------------------------------------------------------------------- /LeetCode/21_merge_two_sorted_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/21_merge_two_sorted_lists.py -------------------------------------------------------------------------------- /LeetCode/2235_add_two_integers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2235_add_two_integers.php -------------------------------------------------------------------------------- /LeetCode/2235_add_two_integers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2235_add_two_integers.py -------------------------------------------------------------------------------- /LeetCode/2283_check_if_number_has_equal_digit_count_and_digit_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2283_check_if_number_has_equal_digit_count_and_digit_value.py -------------------------------------------------------------------------------- /LeetCode/2287_rearrange_characters_to_make_target_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2287_rearrange_characters_to_make_target_string.py -------------------------------------------------------------------------------- /LeetCode/2309_greatest_english_letter_in_upper_and_lower_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2309_greatest_english_letter_in_upper_and_lower_case.py -------------------------------------------------------------------------------- /LeetCode/2315_count_asterisks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2315_count_asterisks.py -------------------------------------------------------------------------------- /LeetCode/231_power_of_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/231_power_of_two.py -------------------------------------------------------------------------------- /LeetCode/2325_decode_the_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2325_decode_the_message.py -------------------------------------------------------------------------------- /LeetCode/2351_first_letter_to_appear_twice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2351_first_letter_to_appear_twice.py -------------------------------------------------------------------------------- /LeetCode/2413_smallest_even_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2413_smallest_even_multiple.py -------------------------------------------------------------------------------- /LeetCode/2418_sort_the_people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2418_sort_the_people.py -------------------------------------------------------------------------------- /LeetCode/2427_number_of_common_factors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2427_number_of_common_factors.py -------------------------------------------------------------------------------- /LeetCode/242_valid_anagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/242_valid_anagram.py -------------------------------------------------------------------------------- /LeetCode/2469_convert_the_temperature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2469_convert_the_temperature.php -------------------------------------------------------------------------------- /LeetCode/2469_convert_the_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2469_convert_the_temperature.py -------------------------------------------------------------------------------- /LeetCode/2485_find_the_pivot_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2485_find_the_pivot_integer.py -------------------------------------------------------------------------------- /LeetCode/2500_delete_greatest_value_in_each_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2500_delete_greatest_value_in_each_row.py -------------------------------------------------------------------------------- /LeetCode/2506_count_pairs_of_similar_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2506_count_pairs_of_similar_strings.py -------------------------------------------------------------------------------- /LeetCode/2520_count_the_digits_that_divide_a_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2520_count_the_digits_that_divide_a_number.py -------------------------------------------------------------------------------- /LeetCode/2525_categorize_box_according_to_criteria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2525_categorize_box_according_to_criteria.py -------------------------------------------------------------------------------- /LeetCode/2535_difference_between_element_sum_and_digit_sum_of_an_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2535_difference_between_element_sum_and_digit_sum_of_an_array.py -------------------------------------------------------------------------------- /LeetCode/258_add_digits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/258_add_digits.py -------------------------------------------------------------------------------- /LeetCode/263_ugly_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/263_ugly_number.py -------------------------------------------------------------------------------- /LeetCode/268_missing_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/268_missing_number.py -------------------------------------------------------------------------------- /LeetCode/2703_return_length_of_arguments_passed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2703_return_length_of_arguments_passed.js -------------------------------------------------------------------------------- /LeetCode/2727_is_object_empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2727_is_object_empty.js -------------------------------------------------------------------------------- /LeetCode/2727_is_object_empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2727_is_object_empty.py -------------------------------------------------------------------------------- /LeetCode/278_first_bad_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/278_first_bad_version.py -------------------------------------------------------------------------------- /LeetCode/2798_number_of_employees_who_met_the_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2798_number_of_employees_who_met_the_target.py -------------------------------------------------------------------------------- /LeetCode/27_remove_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/27_remove_element.py -------------------------------------------------------------------------------- /LeetCode/2824_count_pairs_whose_sum_is_less_than_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2824_count_pairs_whose_sum_is_less_than_target.py -------------------------------------------------------------------------------- /LeetCode/2828_check_if_a_string_is_an_acronym_of_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2828_check_if_a_string_is_an_acronym_of_words.py -------------------------------------------------------------------------------- /LeetCode/283_move_zeroes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/283_move_zeroes.py -------------------------------------------------------------------------------- /LeetCode/2859_sum_of_values_at_indices_with_k_set_bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2859_sum_of_values_at_indices_with_k_set_bits.py -------------------------------------------------------------------------------- /LeetCode/287_find_the_duplicate_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/287_find_the_duplicate_number.py -------------------------------------------------------------------------------- /LeetCode/2894_divisible_and_nondivisible_sums_difference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2894_divisible_and_nondivisible_sums_difference.py -------------------------------------------------------------------------------- /LeetCode/28_find_the_index_of_the_first_occurrence_in_a_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/28_find_the_index_of_the_first_occurrence_in_a_string.py -------------------------------------------------------------------------------- /LeetCode/290_word_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/290_word_pattern.py -------------------------------------------------------------------------------- /LeetCode/292_nim_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/292_nim_game.py -------------------------------------------------------------------------------- /LeetCode/2942_find_words_containing_character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/2942_find_words_containing_character.py -------------------------------------------------------------------------------- /LeetCode/3110_score_of_a_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/3110_score_of_a_string.py -------------------------------------------------------------------------------- /LeetCode/3190_find_minimum_operations_to_make_all_elements_divisible_by_three.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/3190_find_minimum_operations_to_make_all_elements_divisible_by_three.py -------------------------------------------------------------------------------- /LeetCode/326_power_of_three.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/326_power_of_three.py -------------------------------------------------------------------------------- /LeetCode/3289_the_two_sneaky_numbers_of_digitville.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/3289_the_two_sneaky_numbers_of_digitville.py -------------------------------------------------------------------------------- /LeetCode/32_longest_valid_parentheses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/32_longest_valid_parentheses.py -------------------------------------------------------------------------------- /LeetCode/338_counting_bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/338_counting_bits.py -------------------------------------------------------------------------------- /LeetCode/342_power_of_four.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/342_power_of_four.py -------------------------------------------------------------------------------- /LeetCode/344_reverse_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/344_reverse_string.py -------------------------------------------------------------------------------- /LeetCode/345_reverse_vowels_of_a_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/345_reverse_vowels_of_a_string.py -------------------------------------------------------------------------------- /LeetCode/34_find_first_and_last_position_of_element_in_sorted_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/34_find_first_and_last_position_of_element_in_sorted_array.py -------------------------------------------------------------------------------- /LeetCode/35_search_insert_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/35_search_insert_position.py -------------------------------------------------------------------------------- /LeetCode/367_valid_perfect_square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/367_valid_perfect_square.py -------------------------------------------------------------------------------- /LeetCode/36_valid_sudoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/36_valid_sudoku.py -------------------------------------------------------------------------------- /LeetCode/383_ransom_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/383_ransom_note.py -------------------------------------------------------------------------------- /LeetCode/387_first_unique_character_in_a_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/387_first_unique_character_in_a_string.py -------------------------------------------------------------------------------- /LeetCode/389_find_the_difference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/389_find_the_difference.py -------------------------------------------------------------------------------- /LeetCode/392_is_subsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/392_is_subsequence.py -------------------------------------------------------------------------------- /LeetCode/3_longest_substring_without_repeating_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/3_longest_substring_without_repeating_characters.py -------------------------------------------------------------------------------- /LeetCode/409_longest_palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/409_longest_palindrome.py -------------------------------------------------------------------------------- /LeetCode/412_fizz_buzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/412_fizz_buzz.py -------------------------------------------------------------------------------- /LeetCode/415_add_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/415_add_strings.py -------------------------------------------------------------------------------- /LeetCode/41_first_missing_positive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/41_first_missing_positive.py -------------------------------------------------------------------------------- /LeetCode/434_number_of_segments_in_a_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/434_number_of_segments_in_a_string.py -------------------------------------------------------------------------------- /LeetCode/441_arranging_coins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/441_arranging_coins.py -------------------------------------------------------------------------------- /LeetCode/442_find_all_duplicates_in_an_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/442_find_all_duplicates_in_an_array.py -------------------------------------------------------------------------------- /LeetCode/448_find_all_numbers_disappeared_in_an_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/448_find_all_numbers_disappeared_in_an_array.py -------------------------------------------------------------------------------- /LeetCode/455_assign_cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/455_assign_cookies.py -------------------------------------------------------------------------------- /LeetCode/459_repeated_substring_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/459_repeated_substring_pattern.py -------------------------------------------------------------------------------- /LeetCode/461_hamming_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/461_hamming_distance.py -------------------------------------------------------------------------------- /LeetCode/463_island_perimeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/463_island_perimeter.py -------------------------------------------------------------------------------- /LeetCode/476_number_complement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/476_number_complement.py -------------------------------------------------------------------------------- /LeetCode/477_total_hamming_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/477_total_hamming_distance.py -------------------------------------------------------------------------------- /LeetCode/482_license_key_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/482_license_key_formatting.py -------------------------------------------------------------------------------- /LeetCode/485_max_consecutive_ones.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/485_max_consecutive_ones.php -------------------------------------------------------------------------------- /LeetCode/485_max_consecutive_ones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/485_max_consecutive_ones.py -------------------------------------------------------------------------------- /LeetCode/492_construct_the_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/492_construct_the_rectangle.py -------------------------------------------------------------------------------- /LeetCode/495_teemo_attacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/495_teemo_attacking.py -------------------------------------------------------------------------------- /LeetCode/4_median_of_two_sorted_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/4_median_of_two_sorted_arrays.py -------------------------------------------------------------------------------- /LeetCode/500_keyboard_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/500_keyboard_row.py -------------------------------------------------------------------------------- /LeetCode/507_perfect_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/507_perfect_number.py -------------------------------------------------------------------------------- /LeetCode/50_powx_n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/50_powx_n.py -------------------------------------------------------------------------------- /LeetCode/520_detect_capital.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/520_detect_capital.py -------------------------------------------------------------------------------- /LeetCode/521_longest_uncommon_subsequence_i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/521_longest_uncommon_subsequence_i.py -------------------------------------------------------------------------------- /LeetCode/53_maximum_subarray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/53_maximum_subarray.js -------------------------------------------------------------------------------- /LeetCode/557_reverse_words_in_a_string_iii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/557_reverse_words_in_a_string_iii.py -------------------------------------------------------------------------------- /LeetCode/58_length_of_last_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/58_length_of_last_word.py -------------------------------------------------------------------------------- /LeetCode/599_minimum_index_sum_of_two_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/599_minimum_index_sum_of_two_lists.py -------------------------------------------------------------------------------- /LeetCode/5_longest_palindromic_substring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/5_longest_palindromic_substring.py -------------------------------------------------------------------------------- /LeetCode/66_plus_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/66_plus_one.py -------------------------------------------------------------------------------- /LeetCode/67_add_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/67_add_binary.py -------------------------------------------------------------------------------- /LeetCode/69_sqrtx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/69_sqrtx.py -------------------------------------------------------------------------------- /LeetCode/6_zigzag_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/6_zigzag_conversion.py -------------------------------------------------------------------------------- /LeetCode/709_to_lower_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/709_to_lower_case.py -------------------------------------------------------------------------------- /LeetCode/70_climbing_stairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/70_climbing_stairs.py -------------------------------------------------------------------------------- /LeetCode/728_self_dividing_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/728_self_dividing_numbers.py -------------------------------------------------------------------------------- /LeetCode/771_jewels_and_stones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/771_jewels_and_stones.py -------------------------------------------------------------------------------- /LeetCode/7_reverse_integer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/7_reverse_integer.js -------------------------------------------------------------------------------- /LeetCode/804_unique_morse_code_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/804_unique_morse_code_words.py -------------------------------------------------------------------------------- /LeetCode/832_flipping_an_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/832_flipping_an_image.py -------------------------------------------------------------------------------- /LeetCode/83_remove_duplicates_from_sorted_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/83_remove_duplicates_from_sorted_list.py -------------------------------------------------------------------------------- /LeetCode/896_monotonic_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/896_monotonic_array.py -------------------------------------------------------------------------------- /LeetCode/8_string_to_integer_atoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/8_string_to_integer_atoi.py -------------------------------------------------------------------------------- /LeetCode/917_reverse_only_letters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/917_reverse_only_letters.py -------------------------------------------------------------------------------- /LeetCode/941_valid_mountain_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/941_valid_mountain_array.py -------------------------------------------------------------------------------- /LeetCode/953_verifying_an_alien_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/953_verifying_an_alien_dictionary.py -------------------------------------------------------------------------------- /LeetCode/989_add_to_arrayform_of_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/989_add_to_arrayform_of_integer.py -------------------------------------------------------------------------------- /LeetCode/9_palindrome_number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/9_palindrome_number.js -------------------------------------------------------------------------------- /LeetCode/9_palindrome_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/9_palindrome_number.py -------------------------------------------------------------------------------- /LeetCode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LeetCode/abstract_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/abstract_solution.py -------------------------------------------------------------------------------- /LeetCode/leet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/leet -------------------------------------------------------------------------------- /LeetCode/template.js: -------------------------------------------------------------------------------- 1 | /** LeetCode JavaScript template solution */ 2 | 3 | 4 | console.log("Ok."); -------------------------------------------------------------------------------- /LeetCode/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/template.php -------------------------------------------------------------------------------- /LeetCode/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/template.py -------------------------------------------------------------------------------- /LeetCode/template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/template.sql -------------------------------------------------------------------------------- /LeetCode/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LeetCode/test.py -------------------------------------------------------------------------------- /LinkedList/doubleLinkedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LinkedList/doubleLinkedList.js -------------------------------------------------------------------------------- /LinkedList/linkedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/LinkedList/linkedList.js -------------------------------------------------------------------------------- /ProjectEuler/Euler13/euler13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler13/euler13.py -------------------------------------------------------------------------------- /ProjectEuler/Euler13/euler13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler13/euler13.txt -------------------------------------------------------------------------------- /ProjectEuler/Euler2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler2.py -------------------------------------------------------------------------------- /ProjectEuler/Euler22/euler22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler22/euler22.py -------------------------------------------------------------------------------- /ProjectEuler/Euler22/names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler22/names.py -------------------------------------------------------------------------------- /ProjectEuler/Euler22/names.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler22/names.pyc -------------------------------------------------------------------------------- /ProjectEuler/Euler22/p022_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler22/p022_names.txt -------------------------------------------------------------------------------- /ProjectEuler/Euler25/euler25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler25/euler25.py -------------------------------------------------------------------------------- /ProjectEuler/Euler4/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler4/build.xml -------------------------------------------------------------------------------- /ProjectEuler/Euler4/build/built-jar.properties: -------------------------------------------------------------------------------- 1 | #Wed, 18 Jul 2012 02:20:56 +0200 2 | 3 | 4 | /home/blade/Dropbox/codin/Euler4= 5 | -------------------------------------------------------------------------------- /ProjectEuler/Euler4/build/classes/euler4/Euler4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler4/build/classes/euler4/Euler4.class -------------------------------------------------------------------------------- /ProjectEuler/Euler4/dist/Euler4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler4/dist/Euler4.jar -------------------------------------------------------------------------------- /ProjectEuler/Euler4/dist/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler4/dist/README.TXT -------------------------------------------------------------------------------- /ProjectEuler/Euler4/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler4/manifest.mf -------------------------------------------------------------------------------- /ProjectEuler/Euler4/src/euler4/Euler4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler4/src/euler4/Euler4.java -------------------------------------------------------------------------------- /ProjectEuler/Euler44/euler44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler44/euler44.py -------------------------------------------------------------------------------- /ProjectEuler/Euler52/Euler/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler52/Euler/build.xml -------------------------------------------------------------------------------- /ProjectEuler/Euler52/Euler/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler52/Euler/manifest.mf -------------------------------------------------------------------------------- /ProjectEuler/Euler52/Euler/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler52/Euler/nbproject/build-impl.xml -------------------------------------------------------------------------------- /ProjectEuler/Euler52/Euler/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler52/Euler/nbproject/genfiles.properties -------------------------------------------------------------------------------- /ProjectEuler/Euler52/Euler/nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler52/Euler/nbproject/private/private.properties -------------------------------------------------------------------------------- /ProjectEuler/Euler52/Euler/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler52/Euler/nbproject/private/private.xml -------------------------------------------------------------------------------- /ProjectEuler/Euler52/Euler/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler52/Euler/nbproject/project.properties -------------------------------------------------------------------------------- /ProjectEuler/Euler52/Euler/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler52/Euler/nbproject/project.xml -------------------------------------------------------------------------------- /ProjectEuler/Euler52/Euler/src/euler/Euler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler52/Euler/src/euler/Euler.java -------------------------------------------------------------------------------- /ProjectEuler/Euler55/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler55/build.xml -------------------------------------------------------------------------------- /ProjectEuler/Euler55/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler55/manifest.mf -------------------------------------------------------------------------------- /ProjectEuler/Euler55/src/euler55/Euler55.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler55/src/euler55/Euler55.java -------------------------------------------------------------------------------- /ProjectEuler/Euler6/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler6/build.xml -------------------------------------------------------------------------------- /ProjectEuler/Euler6/build/built-jar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler6/build/built-jar.properties -------------------------------------------------------------------------------- /ProjectEuler/Euler6/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ProjectEuler/Euler6/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ProjectEuler/Euler6/build/classes/euler/Euler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler6/build/classes/euler/Euler.class -------------------------------------------------------------------------------- /ProjectEuler/Euler6/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler6/manifest.mf -------------------------------------------------------------------------------- /ProjectEuler/Euler6/src/euler/Euler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler6/src/euler/Euler.java -------------------------------------------------------------------------------- /ProjectEuler/Euler7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler7 -------------------------------------------------------------------------------- /ProjectEuler/Euler7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler7.cpp -------------------------------------------------------------------------------- /ProjectEuler/Euler8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler8.py -------------------------------------------------------------------------------- /ProjectEuler/Euler9/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler9/build.xml -------------------------------------------------------------------------------- /ProjectEuler/Euler9/build/built-jar.properties: -------------------------------------------------------------------------------- 1 | #Wed, 18 Jul 2012 01:25:55 +0200 2 | 3 | 4 | /home/blade/Dropbox/codin/Euler9= 5 | -------------------------------------------------------------------------------- /ProjectEuler/Euler9/build/classes/.netbeans_automatic_build: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ProjectEuler/Euler9/build/classes/.netbeans_update_resources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ProjectEuler/Euler9/build/classes/Euler9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler9/build/classes/Euler9.class -------------------------------------------------------------------------------- /ProjectEuler/Euler9/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler9/manifest.mf -------------------------------------------------------------------------------- /ProjectEuler/Euler9/src/Euler9.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/ProjectEuler/Euler9/src/Euler9.java -------------------------------------------------------------------------------- /Queue/queueDequeImpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/Queue/queueDequeImpl.py -------------------------------------------------------------------------------- /Queue/queueLinkedListImpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/Queue/queueLinkedListImpl.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/README.md -------------------------------------------------------------------------------- /Recursion/factorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/Recursion/factorial.js -------------------------------------------------------------------------------- /Sorting/BubbleSort/bubbleSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/Sorting/BubbleSort/bubbleSort.js -------------------------------------------------------------------------------- /Sorting/InsertionSort/insertionSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/Sorting/InsertionSort/insertionSort.js -------------------------------------------------------------------------------- /Sorting/SelectionSort/selectionSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/Sorting/SelectionSort/selectionSort.js -------------------------------------------------------------------------------- /Sorting/sortingAlgorithmsCompare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/Sorting/sortingAlgorithmsCompare.js -------------------------------------------------------------------------------- /Stack/StackArrayImpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/Stack/StackArrayImpl.js -------------------------------------------------------------------------------- /Stack/StackLinkedListImpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/Stack/StackLinkedListImpl.js -------------------------------------------------------------------------------- /asm/.gdb_history: -------------------------------------------------------------------------------- 1 | quit 2 | -------------------------------------------------------------------------------- /asm/compileandlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/asm/compileandlink.sh -------------------------------------------------------------------------------- /asm/exit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/asm/exit -------------------------------------------------------------------------------- /asm/exit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/asm/exit.asm -------------------------------------------------------------------------------- /asm/exit.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/asm/exit.lst -------------------------------------------------------------------------------- /asm/exit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/asm/exit.o -------------------------------------------------------------------------------- /c/format_string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/c/format_string -------------------------------------------------------------------------------- /c/format_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/c/format_string.c -------------------------------------------------------------------------------- /c/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/c/memory -------------------------------------------------------------------------------- /c/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/c/memory.c -------------------------------------------------------------------------------- /c/networking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/c/networking -------------------------------------------------------------------------------- /c/networking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/c/networking.c -------------------------------------------------------------------------------- /c/tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/c/tests -------------------------------------------------------------------------------- /c/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/c/tests.c -------------------------------------------------------------------------------- /misc/fibonacci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/misc/fibonacci -------------------------------------------------------------------------------- /misc/fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/misc/fibonacci.cpp -------------------------------------------------------------------------------- /misc/maccarthy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/misc/maccarthy -------------------------------------------------------------------------------- /misc/maccarthy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/misc/maccarthy.cpp -------------------------------------------------------------------------------- /misc/sieve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/misc/sieve.html -------------------------------------------------------------------------------- /misc/sieve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/misc/sieve.js -------------------------------------------------------------------------------- /misc/silnia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/misc/silnia -------------------------------------------------------------------------------- /misc/silnia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/misc/silnia.cpp -------------------------------------------------------------------------------- /misc/sito_eratostenesa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/misc/sito_eratostenesa -------------------------------------------------------------------------------- /misc/sito_eratostenesa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/misc/sito_eratostenesa.cpp -------------------------------------------------------------------------------- /misc/stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bl4de/cs/HEAD/misc/stack.js --------------------------------------------------------------------------------