├── .gitignore ├── 01Matrix ├── 01_matrix.dart ├── 01_matrix.go └── 01_matrix.md ├── 3SumClosest ├── 3_sum_closest.dart ├── 3_sum_closest.go └── 3_sum_closest.md ├── AddBinary ├── add_binary.dart ├── add_binary.go └── add_binary.md ├── AddDigits ├── add_digits.dart ├── add_digits.go └── add_digits.md ├── AddOneRowToTree ├── add_one_row_to_tree.dart ├── add_one_row_to_tree.go └── add_one_row_to_tree.md ├── AddStrings ├── add_strings.dart ├── add_strings.go └── add_strings.md ├── AddToArrayFormOfInteger ├── add_to_array_form_of_integer.dart ├── add_to_array_form_of_integer.go └── add_to_array_form_of_integer.md ├── AllNodesDistanceKInBinaryTree ├── all_nodes_distance_k_in_binary_tree.dart ├── all_nodes_distance_k_in_binary_tree.go └── all_nodes_distance_k_in_binary_tree.md ├── ArithmeticSlicesII-Subsequence ├── arithmetic_slices_II_subsequence.dart ├── arithmetic_slices_II_subsequence.go └── arithmetic_slices_II_subsequence.md ├── ArithmeticSubarrays ├── arithmetic_subarrays.dart ├── arithmetic_subarrays.go └── arithmetic_subarrays.md ├── AsFarFromLandAsPossible ├── as_far_from_land_as_possible.dart ├── as_far_from_land_as_possible.go └── as_far_from_land_as_possible.md ├── AsteroidCollision ├── asteroid_collision.dart ├── asteroid_collision.go └── asteroid_collision.md ├── BagOfTokens ├── bag_of_tokens.dart ├── bag_of_tokens.go └── bag_of_tokens.md ├── BalancedBinaryTree ├── balanced_binary_tree.dart ├── balanced_binary_tree.go └── balanced_binary_tree.md ├── BasicCalculator ├── basic_calculator.dart ├── basic_calculator.go └── basic_calculator.md ├── BestTeamWithNoConflicts ├── best_team_with_no_conflicts.dart ├── best_team_with_no_conflicts.go └── best_team_with_no_conflicts.md ├── BestTimeToBuyAndSellStock ├── best_time_to_buy_and_sell_stock.dart ├── best_time_to_buy_and_sell_stock.go └── best_time_to_buy_and_sell_stock.md ├── BestTimeToBuyAndSellStockWithTransactionFee ├── best_time_to_buy_and_sell_stock_with_transaction_fee.dart ├── best_time_to_buy_and_sell_stock_with_transaction_fee.go └── best_time_to_buy_and_sell_stock_with_transaction_fee.md ├── BestTimeToBuyAndSellStock_IV ├── best_time_to_buy_and_sell_stock_IV.dart └── best_time_to_buy_and_sell_stock_IV.md ├── BinaryTreeInOrderTrasversel ├── binary_tree_inorder_trasversal.dart └── binary_tree_inorder_trasversal.md ├── BinaryTreeMaximumPathSum ├── binary_tree_maximum_path_sum.dart ├── binary_tree_maximum_path_sum.go └── binary_tree_maximum_path_sum.md ├── BinaryTreePaths ├── binary_tree_paths.dart ├── binary_tree_paths.go └── binary_tree_paths.md ├── BinaryTreePostorderTraversal ├── binary_tree_postorder_traversal.dart ├── binary_tree_postorder_traversal.go └── binary_tree_postorder_traversal.md ├── BinaryTreePreorderTraversal ├── binary_tree_preorder_traversal.dart ├── binary_tree_preorder_traversal.go └── binary_tree_preorder_traversal.md ├── BinaryWatch ├── binary_watch.dart ├── binary_watch.go └── binary_watch.md ├── BitwiseAndOfNumbersRange ├── bitwise_and_of_numbers_range.dart ├── bitwise_and_of_numbers_range.go └── bitwise_and_of_numbers_range.md ├── BreakAPalindrome ├── break_a_palindrome.dart ├── break_a_palindrome.go └── break_a_palindrome.md ├── BuddyStrings ├── buddy_strings.dart ├── buddy_strings.go └── buddy_strings.md ├── CanMakeArithmeticProgressionFromSequence ├── can_make_arithmetic_progression_from_sequence.dart ├── can_make_arithmetic_progression_from_sequence.go └── can_make_arithmetic_progression_from_sequence.md ├── CheapestFlightsWithinKStops ├── cheapest_flights_within_k_stops.dart ├── cheapest_flights_within_k_stops.go └── cheapest_flights_within_k_stops.md ├── CheckIfItIsAStraightLine ├── check_if_it_is_a_straight_line.dart ├── check_if_it_is_a_straight_line.go └── check_if_it_is_a_straight_line.md ├── CheckIfTheSentenceIsPangram ├── check_if_the_sentence_is_pangram.dart ├── check_if_the_sentence_is_pangram.go └── check_if_the_sentence_is_pangram.md ├── CheckIfThereIsAValidPartitionForTheArray ├── check_if_there_is_a_valid_partition_for_the_array.dart ├── check_if_there_is_a_valid_partition_for_the_array.go └── check_if_there_is_a_valid_partition_for_the_array.md ├── CheckIfTwoStringArraysAreEquivalent ├── check_if_two_string_arrays_are_equivalent.dart ├── check_if_two_string_arrays_are_equivalent.go └── check_if_two_string_arrays_are_equivalent.md ├── ClimbingStairs ├── climbing_stairs.dart ├── climbing_stairs.md └── climibing_stairs.go ├── CoinChangeII ├── coin_change_ii.dart ├── coin_change_ii.go └── coin_change_ii.md ├── CombinationSumIV ├── combination_sum_iv.dart ├── combination_sum_iv.go └── combination_sum_iv.md ├── ConcatenatedWords ├── concatenated_words.dart ├── concatenated_words.go └── concatenated_words.md ├── ConcatenationofConsecutiveBinaryNumbers ├── concatenation_of_consecutive_binary_numbers.dart ├── concatenation_of_consecutive_binary_numbers.go └── concatenation_of_consecutive_binary_numbers.md ├── ContainsDuplicate-II ├── contains_duplicate_II.dart ├── contains_duplicate_II.go └── contains_duplicate_II.md ├── ContainsDuplicate ├── contains_duplicate.dart ├── contains_duplicate.go └── contains_duplicate.md ├── ContinuousSubarraySum ├── continuous_subarray_sum.dart ├── continuous_subarray_sum.go └── continuous_subarray_sum.md ├── ConvertANumberToHexadecimal ├── convert_a_number_to_hexadecimal.dart ├── convert_a_number_to_hexadecimal.go └── convert_a_number_to_hexadecimal.md ├── ConvertSortedArrayToBinarySearchTree ├── convert_sorted_array_to_binary_search_tree.dart ├── convert_sorted_array_to_binary_search_tree.go └── convert_sorted_array_to_binary_search_tree.md ├── CopyListWithRandomPointer ├── copy_list_with_random_pointer.dart ├── copy_list_with_random_pointer.go └── copy_list_with_random_pointer.md ├── CountAndSay ├── count_and_say.dart ├── count_and_say.go └── count_and_say.md ├── CountCompleteTreeNodes ├── count_complete_tree_nodes.dart ├── count_complete_tree_nodes.go └── count_complete_tree_nodes.md ├── CountNegativeNumbersInASortedMatrix ├── count_negative_numbers_in_a_sorted_matrix.dart ├── count_negative_numbers_in_a_sorted_matrix.go └── count_negative_numbers_in_a_sorted_matrix.md ├── CountOddNumbersInAnIntervalRange ├── count_odd_numbers_in_an_interval_range.dart ├── count_odd_numbers_in_an_interval_range.go └── count_odd_numbers_in_an_interval_range.md ├── CountingBits ├── counting_bits.dart ├── counting_bits.go └── counting_bits.md ├── CourseSchedule ├── course_schedule.dart ├── course_schedule.go └── course_schedule.md ├── Create-File.ps1 ├── Create-Folder.ps1 ├── DailyTemperatures ├── daily_temperatures.dart ├── daily_temperatures.go └── daily_temperatures.md ├── DataStreamAsDisjointIntervals ├── data_stream_as_disjoint_intervals.dart ├── data_stream_as_disjoint_intervals.go └── data_stream_as_disjoint_intervals.md ├── DecodeWays ├── decode_ways.dart ├── decode_ways.go └── decode_ways.md ├── DeleteColumnsToMakeSorted ├── delete_columns_to_make_sorted.dart ├── delete_columns_to_make_sorted.go └── delete_columns_to_make_sorted.md ├── DeleteNodeInALinkedList ├── delete_node_in_a_linked_list.dart ├── delete_node_in_a_linked_list.go └── delete_node_in_a_linked_list.md ├── DeleteTheMiddleNodeOfALinkedList ├── delete_the_middle_node_of_a_linked_list.dart ├── delete_the_middle_node_of_a_linked_list.go └── delete_the_middle_node_of_a_linked_list.md ├── DesignBrowserHistory ├── design_browser_history.dart ├── design_browser_history.go └── design_browser_history.md ├── DesignCircularQueue ├── design_circular_queue.dart ├── design_circular_queue.go └── design_circular_queue.md ├── DesignHashSet ├── design_hashSet.dart ├── design_hashSet.go └── design_hashSet.md ├── DesignUndergroundSystem ├── design_underground_system.dart ├── design_underground_system.go └── design_underground_system.md ├── DetectCapital ├── detect_capital.dart ├── detect_capital.go └── detect_capital.md ├── DetermineIfStringHalvesAreAlike ├── determine_if_string_halves_are_alike.dart ├── determine_if_string_halves_are_alike.go └── determine_if_string_halves_are_alike.md ├── DetermineIfTwoStringsAreClose ├── determine_if_two_strings_are_close.dart ├── determine_if_two_strings_are_close.go └── determine_if_two_strings_are_close.md ├── DetonateTheMaximumBombs ├── detonate_the_maximum_bombs.dart ├── detonate_the_maximum_bombs.go └── detonate_the_maximum_bombs.md ├── DiagonalTraverseIi ├── diagonal_traverse_ii.dart ├── diagonal_traverse_ii.go └── diagonal_traverse_ii.md ├── EarliestPossibleDayOfFullBloom ├── earliest_possible_day_of_full_bloom.dart ├── earliest_possible_day_of_full_bloom.go └── earliest_possible_day_of_full_bloom.md ├── EqualRowAndColumnPairs ├── equal_row_and_column_pairs.dart ├── equal_row_and_column_pairs.go └── equal_row_and_column_pairs.md ├── ErectTheFence ├── erect_the_fence.dart ├── erect_the_fence.go └── erect_the_fence.md ├── EvaluateReversePolishNotation ├── evaluate_reverse_polish_notation.dart ├── evaluate_reverse_polish_notation.go └── evaluate_reverse_polish_notation.md ├── ExcelSheetColumnNumber ├── excel_sheet_colum_number.dart ├── excel_sheet_colum_number.dart.md └── excel_sheet_colum_number.go ├── ExcelSheetColumnTitle ├── excel_sheet_column_title.dart ├── excel_sheet_column_title.go └── excel_sheet_column_title.md ├── FindClosestNodeToGivenTwoNodes ├── find_closest_node_to_given_two_nodes.dart ├── find_closest_node_to_given_two_nodes.go └── find_closest_node_to_given_two_nodes.md ├── FindCriticalAndPseudoCriticalEdgesInMinimumSpanningTree ├── find_critical_and_pseudocritical_edges_in_minimum_spanning_tree.dart ├── find_critical_and_pseudocritical_edges_in_minimum_spanning_tree.go └── find_critical_and_pseudocritical_edges_in_minimum_spanning_tree.md ├── FindDuplicateFileInSystem ├── find_duplicate_file_in_system.dart ├── find_duplicate_file_in_system.go └── find_duplicate_file_in_system.md ├── FindIfPathExistsInGraph ├── find_if_path_exists_in_graph.dart ├── find_if_path_exists_in_graph.go └── find_if_path_exists_in_graph.md ├── FindKClosestElements ├── find_k_closest_elements.dart ├── find_k_closest_elements.go └── find_k_closest_elements.md ├── FindMedianFromDataStream ├── find_median_from_data_stream.dart ├── find_median_from_data_stream.go └── find_median_from_data_stream.md ├── FindOriginalArrayFromDoubledArray ├── find_original_array_from_doubled_array.dart ├── find_original_array_from_doubled_array.go └── find_original_array_from_doubled_array.md ├── FindPlayersWithZeroOrOneLosses ├── find_players_with_zero_or_one_losses.dart ├── find_players_with_zero_or_one_losses.go └── find_players_with_zero_or_one_losses.md ├── FindSmallestLetterGreaterThanTarget ├── find_smallest_letter_greater_than_target.dart ├── find_smallest_letter_greater_than_target.go └── find_smallest_letter_greater_than_target.md ├── FindTheDifference ├── find_the_difference.dart ├── find_the_difference.go └── find_the_difference.md ├── FindTheHighestAltitude ├── find_the_highest_altitude.dart ├── find_the_highest_altitude.go └── find_the_highest_altitude.md ├── FirstBadVersion ├── first_bad_version.dart ├── first_bad_version.go └── first_bad_version.md ├── FirstUniqueCharacterInAString ├── first_unique_character_in_a_string.dart ├── first_unique_character_in_a_string.go └── first_unique_character_in_a_string.md ├── FizzBuzz ├── fizz_buzz.dart ├── fizz_buzz.go └── fizz_buzz.md ├── FlipStringToMonotoneIncreasing ├── flip_string_to_monotone_increasing.dart ├── flip_string_to_monotone_increasing.go └── flip_string_to_monotone_increasing.md ├── FruitIntoBaskets ├── fruit_into_baskets.dart ├── fruit_into_baskets.go └── fruit_into_baskets.md ├── GreatestCommonDivisorOfStrings ├── greatest_common_divisor_of_strings.dart ├── greatest_common_divisor_of_strings.go └── greatest_common_divisor_of_strings.md ├── GroupAnagrams ├── group_anagrams.dart ├── group_anagrams.go └── group_anagrams.md ├── GroupThePeopleGivenTheGroupSizeTheyBelongTo ├── group_the_people_given_the_group_size_they_belong_to.dart ├── group_the_people_given_the_group_size_they_belong_to.go └── group_the_people_given_the_group_size_they_belong_to.md ├── GuessNumberHigherOrLower ├── guess_number_higher_or_lower.dart ├── guess_number_higher_or_lower.go └── guess_number_higher_or_lower.md ├── HappyNumber ├── happy_number.dart ├── happy_number.go └── happy_number.md ├── HouseRobber ├── house_robber.dart ├── house_robber.go └── house_robber.md ├── ImageOverlap ├── image_overlap.dart ├── image_overlap.go └── image_overlap.md ├── ImplementQueueUsingStacks ├── implement_queue_using_stacks.dart ├── implement_queue_using_stacks.go └── implement_queue_using_stacks.md ├── ImplementStackUsingQueues ├── implement_stack_using_queues.dart ├── implement_stack_using_queues.go └── implement_stack_using_queues.md ├── ImplementstrStr ├── implement_strStr.dart └── implement_strStr.md ├── IncreasingTripletSubsequence ├── increasing_triplet_subsequence.dart ├── increasing_triplet_subsequence.go └── increasing_triplet_subsequence.md ├── InsertDeleteGetRandom-01 ├── insert_delete_getrandom_O1.dart ├── insert_delete_getrandom_O1.go └── insert_delete_getrandom_O1.md ├── InsertInterval ├── insert_interval.dart ├── insert_interval.go └── insert_interval.md ├── IntegerToRoman ├── integer_to_roman.dart ├── integer_to_roman.go └── integer_to_roman.md ├── InterleavingString ├── interleaving_string.dart ├── interleaving_string.go └── interleaving_string.md ├── IntersectionOfTwoArrays ├── intersection_of_two_arrays.dart ├── intersection_of_two_arrays.go └── intersection_of_two_arrays.md ├── IntersectionOfTwoArraysII ├── intersection_of_two_arrays_II.dart ├── intersection_of_two_arrays_II.go └── intersection_of_two_arrays_II.md ├── IntersectionOfTwoLinkedLists ├── intersection_of_two_linked_lists.dart ├── intersection_of_two_linked_lists.go └── intersection_of_two_linked_lists.md ├── InvertBinaryTree ├── invert_binary_tree.dart ├── invert_binary_tree.go └── invert_binary_tree.md ├── IsSubsequence ├── is_subsequence.dart ├── is_subsequence.go └── is_subsequence.md ├── IsomorphicStrings ├── isomorphic_strings.dart ├── isomorphic_strings.go └── isomorphic_strings.md ├── JumpGameII ├── jump_game_ii.dart ├── jump_game_ii.go └── jump_game_ii.md ├── KRadiusSubarrayAverages ├── k_radius_subarray_averages.dart ├── k_radius_subarray_averages.go └── k_radius_subarray_averages.md ├── KeysAndRooms ├── keys_and_rooms.dart ├── keys_and_rooms.go └── keys_and_rooms.md ├── LFUCache ├── lfu_cache.dart ├── lfu_cache.go └── lfu_cache.md ├── LRUCache ├── lru_cache.dart ├── lru_cache.go └── lru_cache.md ├── LargestPerimeterTriangle ├── largest_perimeter_triangle.dart ├── largest_perimeter_triangle.go └── largest_perimeter_triangle.md ├── LastDayWhereYouCanStillCross ├── last_day_where_you_can_still_cross.dart ├── last_day_where_you_can_still_cross.go └── last_day_where_you_can_still_cross.md ├── LeafSimilarTrees ├── leaf_similar_trees.dart ├── leaf_similar_trees.go └── leaf_similar_trees.md ├── LengthOfLastWord ├── length_of_last_word.dart └── length_of_last_word.md ├── LexicographicallySmallestEquivalentString ├── lexicographically_smallest_equivalent_string.dart ├── lexicographically_smallest_equivalent_string.go └── lexicographically_smallest_equivalent_string.md ├── LinkedListCycle ├── linked_list_cycle..go ├── linked_list_cycle.dart └── linked_list_cycle.md ├── LongestArithmeticSubsequence ├── longest_arithmetic_subsequence.dart ├── longest_arithmetic_subsequence.go └── longest_arithmetic_subsequence.md ├── LongestCommonPrefix ├── longest_common_prefix.dart └── longest_common_prefix.md ├── LongestCommonSubsequence ├── longest_common_subsequence.dart ├── longest_common_subsequence.go └── longest_common_subsequence.md ├── LongestPalindrome ├── longest_palindrome.dart ├── longest_palindrome.go └── longest_palindrome.md ├── LongestPalindromeByConcatenatingTwoLetterWords ├── longest_palindrome_by_concatenating_two_letter_words.dart ├── longest_palindrome_by_concatenating_two_letter_words.go └── longest_palindrome_by_concatenating_two_letter_words.md ├── LongestPathWithDifferentAdjacentCharacters ├── longest_path_with_Different_adjacent_characters.dart ├── longest_path_with_Different_adjacent_characters.go └── longest_path_with_Different_adjacent_characters.md ├── LongestSubarrayOf1SAfterDeletingOneElement ├── longest_subarray_of_1s_after_deleting_one_element.dart ├── longest_subarray_of_1s_after_deleting_one_element.go └── longest_subarray_of_1s_after_deleting_one_element.md ├── MajorityElement ├── majority_element.dart ├── majority_element.go └── majority_element.md ├── MakeArrayStrictlyIncreasing ├── make_array_strictly_increasing.dart ├── make_array_strictly_increasing.go └── make_array_strictly_increasing.md ├── MaxPointsOnALine ├── max_points_on_a_line.dart ├── max_points_on_a_line.go └── max_points_on_a_line.md ├── MaximalNetworkRank ├── maximal_network_rank.dart ├── maximal_network_rank.go └── maximal_network_rank.md ├── MaximizeTheConfusionOfAnExam ├── maximize_the_confusion_of_an_exam.dart ├── maximize_the_confusion_of_an_exam.go └── maximize_the_confusion_of_an_exam.md ├── MaximumDepthOfBinaryTree ├── maximum_depth_of_binary_tree.dart └── maximum_depth_of_binary_tree.md ├── MaximumDifferenceBetweenNodeAndAncestor ├── maximum_difference_between_node_and_ancestor.dart ├── maximum_difference_between_node_and_ancestor.go └── maximum_difference_between_node_and_ancestor.md ├── MaximumIceCreamBars ├── maximum_ice_cream_bars.dart ├── maximum_ice_cream_bars.go └── maximum_ice_cream_bars.md ├── MaximumLengthOfAConcatenatedStringWithUniqueCharacters ├── maximum_length_of_a_concatenated_string_with_unique_characters.dart ├── maximum_length_of_a_concatenated_string_with_unique_characters.go └── maximum_length_of_a_concatenated_string_with_unique_characters.md ├── MaximumLengthOfPairChain ├── maximum_length_of_pair_chain.dart ├── maximum_length_of_pair_chain.go └── maximum_length_of_pair_chain.md ├── MaximumLengthofRepeatedSubarray ├── maximum_length_of_repeated_subarray.dart ├── maximum_length_of_repeated_subarray.go └── maximum_length_of_repeated_subarray.md ├── MaximumLevelSumOfABinaryTree ├── maximum_level_sum_of_a_binary_tree.dart ├── maximum_level_sum_of_a_binary_tree.go └── maximum_level_sum_of_a_binary_tree.md ├── MaximumNumberOfCoinsYouCanGet ├── maximum_number_of_coins_you_can_get.dart ├── maximum_number_of_coins_you_can_get.go └── maximum_number_of_coins_you_can_get.md ├── MaximumPerformanceofaTeam ├── maximum_performance_of_a_team.dart ├── maximum_performance_of_a_team.go └── maximum_performance_of_a_team.md ├── MaximumProductOfSplittedBinaryTree ├── maximum_product_of_splitted_binary_tree.dart ├── maximum_product_of_splitted_binary_tree.go └── maximum_product_of_splitted_binary_tree.md ├── MaximumProfitInJobScheduling ├── maximum_profit_in_job_scheduling.dart ├── maximum_profit_in_job_scheduling.go └── maximum_profit_in_job_scheduling.md ├── MaximumScorefromPerformingMultiplicationOperations ├── Maximum score_from_performing_multiplication_operations.dart ├── Maximum score_from_performing_multiplication_operations.go └── Maximum score_from_performing_multiplication_operations.md ├── MaximumSumCircularSubarray ├── maximum_sum_circular_subarray.dart ├── maximum_sum_circular_subarray.go └── maximum_sum_circular_subarray.md ├── MaximumValueAtAGivenIndexInABoundedArray ├── maximum_value_at_a_given_index_in_a_bounded_array.dart ├── maximum_value_at_a_given_index_in_a_bounded_array.go └── maximum_value_at_a_given_index_in_a_bounded_array.md ├── MeetingRooms ├── meeting_rooms.dart ├── meeting_rooms.go └── meeting_rooms.md ├── MergeSortedArray ├── merge_sorted_array.dart └── merge_sorted_array.md ├── MergeTwoSortedLists ├── merge_two_sorted_lists.dart └── merge_two_sorted_lists.md ├── MiddleOfTheLinkedList ├── middle_of_the_linked_list.dart ├── middle_of_the_linked_list.go └── middle_of_the_linked_list.md ├── MinCostToConnectAllPoints ├── min_cost_to_connect_all_points.dart ├── min_cost_to_connect_all_points.go └── min_cost_to_connect_all_points.md ├── MinimizeTheMaximumDifferenceOfPairs ├── minimize_the_maximum_difference_of_pairs.dart ├── minimize_the_maximum_difference_of_pairs.go └── minimize_the_maximum_difference_of_pairs.md ├── MinimumAverageDifference ├── minimum_average_difference.dart ├── minimum_average_difference.go └── minimum_average_difference.md ├── MinimumCostToCutAStick ├── minimum_cost_to_cut_a_stick.dart ├── minimum_cost_to_cut_a_stick.go └── minimum_cost_to_cut_a_stick.md ├── MinimumDeletionsToMakeCharacterFrequenciesUnique ├── minimum_deletions_to_make_character_frequencies_unique.dart ├── minimum_deletions_to_make_character_frequencies_unique.go └── minimum_deletions_to_make_character_frequencies_unique.md ├── MinimumDepthofBinaryTree ├── minimum_depth_of_binary_tree.dart ├── minimum_depth_of_binary_tree.go └── minimum_depth_of_binary_tree.md ├── MinimumDifficultyOfAJobSchedule ├── minimum_difficulty_of_a_job_schedule.dart ├── minimum_difficulty_of_a_job_schedule.go └── minimum_difficulty_of_a_job_schedule.md ├── MinimumFallingPathSum ├── minimum_falling_path_sum.dart ├── minimum_falling_path_sum.go └── minimum_falling_path_sum.md ├── MinimumFuelCostToReportToTheCapital ├── minimum_fuel_cost_to_report_to_the_capital.dart ├── minimum_fuel_cost_to_report_to_the_capital.go └── minimum_fuel_cost_to_report_to_the_capital.md ├── MinimumGeneticMutation ├── minimum_genetic_mutation.dart ├── minimum_genetic_mutation.go └── minimum_genetic_mutation.md ├── MinimumNumberOfArrowsToBurstBalloons ├── minimum_number_of_arrows_to_burst_balloons.dart ├── minimum_number_of_arrows_to_burst_balloons.go └── minimum_number_of_arrows_to_burst_balloons.md ├── MinimumPenaltyForAShop ├── minimum_penalty_for_a_shop.dart ├── minimum_penalty_for_a_shop.go └── minimum_penalty_for_a_shop.md ├── MinimumReplacementsToSortTheArray ├── minimum_replacements_to_sort_the_array.dart ├── minimum_replacements_to_sort_the_array.go └── minimum_replacements_to_sort_the_array.md ├── MinimumRoundsToCompleteAllTasks ├── minimum_rounds_to_complete_all_tasks.dart ├── minimum_rounds_to_complete_all_tasks.go └── minimum_rounds_to_complete_all_tasks.md ├── MinimumSpeedToArriveOnTime ├── minimum_speed_to_arrive_on_time.dart ├── minimum_speed_to_arrive_on_time.go └── minimum_speed_to_arrive_on_time.md ├── MinimumTimeToCollectAllApplesInATree ├── minimum_time_to_collect_all_apples_in_a_tree.dart ├── minimum_time_to_collect_all_apples_in_a_tree.go └── minimum_time_to_collect_all_apples_in_a_tree.md ├── MinimumTimeToMakeRopeColorful ├── minimum_time_to_make_rope_colorful.dart ├── minimum_time_to_make_rope_colorful.go └── minimum_time_to_make_rope_colorful.md ├── MinimumWindowSubstring ├── minimum_window_substring.dart ├── minimum_window_substring.go └── minimum_window_substring.md ├── MissingNumber ├── missing_number.dart ├── missing_number.go └── missing_number.md ├── MissingRanges ├── missing_ranges.dart ├── missing_ranges.go └── missing_ranges.md ├── MostStonesRemovedWithSameRowOrColumn ├── most_stones_removed_with_same_row_or_column.dart ├── most_stones_removed_with_same_row_or_column.go └── most_stones_removed_with_same_row_or_column.md ├── MoveZeroes ├── move_zeroes.dart ├── move_zeroes.go └── move_zeroes.md ├── MyCalendar-III ├── my_calendar_III.dart ├── my_calendar_III.go └── my_calendar_III.md ├── N-thTribonacciNumber ├── n_th_tribonacci_number.dart ├── n_th_tribonacci_number.go └── n_th_tribonacci_number.md ├── NamingACompany ├── naming_a_company.dart ├── naming_a_company.go └── naming_a_company.md ├── NearestExitFromEntranceInMaze ├── nearest_exit_from_entrance_in_maze.dart ├── nearest_exit_from_entrance_in_maze.go └── nearest_exit_from_entrance_in_maze.md ├── New21Game ├── new_21_game.dart ├── new_21_game.go └── new_21_game.md ├── NimGame ├── nim_game.dart ├── nim_game.go └── nim_game.md ├── Non-DecreasingSubsequences ├── non_decreasing_subsequences.dart ├── non_decreasing_subsequences.go └── non_decreasing_subsequences.md ├── NumberOf-1-Bits ├── number_of_1_bits.dart ├── number_of_1_bits.go └── number_of_1_bits.md ├── NumberOfDiceRollsWithTargetSum ├── number_of_dice_rolls_with_target_sum.dart ├── number_of_dice_rolls_with_target_sum.go └── number_of_dice_rolls_with_target_sum.md ├── NumberOfGoodPaths ├── number_of_good_paths.dart ├── number_of_good_paths.go └── number_of_good_paths.md ├── NumberOfLongestIncreasingSubsequence ├── number_of_longest_increasing_subsequence.dart ├── number_of_longest_increasing_subsequence.go └── number_of_longest_increasing_subsequence.md ├── NumberOfNodesInTheSub-TreeWithTheSameLabel ├── number_of_nodes_in_the_sub_tree_with_the_same_label.dart ├── number_of_nodes_in_the_sub_tree_with_the_same_label.go └── number_of_nodes_in_the_sub_tree_with_the_same_label.md ├── NumberOfWaysToReorderArrayToGetSameBst ├── number_of_ways_to_reorder_array_to_get_same_bst.dart ├── number_of_ways_to_reorder_array_to_get_same_bst.go └── number_of_ways_to_reorder_array_to_get_same_bst.md ├── OddEvenLinkedList ├── odd_even_linked_list.dart ├── odd_even_linked_list.go └── odd_even_linked_list.md ├── PalindromeLinkedList ├── palindrome_linked_list.dart ├── palindrome_linked_list.go └── palindrome_linked_list.md ├── PalindromeNumber ├── palindrome_number.dart └── palindrome_number.md ├── PalindromePairs ├── demo.dart ├── palindrome_pairs.dart ├── palindrome_pairs.go └── palindrome_pairs.md ├── PalindromePartitioning ├── palindrome_partitioning.dart ├── palindrome_partitioning.go └── palindrome_partitioning.md ├── PartitionList ├── partition_list.dart ├── partition_list.go └── partition_list.md ├── Pascal'sTriangle-II ├── pascals_riangle_II.dart ├── pascals_riangle_II.go └── pascals_riangle_II.md ├── Pascal'sTriangle ├── pascals_triangle.dart ├── pascals_triangle.go └── pascals_triangle.md ├── PathSum ├── path_sum.dart ├── path_sum.go └── path_sum.md ├── PathSumII ├── path_sum_II.dart ├── path_sum_II.go └── path_sum_II.md ├── PathWithMinimumEffort ├── path_with_minimum_effort.dart ├── path_with_minimum_effort.go └── path_with_minimum_effort.md ├── PeakIndexInAMountainArray ├── peak_index_in_a_mountain_array.dart ├── peak_index_in_a_mountain_array.go └── peak_index_in_a_mountain_array.md ├── PerfectSquares ├── perfect_squares.dart ├── perfect_squares.go └── perfect_squares.md ├── PlusOne ├── plus_one.dart └── plus_one.md ├── PossibleBipartition ├── possible_bipartition.dart ├── possible_bipartition.go └── possible_bipartition.md ├── PowOfXN ├── pow_of_x_n.dart ├── pow_of_x_n.go └── pow_of_x_n.md ├── PowerOfFour ├── power_of_four.dart ├── power_of_four.go └── power_of_four.md ├── PowerOfThree ├── power_of_three.dart ├── power_of_three.go └── power_of_three.md ├── PowerOfTwo ├── power_of_two.dart ├── power_of_two.go └── power_of_two.md ├── PredictTheWinner ├── predict_the_winner.dart ├── predict_the_winner.go └── predict_the_winner.md ├── Pseudo-PalindromicPathsInABinaryTree ├── pseudo_palindromic_paths_in_a_binary_tree.dart ├── pseudo_palindromic_paths_in_a_binary_tree.go └── pseudo_palindromic_paths_in_a_binary_tree.md ├── PushDominoes ├── push_dominoes.dart ├── push_dominoes.go └── push_dominoes.md ├── PutMarblesInBags ├── put_marbles_in_bags.dart ├── put_marbles_in_bags.go └── put_marbles_in_bags.md ├── README.md ├── RangeSumOfBST ├── range_sum_of_bst.dart ├── range_sum_of_bst.go └── range_sum_of_bst.md ├── RangeSumQuery-Immutable ├── range_sum_query_immutable.dart ├── range_sum_query_immutable.go └── range_sum_query_immutable.md ├── RansomNote ├── ransom_note.dart ├── ransom_note.go └── ransom_note.md ├── ReadNCharactersGivenRead4 ├── read_n_characters_given_read4.dart ├── read_n_characters_given_read4.go └── read_n_characters_given_read4.md ├── RectangleArea ├── rectangle_area.dart ├── rectangle_area.go └── rectangle_area.md ├── RemoveDuplicatesfromSortedArray ├── remove_duplicates_from_sorted_array.dart └── remove_duplicates_from_sorted_array.md ├── RemoveDuplicatesfromSortedList ├── remove_duplicates_from_sorted_list.dart └── remove_duplicates_from_sorted_list.md ├── RemoveElement ├── remove_element.dart └── remove_element.md ├── RemoveLinkedListElements ├── remove_linked_list_elements..md ├── remove_linked_list_elements.dart └── remove_linked_list_elements.go ├── RemoveNthNodeFromEndOfList ├── remove_nth_node_from_end_of_list.dart ├── remove_nth_node_from_end_of_list.go └── remove_nth_node_from_end_of_list.md ├── RestoreIPAddresses ├── restore_ip_addresses.dart ├── restore_ip_addresses.go └── restore_ip_addresses.md ├── ReverseBits ├── reverse_bits.dart ├── reverse_bits.go └── reverse_bits.md ├── ReverseInteger ├── reverse_integer.go ├── reverse_integer.md └── reverse_integer.py ├── ReverseLinkedList ├── reverse_linked_list.dart ├── reverse_linked_list.go └── reverse_linked_list.md ├── ReverseString ├── reverse_string.dart ├── reverse_string.go └── reverse_string.md ├── ReverseVowelsOfAString ├── reverse_vowels_of_a_string.dart ├── reverse_vowels_of_a_string.go └── reverse_vowels_of_a_string.md ├── ReverseWordsInAString ├── reverse_words_in_a_string.dart ├── reverse_words_in_a_string.go └── reverse_words_in_a_string.md ├── ReverseWordsInAString_III ├── reverse_words_in_a_string_III.dart ├── reverse_words_in_a_string_III.go └── reverse_words_in_a_string_III.md ├── RomanToInteger ├── roman_to_integer.dart └── roman_to_integer.md ├── SameTree ├── same_tree.dart ├── same_tree.go └── same_tree.md ├── SatisfiabilityOfEqualityEquations ├── satisfiability_of_equality_equations.dart ├── satisfiability_of_equality_equations.go └── satisfiability_of_equality_equations.md ├── SearchA2DMatrix ├── search_a_2d_matrix.dart ├── search_a_2d_matrix.go └── search_a_2d_matrix.md ├── SearchInRotatedSortedArrayIi ├── search_in_rotated_sorted_array_ii.dart ├── search_in_rotated_sorted_array_ii.go └── search_in_rotated_sorted_array_ii.md ├── SearchInsertPosition ├── search_insert_position.dart └── search_insert_position.md ├── SetMismatch ├── set_mismatch.dart ├── set_mismatch.go └── set_mismatch.md ├── ShortestPathInAGridWithObstaclesElimination ├── shortest_path_in_a_grid_with_obstacles_elimination.dart ├── shortest_path_in_a_grid_with_obstacles_elimination.go └── shortest_path_in_a_grid_with_obstacles_elimination.md ├── ShortestPathToGetAllKeys ├── shortest_path_to_get_all_keys.dart ├── shortest_path_to_get_all_keys.go └── shortest_path_to_get_all_keys.md ├── ShortestPathWithAlternatingColors ├── shortest_path_with_alternating_colors.dart ├── shortest_path_with_alternating_colors.go └── shortest_path_with_alternating_colors.md ├── ShortestWordDistance ├── shortest_word_distance.dart ├── shortest_word_distance.go └── shortest_word_distance.md ├── ShuffleTheArray ├── shuffle_the_array.dart ├── shuffle_the_array.go └── shuffle_the_array.md ├── SingleNumber ├── single_number.dart ├── single_number.go └── single_number.md ├── SingleNumberII ├── single_number_ii.dart ├── single_number_ii.go └── single_number_ii.md ├── SlidingWindowMaximum ├── sliding_window_maximum.dart ├── sliding_window_maximum.go └── sliding_window_maximum.md ├── SnakesAndLadders ├── snakes_and_ladders.dart ├── snakes_and_ladders.go └── snakes_and_ladders.md ├── SortCharactersByFrequency ├── sort_characters_by_frequency.dart ├── sort_characters_by_frequency.go └── sort_characters_by_frequency.md ├── SortItemsByGroupsRespectingDependencies ├── sort_items_by_groups_respecting_dependencies.dart ├── sort_items_by_groups_respecting_dependencies.go └── sort_items_by_groups_respecting_dependencies.md ├── SoupServings ├── soup_servings.dart ├── soup_servings.go └── soup_servings.md ├── SplitLinkedListInParts ├── split_linked_list_in_parts.dart ├── split_linked_list_in_parts.go └── split_linked_list_in_parts.md ├── SqrtX ├── sqrt_x.dart └── sqrt_x.md ├── StringCompression-II ├── string_compression_II.dart ├── string_compression_II.go └── string_compression_II.md ├── StringToInteger ├── string_to_integer.go ├── string_to_integer.md └── string_to_integer.py ├── StrobogrammaticNumber ├── strobogrammatic_number.dart ├── strobogrammatic_number.go └── strobogrammatic_number.md ├── SubarraySumsDivisibleByK ├── subarray_sums_divisible_by_k.dart ├── subarray_sums_divisible_by_k.go └── subarray_sums_divisible_by_k.md ├── SumOfAbsoluteDifferencesInASortedArray ├── sum_of_absolute_differences_in_a_sorted_array.dart ├── sum_of_absolute_differences_in_a_sorted_array.go └── sum_of_absolute_differences_in_a_sorted_array.md ├── SumOfLeftLeaves ├── sum_of_left_leaves.dart ├── sum_of_left_leaves.go └── sum_of_left_leaves.md ├── SumOfSubarrayMinimums ├── sum_of_subarray_minimums.dart ├── sum_of_subarray_minimums.go └── sum_of_subarray_minimums.md ├── SummaryRanges ├── summary_ranges.dart ├── summary_ranges.go └── summary_ranges.md ├── SumofEvenNumbersAfterQueries ├── sum_of_even_numbers_after_queries.dart ├── sum_of_even_numbers_after_queries.go └── sum_of_even_numbers_after_queries.md ├── SymmetricTree ├── symmetric_tree.dart ├── symmetric_tree.go └── symmetric_tree.md ├── TallestBillboard ├── tallest_billboard.dart ├── tallest_billboard.go └── tallest_billboard.md ├── TheKWeakestRowsInAMatrix ├── the_k_weakest_rows_in_a_matrix.dart ├── the_k_weakest_rows_in_a_matrix.go └── the_k_weakest_rows_in_a_matrix.md ├── TheNumberOfWeekCharactersInTheGame ├── the_number_of_week_characters_in_the_game.dart └── the_number_of_week_characters_in_the_game.md ├── TheSkylineProblem ├── the_skyline_problem.dart ├── the_skyline_problem.go └── the_skyline_problem.md ├── ThirdMaximumNumber ├── third_maximum_number.dart ├── third_maximum_number.go └── third_maximum_number.md ├── TimeBasedKeyValueStore ├── time_based_key_value_store.dart ├── time_based_key_value_store.go └── time_based_key_value_store.md ├── TimeNeededToInformAllEmployees ├── time_needed_to_inform_all_employees.dart ├── time_needed_to_inform_all_employees.go └── time_needed_to_inform_all_employees.md ├── ToeplitzMatrix ├── toeplitz_matrix.dart ├── toeplitz_matrix.go └── toeplitz_matrix.md ├── TopKFrequentElements ├── top_k_frequent_elements.dart ├── top_k_frequent_elements.go └── top_k_frequent_elements.md ├── TopKFrequentWords ├── top_k_frequent_words.dart ├── top_k_frequent_words.go └── top_k_frequent_words.md ├── TrappingRainWater ├── trapping_rain_water.dart ├── trapping_rain_water.go └── trapping_rain_water.md ├── TwoSum-III-DataStructureDesign ├── two_sum_III_data_structure_design.dart ├── two_sum_III_data_structure_design.go └── two_sum_III_data_structure_design.md ├── TwoSum ├── twosum.dart └── twosum.md ├── TwoSumIV-InputIsABST ├── two_sum_IV_input_is_a_bst.dart ├── two_sum_IV_input_is_a_bst.go └── two_sum_IV_input_is_a_bst.md ├── UTF-8Validation ├── uft_8_validation.dart ├── uft_8_validation.go └── uft_8_validation.md ├── UglyNumber ├── ugly_number.dart ├── ugly_number.go └── ugly_number.md ├── UniqueBinarySearchTreesIi ├── unique_binary_search_trees_ii.dart ├── unique_binary_search_trees_ii.go └── unique_binary_search_trees_ii.md ├── UniqueNumberOfOccurrences ├── unique_number_of_occurrences.dart ├── unique_number_of_occurrences.go └── unique_number_of_occurrences.md ├── UniquePathsIII ├── unique_paths_iii.dart ├── unique_paths_iii.go └── unique_paths_iii.md ├── ValidAnagram ├── valid_anagram.dart ├── valid_anagram.go └── valid_anagram.md ├── ValidPalindrome ├── valid_palindrome.dart ├── valid_palindrome.go └── valid_palindrome.md ├── ValidParentheses ├── valid_parentheses.dart └── valid_parentheses.md ├── ValidPerfectSquare ├── valid_perfect_square.dart ├── valid_perfect_square.go └── valid_perfect_square.md ├── ValidSudoku ├── valid_sudoku.dart ├── valid_sudoku.go └── valid_sudoku.md ├── VerifyingAnAlienDictionary ├── verifying_an_alien_dictionary.dart ├── verifying_an_alien_dictionary.go └── verifying_an_alien_dictionary.md ├── WhereWillTheBallFall ├── where_will_the_ball_fall.dart ├── where_will_the_ball_fall.go └── where_will_the_ball_fall.md ├── WordBreak ├── word_break.dart ├── word_break.go └── word_break.md ├── WordPattern ├── word_pattern.dart ├── word_pattern.go └── word_pattern.md ├── WordSearch ├── word_search.dart ├── word_search.go └── word_search.md └── ZigzagConversion ├── zigzag_conversion.dart ├── zigzag_conversion.go └── zigzag_conversion.md /.gitignore: -------------------------------------------------------------------------------- 1 | go.mod 2 | go.work 3 | text.txt 4 | golangci.yml 5 | -------------------------------------------------------------------------------- /01Matrix/01_matrix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/01Matrix/01_matrix.dart -------------------------------------------------------------------------------- /01Matrix/01_matrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/01Matrix/01_matrix.go -------------------------------------------------------------------------------- /01Matrix/01_matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/01Matrix/01_matrix.md -------------------------------------------------------------------------------- /3SumClosest/3_sum_closest.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/3SumClosest/3_sum_closest.dart -------------------------------------------------------------------------------- /3SumClosest/3_sum_closest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/3SumClosest/3_sum_closest.go -------------------------------------------------------------------------------- /3SumClosest/3_sum_closest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/3SumClosest/3_sum_closest.md -------------------------------------------------------------------------------- /AddBinary/add_binary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddBinary/add_binary.dart -------------------------------------------------------------------------------- /AddBinary/add_binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddBinary/add_binary.go -------------------------------------------------------------------------------- /AddBinary/add_binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddBinary/add_binary.md -------------------------------------------------------------------------------- /AddDigits/add_digits.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddDigits/add_digits.dart -------------------------------------------------------------------------------- /AddDigits/add_digits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddDigits/add_digits.go -------------------------------------------------------------------------------- /AddDigits/add_digits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddDigits/add_digits.md -------------------------------------------------------------------------------- /AddOneRowToTree/add_one_row_to_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddOneRowToTree/add_one_row_to_tree.dart -------------------------------------------------------------------------------- /AddOneRowToTree/add_one_row_to_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddOneRowToTree/add_one_row_to_tree.go -------------------------------------------------------------------------------- /AddOneRowToTree/add_one_row_to_tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddOneRowToTree/add_one_row_to_tree.md -------------------------------------------------------------------------------- /AddStrings/add_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddStrings/add_strings.dart -------------------------------------------------------------------------------- /AddStrings/add_strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddStrings/add_strings.go -------------------------------------------------------------------------------- /AddStrings/add_strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddStrings/add_strings.md -------------------------------------------------------------------------------- /AddToArrayFormOfInteger/add_to_array_form_of_integer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddToArrayFormOfInteger/add_to_array_form_of_integer.dart -------------------------------------------------------------------------------- /AddToArrayFormOfInteger/add_to_array_form_of_integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddToArrayFormOfInteger/add_to_array_form_of_integer.go -------------------------------------------------------------------------------- /AddToArrayFormOfInteger/add_to_array_form_of_integer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AddToArrayFormOfInteger/add_to_array_form_of_integer.md -------------------------------------------------------------------------------- /AllNodesDistanceKInBinaryTree/all_nodes_distance_k_in_binary_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AllNodesDistanceKInBinaryTree/all_nodes_distance_k_in_binary_tree.dart -------------------------------------------------------------------------------- /AllNodesDistanceKInBinaryTree/all_nodes_distance_k_in_binary_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AllNodesDistanceKInBinaryTree/all_nodes_distance_k_in_binary_tree.go -------------------------------------------------------------------------------- /AllNodesDistanceKInBinaryTree/all_nodes_distance_k_in_binary_tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AllNodesDistanceKInBinaryTree/all_nodes_distance_k_in_binary_tree.md -------------------------------------------------------------------------------- /ArithmeticSlicesII-Subsequence/arithmetic_slices_II_subsequence.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ArithmeticSlicesII-Subsequence/arithmetic_slices_II_subsequence.dart -------------------------------------------------------------------------------- /ArithmeticSlicesII-Subsequence/arithmetic_slices_II_subsequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ArithmeticSlicesII-Subsequence/arithmetic_slices_II_subsequence.go -------------------------------------------------------------------------------- /ArithmeticSlicesII-Subsequence/arithmetic_slices_II_subsequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ArithmeticSlicesII-Subsequence/arithmetic_slices_II_subsequence.md -------------------------------------------------------------------------------- /ArithmeticSubarrays/arithmetic_subarrays.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ArithmeticSubarrays/arithmetic_subarrays.dart -------------------------------------------------------------------------------- /ArithmeticSubarrays/arithmetic_subarrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ArithmeticSubarrays/arithmetic_subarrays.go -------------------------------------------------------------------------------- /ArithmeticSubarrays/arithmetic_subarrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ArithmeticSubarrays/arithmetic_subarrays.md -------------------------------------------------------------------------------- /AsFarFromLandAsPossible/as_far_from_land_as_possible.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AsFarFromLandAsPossible/as_far_from_land_as_possible.dart -------------------------------------------------------------------------------- /AsFarFromLandAsPossible/as_far_from_land_as_possible.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AsFarFromLandAsPossible/as_far_from_land_as_possible.go -------------------------------------------------------------------------------- /AsFarFromLandAsPossible/as_far_from_land_as_possible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AsFarFromLandAsPossible/as_far_from_land_as_possible.md -------------------------------------------------------------------------------- /AsteroidCollision/asteroid_collision.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AsteroidCollision/asteroid_collision.dart -------------------------------------------------------------------------------- /AsteroidCollision/asteroid_collision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AsteroidCollision/asteroid_collision.go -------------------------------------------------------------------------------- /AsteroidCollision/asteroid_collision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/AsteroidCollision/asteroid_collision.md -------------------------------------------------------------------------------- /BagOfTokens/bag_of_tokens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BagOfTokens/bag_of_tokens.dart -------------------------------------------------------------------------------- /BagOfTokens/bag_of_tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BagOfTokens/bag_of_tokens.go -------------------------------------------------------------------------------- /BagOfTokens/bag_of_tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BagOfTokens/bag_of_tokens.md -------------------------------------------------------------------------------- /BalancedBinaryTree/balanced_binary_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BalancedBinaryTree/balanced_binary_tree.dart -------------------------------------------------------------------------------- /BalancedBinaryTree/balanced_binary_tree.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /BalancedBinaryTree/balanced_binary_tree.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BasicCalculator/basic_calculator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BasicCalculator/basic_calculator.dart -------------------------------------------------------------------------------- /BasicCalculator/basic_calculator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BasicCalculator/basic_calculator.go -------------------------------------------------------------------------------- /BasicCalculator/basic_calculator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BasicCalculator/basic_calculator.md -------------------------------------------------------------------------------- /BestTeamWithNoConflicts/best_team_with_no_conflicts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BestTeamWithNoConflicts/best_team_with_no_conflicts.dart -------------------------------------------------------------------------------- /BestTeamWithNoConflicts/best_team_with_no_conflicts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BestTeamWithNoConflicts/best_team_with_no_conflicts.go -------------------------------------------------------------------------------- /BestTeamWithNoConflicts/best_team_with_no_conflicts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BestTeamWithNoConflicts/best_team_with_no_conflicts.md -------------------------------------------------------------------------------- /BestTimeToBuyAndSellStock/best_time_to_buy_and_sell_stock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BestTimeToBuyAndSellStock/best_time_to_buy_and_sell_stock.dart -------------------------------------------------------------------------------- /BestTimeToBuyAndSellStock/best_time_to_buy_and_sell_stock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BestTimeToBuyAndSellStock/best_time_to_buy_and_sell_stock.go -------------------------------------------------------------------------------- /BestTimeToBuyAndSellStock/best_time_to_buy_and_sell_stock.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BestTimeToBuyAndSellStock_IV/best_time_to_buy_and_sell_stock_IV.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BestTimeToBuyAndSellStock_IV/best_time_to_buy_and_sell_stock_IV.dart -------------------------------------------------------------------------------- /BestTimeToBuyAndSellStock_IV/best_time_to_buy_and_sell_stock_IV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BestTimeToBuyAndSellStock_IV/best_time_to_buy_and_sell_stock_IV.md -------------------------------------------------------------------------------- /BinaryTreeInOrderTrasversel/binary_tree_inorder_trasversal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreeInOrderTrasversel/binary_tree_inorder_trasversal.dart -------------------------------------------------------------------------------- /BinaryTreeInOrderTrasversel/binary_tree_inorder_trasversal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreeInOrderTrasversel/binary_tree_inorder_trasversal.md -------------------------------------------------------------------------------- /BinaryTreeMaximumPathSum/binary_tree_maximum_path_sum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreeMaximumPathSum/binary_tree_maximum_path_sum.dart -------------------------------------------------------------------------------- /BinaryTreeMaximumPathSum/binary_tree_maximum_path_sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreeMaximumPathSum/binary_tree_maximum_path_sum.go -------------------------------------------------------------------------------- /BinaryTreeMaximumPathSum/binary_tree_maximum_path_sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreeMaximumPathSum/binary_tree_maximum_path_sum.md -------------------------------------------------------------------------------- /BinaryTreePaths/binary_tree_paths.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreePaths/binary_tree_paths.dart -------------------------------------------------------------------------------- /BinaryTreePaths/binary_tree_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreePaths/binary_tree_paths.go -------------------------------------------------------------------------------- /BinaryTreePaths/binary_tree_paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreePaths/binary_tree_paths.md -------------------------------------------------------------------------------- /BinaryTreePostorderTraversal/binary_tree_postorder_traversal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreePostorderTraversal/binary_tree_postorder_traversal.dart -------------------------------------------------------------------------------- /BinaryTreePostorderTraversal/binary_tree_postorder_traversal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreePostorderTraversal/binary_tree_postorder_traversal.go -------------------------------------------------------------------------------- /BinaryTreePostorderTraversal/binary_tree_postorder_traversal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreePostorderTraversal/binary_tree_postorder_traversal.md -------------------------------------------------------------------------------- /BinaryTreePreorderTraversal/binary_tree_preorder_traversal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreePreorderTraversal/binary_tree_preorder_traversal.dart -------------------------------------------------------------------------------- /BinaryTreePreorderTraversal/binary_tree_preorder_traversal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreePreorderTraversal/binary_tree_preorder_traversal.go -------------------------------------------------------------------------------- /BinaryTreePreorderTraversal/binary_tree_preorder_traversal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryTreePreorderTraversal/binary_tree_preorder_traversal.md -------------------------------------------------------------------------------- /BinaryWatch/binary_watch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryWatch/binary_watch.dart -------------------------------------------------------------------------------- /BinaryWatch/binary_watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryWatch/binary_watch.go -------------------------------------------------------------------------------- /BinaryWatch/binary_watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BinaryWatch/binary_watch.md -------------------------------------------------------------------------------- /BitwiseAndOfNumbersRange/bitwise_and_of_numbers_range.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BitwiseAndOfNumbersRange/bitwise_and_of_numbers_range.dart -------------------------------------------------------------------------------- /BitwiseAndOfNumbersRange/bitwise_and_of_numbers_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BitwiseAndOfNumbersRange/bitwise_and_of_numbers_range.go -------------------------------------------------------------------------------- /BitwiseAndOfNumbersRange/bitwise_and_of_numbers_range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BitwiseAndOfNumbersRange/bitwise_and_of_numbers_range.md -------------------------------------------------------------------------------- /BreakAPalindrome/break_a_palindrome.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BreakAPalindrome/break_a_palindrome.dart -------------------------------------------------------------------------------- /BreakAPalindrome/break_a_palindrome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BreakAPalindrome/break_a_palindrome.go -------------------------------------------------------------------------------- /BreakAPalindrome/break_a_palindrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BreakAPalindrome/break_a_palindrome.md -------------------------------------------------------------------------------- /BuddyStrings/buddy_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BuddyStrings/buddy_strings.dart -------------------------------------------------------------------------------- /BuddyStrings/buddy_strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/BuddyStrings/buddy_strings.go -------------------------------------------------------------------------------- /BuddyStrings/buddy_strings.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CanMakeArithmeticProgressionFromSequence/can_make_arithmetic_progression_from_sequence.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CheapestFlightsWithinKStops/cheapest_flights_within_k_stops.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CheapestFlightsWithinKStops/cheapest_flights_within_k_stops.dart -------------------------------------------------------------------------------- /CheapestFlightsWithinKStops/cheapest_flights_within_k_stops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CheapestFlightsWithinKStops/cheapest_flights_within_k_stops.go -------------------------------------------------------------------------------- /CheapestFlightsWithinKStops/cheapest_flights_within_k_stops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CheapestFlightsWithinKStops/cheapest_flights_within_k_stops.md -------------------------------------------------------------------------------- /CheckIfItIsAStraightLine/check_if_it_is_a_straight_line.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CheckIfItIsAStraightLine/check_if_it_is_a_straight_line.dart -------------------------------------------------------------------------------- /CheckIfItIsAStraightLine/check_if_it_is_a_straight_line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CheckIfItIsAStraightLine/check_if_it_is_a_straight_line.go -------------------------------------------------------------------------------- /CheckIfItIsAStraightLine/check_if_it_is_a_straight_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CheckIfItIsAStraightLine/check_if_it_is_a_straight_line.md -------------------------------------------------------------------------------- /CheckIfTheSentenceIsPangram/check_if_the_sentence_is_pangram.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CheckIfTheSentenceIsPangram/check_if_the_sentence_is_pangram.dart -------------------------------------------------------------------------------- /CheckIfTheSentenceIsPangram/check_if_the_sentence_is_pangram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CheckIfTheSentenceIsPangram/check_if_the_sentence_is_pangram.go -------------------------------------------------------------------------------- /CheckIfTheSentenceIsPangram/check_if_the_sentence_is_pangram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CheckIfTheSentenceIsPangram/check_if_the_sentence_is_pangram.md -------------------------------------------------------------------------------- /CheckIfThereIsAValidPartitionForTheArray/check_if_there_is_a_valid_partition_for_the_array.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CheckIfTwoStringArraysAreEquivalent/check_if_two_string_arrays_are_equivalent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CheckIfTwoStringArraysAreEquivalent/check_if_two_string_arrays_are_equivalent.dart -------------------------------------------------------------------------------- /CheckIfTwoStringArraysAreEquivalent/check_if_two_string_arrays_are_equivalent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CheckIfTwoStringArraysAreEquivalent/check_if_two_string_arrays_are_equivalent.go -------------------------------------------------------------------------------- /CheckIfTwoStringArraysAreEquivalent/check_if_two_string_arrays_are_equivalent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CheckIfTwoStringArraysAreEquivalent/check_if_two_string_arrays_are_equivalent.md -------------------------------------------------------------------------------- /ClimbingStairs/climbing_stairs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ClimbingStairs/climbing_stairs.dart -------------------------------------------------------------------------------- /ClimbingStairs/climbing_stairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ClimbingStairs/climbing_stairs.md -------------------------------------------------------------------------------- /ClimbingStairs/climibing_stairs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ClimbingStairs/climibing_stairs.go -------------------------------------------------------------------------------- /CoinChangeII/coin_change_ii.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CoinChangeII/coin_change_ii.dart -------------------------------------------------------------------------------- /CoinChangeII/coin_change_ii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CoinChangeII/coin_change_ii.go -------------------------------------------------------------------------------- /CoinChangeII/coin_change_ii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CoinChangeII/coin_change_ii.md -------------------------------------------------------------------------------- /CombinationSumIV/combination_sum_iv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CombinationSumIV/combination_sum_iv.dart -------------------------------------------------------------------------------- /CombinationSumIV/combination_sum_iv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CombinationSumIV/combination_sum_iv.go -------------------------------------------------------------------------------- /CombinationSumIV/combination_sum_iv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CombinationSumIV/combination_sum_iv.md -------------------------------------------------------------------------------- /ConcatenatedWords/concatenated_words.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ConcatenatedWords/concatenated_words.dart -------------------------------------------------------------------------------- /ConcatenatedWords/concatenated_words.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ConcatenatedWords/concatenated_words.go -------------------------------------------------------------------------------- /ConcatenatedWords/concatenated_words.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ConcatenatedWords/concatenated_words.md -------------------------------------------------------------------------------- /ContainsDuplicate-II/contains_duplicate_II.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ContainsDuplicate-II/contains_duplicate_II.dart -------------------------------------------------------------------------------- /ContainsDuplicate-II/contains_duplicate_II.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ContainsDuplicate-II/contains_duplicate_II.go -------------------------------------------------------------------------------- /ContainsDuplicate-II/contains_duplicate_II.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ContainsDuplicate-II/contains_duplicate_II.md -------------------------------------------------------------------------------- /ContainsDuplicate/contains_duplicate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ContainsDuplicate/contains_duplicate.dart -------------------------------------------------------------------------------- /ContainsDuplicate/contains_duplicate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ContainsDuplicate/contains_duplicate.go -------------------------------------------------------------------------------- /ContainsDuplicate/contains_duplicate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ContainsDuplicate/contains_duplicate.md -------------------------------------------------------------------------------- /ContinuousSubarraySum/continuous_subarray_sum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ContinuousSubarraySum/continuous_subarray_sum.dart -------------------------------------------------------------------------------- /ContinuousSubarraySum/continuous_subarray_sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ContinuousSubarraySum/continuous_subarray_sum.go -------------------------------------------------------------------------------- /ContinuousSubarraySum/continuous_subarray_sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ContinuousSubarraySum/continuous_subarray_sum.md -------------------------------------------------------------------------------- /ConvertANumberToHexadecimal/convert_a_number_to_hexadecimal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ConvertANumberToHexadecimal/convert_a_number_to_hexadecimal.dart -------------------------------------------------------------------------------- /ConvertANumberToHexadecimal/convert_a_number_to_hexadecimal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ConvertANumberToHexadecimal/convert_a_number_to_hexadecimal.go -------------------------------------------------------------------------------- /ConvertANumberToHexadecimal/convert_a_number_to_hexadecimal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ConvertANumberToHexadecimal/convert_a_number_to_hexadecimal.md -------------------------------------------------------------------------------- /ConvertSortedArrayToBinarySearchTree/convert_sorted_array_to_binary_search_tree.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /ConvertSortedArrayToBinarySearchTree/convert_sorted_array_to_binary_search_tree.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CopyListWithRandomPointer/copy_list_with_random_pointer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CopyListWithRandomPointer/copy_list_with_random_pointer.dart -------------------------------------------------------------------------------- /CopyListWithRandomPointer/copy_list_with_random_pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CopyListWithRandomPointer/copy_list_with_random_pointer.go -------------------------------------------------------------------------------- /CopyListWithRandomPointer/copy_list_with_random_pointer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CopyListWithRandomPointer/copy_list_with_random_pointer.md -------------------------------------------------------------------------------- /CountAndSay/count_and_say.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountAndSay/count_and_say.dart -------------------------------------------------------------------------------- /CountAndSay/count_and_say.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountAndSay/count_and_say.go -------------------------------------------------------------------------------- /CountAndSay/count_and_say.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountAndSay/count_and_say.md -------------------------------------------------------------------------------- /CountCompleteTreeNodes/count_complete_tree_nodes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountCompleteTreeNodes/count_complete_tree_nodes.dart -------------------------------------------------------------------------------- /CountCompleteTreeNodes/count_complete_tree_nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountCompleteTreeNodes/count_complete_tree_nodes.go -------------------------------------------------------------------------------- /CountCompleteTreeNodes/count_complete_tree_nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountCompleteTreeNodes/count_complete_tree_nodes.md -------------------------------------------------------------------------------- /CountNegativeNumbersInASortedMatrix/count_negative_numbers_in_a_sorted_matrix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountNegativeNumbersInASortedMatrix/count_negative_numbers_in_a_sorted_matrix.dart -------------------------------------------------------------------------------- /CountNegativeNumbersInASortedMatrix/count_negative_numbers_in_a_sorted_matrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountNegativeNumbersInASortedMatrix/count_negative_numbers_in_a_sorted_matrix.go -------------------------------------------------------------------------------- /CountNegativeNumbersInASortedMatrix/count_negative_numbers_in_a_sorted_matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountNegativeNumbersInASortedMatrix/count_negative_numbers_in_a_sorted_matrix.md -------------------------------------------------------------------------------- /CountOddNumbersInAnIntervalRange/count_odd_numbers_in_an_interval_range.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountOddNumbersInAnIntervalRange/count_odd_numbers_in_an_interval_range.dart -------------------------------------------------------------------------------- /CountOddNumbersInAnIntervalRange/count_odd_numbers_in_an_interval_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountOddNumbersInAnIntervalRange/count_odd_numbers_in_an_interval_range.go -------------------------------------------------------------------------------- /CountOddNumbersInAnIntervalRange/count_odd_numbers_in_an_interval_range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountOddNumbersInAnIntervalRange/count_odd_numbers_in_an_interval_range.md -------------------------------------------------------------------------------- /CountingBits/counting_bits.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountingBits/counting_bits.dart -------------------------------------------------------------------------------- /CountingBits/counting_bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountingBits/counting_bits.go -------------------------------------------------------------------------------- /CountingBits/counting_bits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CountingBits/counting_bits.md -------------------------------------------------------------------------------- /CourseSchedule/course_schedule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CourseSchedule/course_schedule.dart -------------------------------------------------------------------------------- /CourseSchedule/course_schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CourseSchedule/course_schedule.go -------------------------------------------------------------------------------- /CourseSchedule/course_schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/CourseSchedule/course_schedule.md -------------------------------------------------------------------------------- /Create-File.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/Create-File.ps1 -------------------------------------------------------------------------------- /Create-Folder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/Create-Folder.ps1 -------------------------------------------------------------------------------- /DailyTemperatures/daily_temperatures.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DailyTemperatures/daily_temperatures.dart -------------------------------------------------------------------------------- /DailyTemperatures/daily_temperatures.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DailyTemperatures/daily_temperatures.go -------------------------------------------------------------------------------- /DailyTemperatures/daily_temperatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DailyTemperatures/daily_temperatures.md -------------------------------------------------------------------------------- /DataStreamAsDisjointIntervals/data_stream_as_disjoint_intervals.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DataStreamAsDisjointIntervals/data_stream_as_disjoint_intervals.dart -------------------------------------------------------------------------------- /DataStreamAsDisjointIntervals/data_stream_as_disjoint_intervals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DataStreamAsDisjointIntervals/data_stream_as_disjoint_intervals.go -------------------------------------------------------------------------------- /DataStreamAsDisjointIntervals/data_stream_as_disjoint_intervals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DataStreamAsDisjointIntervals/data_stream_as_disjoint_intervals.md -------------------------------------------------------------------------------- /DecodeWays/decode_ways.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DecodeWays/decode_ways.dart -------------------------------------------------------------------------------- /DecodeWays/decode_ways.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DecodeWays/decode_ways.go -------------------------------------------------------------------------------- /DecodeWays/decode_ways.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DecodeWays/decode_ways.md -------------------------------------------------------------------------------- /DeleteColumnsToMakeSorted/delete_columns_to_make_sorted.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DeleteColumnsToMakeSorted/delete_columns_to_make_sorted.dart -------------------------------------------------------------------------------- /DeleteColumnsToMakeSorted/delete_columns_to_make_sorted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DeleteColumnsToMakeSorted/delete_columns_to_make_sorted.go -------------------------------------------------------------------------------- /DeleteColumnsToMakeSorted/delete_columns_to_make_sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DeleteColumnsToMakeSorted/delete_columns_to_make_sorted.md -------------------------------------------------------------------------------- /DeleteNodeInALinkedList/delete_node_in_a_linked_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DeleteNodeInALinkedList/delete_node_in_a_linked_list.dart -------------------------------------------------------------------------------- /DeleteNodeInALinkedList/delete_node_in_a_linked_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DeleteNodeInALinkedList/delete_node_in_a_linked_list.go -------------------------------------------------------------------------------- /DeleteNodeInALinkedList/delete_node_in_a_linked_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DeleteNodeInALinkedList/delete_node_in_a_linked_list.md -------------------------------------------------------------------------------- /DeleteTheMiddleNodeOfALinkedList/delete_the_middle_node_of_a_linked_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DeleteTheMiddleNodeOfALinkedList/delete_the_middle_node_of_a_linked_list.dart -------------------------------------------------------------------------------- /DeleteTheMiddleNodeOfALinkedList/delete_the_middle_node_of_a_linked_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DeleteTheMiddleNodeOfALinkedList/delete_the_middle_node_of_a_linked_list.go -------------------------------------------------------------------------------- /DeleteTheMiddleNodeOfALinkedList/delete_the_middle_node_of_a_linked_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DeleteTheMiddleNodeOfALinkedList/delete_the_middle_node_of_a_linked_list.md -------------------------------------------------------------------------------- /DesignBrowserHistory/design_browser_history.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DesignBrowserHistory/design_browser_history.dart -------------------------------------------------------------------------------- /DesignBrowserHistory/design_browser_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DesignBrowserHistory/design_browser_history.go -------------------------------------------------------------------------------- /DesignBrowserHistory/design_browser_history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DesignBrowserHistory/design_browser_history.md -------------------------------------------------------------------------------- /DesignCircularQueue/design_circular_queue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DesignCircularQueue/design_circular_queue.dart -------------------------------------------------------------------------------- /DesignCircularQueue/design_circular_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DesignCircularQueue/design_circular_queue.go -------------------------------------------------------------------------------- /DesignCircularQueue/design_circular_queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DesignCircularQueue/design_circular_queue.md -------------------------------------------------------------------------------- /DesignHashSet/design_hashSet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DesignHashSet/design_hashSet.dart -------------------------------------------------------------------------------- /DesignHashSet/design_hashSet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DesignHashSet/design_hashSet.go -------------------------------------------------------------------------------- /DesignHashSet/design_hashSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DesignHashSet/design_hashSet.md -------------------------------------------------------------------------------- /DesignUndergroundSystem/design_underground_system.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DesignUndergroundSystem/design_underground_system.dart -------------------------------------------------------------------------------- /DesignUndergroundSystem/design_underground_system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DesignUndergroundSystem/design_underground_system.go -------------------------------------------------------------------------------- /DesignUndergroundSystem/design_underground_system.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DetectCapital/detect_capital.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DetectCapital/detect_capital.dart -------------------------------------------------------------------------------- /DetectCapital/detect_capital.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DetectCapital/detect_capital.go -------------------------------------------------------------------------------- /DetectCapital/detect_capital.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DetectCapital/detect_capital.md -------------------------------------------------------------------------------- /DetermineIfStringHalvesAreAlike/determine_if_string_halves_are_alike.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DetermineIfStringHalvesAreAlike/determine_if_string_halves_are_alike.dart -------------------------------------------------------------------------------- /DetermineIfStringHalvesAreAlike/determine_if_string_halves_are_alike.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DetermineIfStringHalvesAreAlike/determine_if_string_halves_are_alike.go -------------------------------------------------------------------------------- /DetermineIfStringHalvesAreAlike/determine_if_string_halves_are_alike.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DetermineIfStringHalvesAreAlike/determine_if_string_halves_are_alike.md -------------------------------------------------------------------------------- /DetermineIfTwoStringsAreClose/determine_if_two_strings_are_close.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DetermineIfTwoStringsAreClose/determine_if_two_strings_are_close.dart -------------------------------------------------------------------------------- /DetermineIfTwoStringsAreClose/determine_if_two_strings_are_close.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DetermineIfTwoStringsAreClose/determine_if_two_strings_are_close.go -------------------------------------------------------------------------------- /DetermineIfTwoStringsAreClose/determine_if_two_strings_are_close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DetermineIfTwoStringsAreClose/determine_if_two_strings_are_close.md -------------------------------------------------------------------------------- /DetonateTheMaximumBombs/detonate_the_maximum_bombs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DetonateTheMaximumBombs/detonate_the_maximum_bombs.dart -------------------------------------------------------------------------------- /DetonateTheMaximumBombs/detonate_the_maximum_bombs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DetonateTheMaximumBombs/detonate_the_maximum_bombs.go -------------------------------------------------------------------------------- /DetonateTheMaximumBombs/detonate_the_maximum_bombs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DetonateTheMaximumBombs/detonate_the_maximum_bombs.md -------------------------------------------------------------------------------- /DiagonalTraverseIi/diagonal_traverse_ii.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DiagonalTraverseIi/diagonal_traverse_ii.dart -------------------------------------------------------------------------------- /DiagonalTraverseIi/diagonal_traverse_ii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DiagonalTraverseIi/diagonal_traverse_ii.go -------------------------------------------------------------------------------- /DiagonalTraverseIi/diagonal_traverse_ii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/DiagonalTraverseIi/diagonal_traverse_ii.md -------------------------------------------------------------------------------- /EarliestPossibleDayOfFullBloom/earliest_possible_day_of_full_bloom.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/EarliestPossibleDayOfFullBloom/earliest_possible_day_of_full_bloom.dart -------------------------------------------------------------------------------- /EarliestPossibleDayOfFullBloom/earliest_possible_day_of_full_bloom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/EarliestPossibleDayOfFullBloom/earliest_possible_day_of_full_bloom.go -------------------------------------------------------------------------------- /EarliestPossibleDayOfFullBloom/earliest_possible_day_of_full_bloom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/EarliestPossibleDayOfFullBloom/earliest_possible_day_of_full_bloom.md -------------------------------------------------------------------------------- /EqualRowAndColumnPairs/equal_row_and_column_pairs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/EqualRowAndColumnPairs/equal_row_and_column_pairs.dart -------------------------------------------------------------------------------- /EqualRowAndColumnPairs/equal_row_and_column_pairs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/EqualRowAndColumnPairs/equal_row_and_column_pairs.go -------------------------------------------------------------------------------- /EqualRowAndColumnPairs/equal_row_and_column_pairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/EqualRowAndColumnPairs/equal_row_and_column_pairs.md -------------------------------------------------------------------------------- /ErectTheFence/erect_the_fence.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ErectTheFence/erect_the_fence.dart -------------------------------------------------------------------------------- /ErectTheFence/erect_the_fence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ErectTheFence/erect_the_fence.go -------------------------------------------------------------------------------- /ErectTheFence/erect_the_fence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ErectTheFence/erect_the_fence.md -------------------------------------------------------------------------------- /EvaluateReversePolishNotation/evaluate_reverse_polish_notation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/EvaluateReversePolishNotation/evaluate_reverse_polish_notation.dart -------------------------------------------------------------------------------- /EvaluateReversePolishNotation/evaluate_reverse_polish_notation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/EvaluateReversePolishNotation/evaluate_reverse_polish_notation.go -------------------------------------------------------------------------------- /EvaluateReversePolishNotation/evaluate_reverse_polish_notation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/EvaluateReversePolishNotation/evaluate_reverse_polish_notation.md -------------------------------------------------------------------------------- /ExcelSheetColumnNumber/excel_sheet_colum_number.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ExcelSheetColumnNumber/excel_sheet_colum_number.dart -------------------------------------------------------------------------------- /ExcelSheetColumnNumber/excel_sheet_colum_number.dart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ExcelSheetColumnNumber/excel_sheet_colum_number.dart.md -------------------------------------------------------------------------------- /ExcelSheetColumnNumber/excel_sheet_colum_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ExcelSheetColumnNumber/excel_sheet_colum_number.go -------------------------------------------------------------------------------- /ExcelSheetColumnTitle/excel_sheet_column_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ExcelSheetColumnTitle/excel_sheet_column_title.dart -------------------------------------------------------------------------------- /ExcelSheetColumnTitle/excel_sheet_column_title.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ExcelSheetColumnTitle/excel_sheet_column_title.go -------------------------------------------------------------------------------- /ExcelSheetColumnTitle/excel_sheet_column_title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ExcelSheetColumnTitle/excel_sheet_column_title.md -------------------------------------------------------------------------------- /FindClosestNodeToGivenTwoNodes/find_closest_node_to_given_two_nodes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindClosestNodeToGivenTwoNodes/find_closest_node_to_given_two_nodes.dart -------------------------------------------------------------------------------- /FindClosestNodeToGivenTwoNodes/find_closest_node_to_given_two_nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindClosestNodeToGivenTwoNodes/find_closest_node_to_given_two_nodes.go -------------------------------------------------------------------------------- /FindClosestNodeToGivenTwoNodes/find_closest_node_to_given_two_nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindClosestNodeToGivenTwoNodes/find_closest_node_to_given_two_nodes.md -------------------------------------------------------------------------------- /FindDuplicateFileInSystem/find_duplicate_file_in_system.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindDuplicateFileInSystem/find_duplicate_file_in_system.dart -------------------------------------------------------------------------------- /FindDuplicateFileInSystem/find_duplicate_file_in_system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindDuplicateFileInSystem/find_duplicate_file_in_system.go -------------------------------------------------------------------------------- /FindDuplicateFileInSystem/find_duplicate_file_in_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindDuplicateFileInSystem/find_duplicate_file_in_system.md -------------------------------------------------------------------------------- /FindIfPathExistsInGraph/find_if_path_exists_in_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindIfPathExistsInGraph/find_if_path_exists_in_graph.dart -------------------------------------------------------------------------------- /FindIfPathExistsInGraph/find_if_path_exists_in_graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindIfPathExistsInGraph/find_if_path_exists_in_graph.go -------------------------------------------------------------------------------- /FindIfPathExistsInGraph/find_if_path_exists_in_graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindIfPathExistsInGraph/find_if_path_exists_in_graph.md -------------------------------------------------------------------------------- /FindKClosestElements/find_k_closest_elements.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindKClosestElements/find_k_closest_elements.dart -------------------------------------------------------------------------------- /FindKClosestElements/find_k_closest_elements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindKClosestElements/find_k_closest_elements.go -------------------------------------------------------------------------------- /FindKClosestElements/find_k_closest_elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindKClosestElements/find_k_closest_elements.md -------------------------------------------------------------------------------- /FindMedianFromDataStream/find_median_from_data_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindMedianFromDataStream/find_median_from_data_stream.dart -------------------------------------------------------------------------------- /FindMedianFromDataStream/find_median_from_data_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindMedianFromDataStream/find_median_from_data_stream.go -------------------------------------------------------------------------------- /FindMedianFromDataStream/find_median_from_data_stream.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FindOriginalArrayFromDoubledArray/find_original_array_from_doubled_array.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindOriginalArrayFromDoubledArray/find_original_array_from_doubled_array.dart -------------------------------------------------------------------------------- /FindOriginalArrayFromDoubledArray/find_original_array_from_doubled_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindOriginalArrayFromDoubledArray/find_original_array_from_doubled_array.go -------------------------------------------------------------------------------- /FindOriginalArrayFromDoubledArray/find_original_array_from_doubled_array.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FindPlayersWithZeroOrOneLosses/find_players_with_zero_or_one_losses.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindPlayersWithZeroOrOneLosses/find_players_with_zero_or_one_losses.dart -------------------------------------------------------------------------------- /FindPlayersWithZeroOrOneLosses/find_players_with_zero_or_one_losses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindPlayersWithZeroOrOneLosses/find_players_with_zero_or_one_losses.go -------------------------------------------------------------------------------- /FindPlayersWithZeroOrOneLosses/find_players_with_zero_or_one_losses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindPlayersWithZeroOrOneLosses/find_players_with_zero_or_one_losses.md -------------------------------------------------------------------------------- /FindSmallestLetterGreaterThanTarget/find_smallest_letter_greater_than_target.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindSmallestLetterGreaterThanTarget/find_smallest_letter_greater_than_target.dart -------------------------------------------------------------------------------- /FindSmallestLetterGreaterThanTarget/find_smallest_letter_greater_than_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindSmallestLetterGreaterThanTarget/find_smallest_letter_greater_than_target.go -------------------------------------------------------------------------------- /FindSmallestLetterGreaterThanTarget/find_smallest_letter_greater_than_target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindSmallestLetterGreaterThanTarget/find_smallest_letter_greater_than_target.md -------------------------------------------------------------------------------- /FindTheDifference/find_the_difference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindTheDifference/find_the_difference.dart -------------------------------------------------------------------------------- /FindTheDifference/find_the_difference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindTheDifference/find_the_difference.go -------------------------------------------------------------------------------- /FindTheDifference/find_the_difference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindTheDifference/find_the_difference.md -------------------------------------------------------------------------------- /FindTheHighestAltitude/find_the_highest_altitude.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindTheHighestAltitude/find_the_highest_altitude.dart -------------------------------------------------------------------------------- /FindTheHighestAltitude/find_the_highest_altitude.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FindTheHighestAltitude/find_the_highest_altitude.go -------------------------------------------------------------------------------- /FindTheHighestAltitude/find_the_highest_altitude.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FirstBadVersion/first_bad_version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FirstBadVersion/first_bad_version.dart -------------------------------------------------------------------------------- /FirstBadVersion/first_bad_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FirstBadVersion/first_bad_version.go -------------------------------------------------------------------------------- /FirstBadVersion/first_bad_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FirstBadVersion/first_bad_version.md -------------------------------------------------------------------------------- /FirstUniqueCharacterInAString/first_unique_character_in_a_string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FirstUniqueCharacterInAString/first_unique_character_in_a_string.dart -------------------------------------------------------------------------------- /FirstUniqueCharacterInAString/first_unique_character_in_a_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FirstUniqueCharacterInAString/first_unique_character_in_a_string.go -------------------------------------------------------------------------------- /FirstUniqueCharacterInAString/first_unique_character_in_a_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FirstUniqueCharacterInAString/first_unique_character_in_a_string.md -------------------------------------------------------------------------------- /FizzBuzz/fizz_buzz.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FizzBuzz/fizz_buzz.dart -------------------------------------------------------------------------------- /FizzBuzz/fizz_buzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FizzBuzz/fizz_buzz.go -------------------------------------------------------------------------------- /FizzBuzz/fizz_buzz.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FlipStringToMonotoneIncreasing/flip_string_to_monotone_increasing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FlipStringToMonotoneIncreasing/flip_string_to_monotone_increasing.dart -------------------------------------------------------------------------------- /FlipStringToMonotoneIncreasing/flip_string_to_monotone_increasing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FlipStringToMonotoneIncreasing/flip_string_to_monotone_increasing.go -------------------------------------------------------------------------------- /FlipStringToMonotoneIncreasing/flip_string_to_monotone_increasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FlipStringToMonotoneIncreasing/flip_string_to_monotone_increasing.md -------------------------------------------------------------------------------- /FruitIntoBaskets/fruit_into_baskets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FruitIntoBaskets/fruit_into_baskets.dart -------------------------------------------------------------------------------- /FruitIntoBaskets/fruit_into_baskets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FruitIntoBaskets/fruit_into_baskets.go -------------------------------------------------------------------------------- /FruitIntoBaskets/fruit_into_baskets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/FruitIntoBaskets/fruit_into_baskets.md -------------------------------------------------------------------------------- /GreatestCommonDivisorOfStrings/greatest_common_divisor_of_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/GreatestCommonDivisorOfStrings/greatest_common_divisor_of_strings.dart -------------------------------------------------------------------------------- /GreatestCommonDivisorOfStrings/greatest_common_divisor_of_strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/GreatestCommonDivisorOfStrings/greatest_common_divisor_of_strings.go -------------------------------------------------------------------------------- /GreatestCommonDivisorOfStrings/greatest_common_divisor_of_strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/GreatestCommonDivisorOfStrings/greatest_common_divisor_of_strings.md -------------------------------------------------------------------------------- /GroupAnagrams/group_anagrams.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/GroupAnagrams/group_anagrams.dart -------------------------------------------------------------------------------- /GroupAnagrams/group_anagrams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/GroupAnagrams/group_anagrams.go -------------------------------------------------------------------------------- /GroupAnagrams/group_anagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/GroupAnagrams/group_anagrams.md -------------------------------------------------------------------------------- /GroupThePeopleGivenTheGroupSizeTheyBelongTo/group_the_people_given_the_group_size_they_belong_to.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GuessNumberHigherOrLower/guess_number_higher_or_lower.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/GuessNumberHigherOrLower/guess_number_higher_or_lower.dart -------------------------------------------------------------------------------- /GuessNumberHigherOrLower/guess_number_higher_or_lower.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/GuessNumberHigherOrLower/guess_number_higher_or_lower.go -------------------------------------------------------------------------------- /GuessNumberHigherOrLower/guess_number_higher_or_lower.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/GuessNumberHigherOrLower/guess_number_higher_or_lower.md -------------------------------------------------------------------------------- /HappyNumber/happy_number.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/HappyNumber/happy_number.dart -------------------------------------------------------------------------------- /HappyNumber/happy_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/HappyNumber/happy_number.go -------------------------------------------------------------------------------- /HappyNumber/happy_number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/HappyNumber/happy_number.md -------------------------------------------------------------------------------- /HouseRobber/house_robber.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/HouseRobber/house_robber.dart -------------------------------------------------------------------------------- /HouseRobber/house_robber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/HouseRobber/house_robber.go -------------------------------------------------------------------------------- /HouseRobber/house_robber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/HouseRobber/house_robber.md -------------------------------------------------------------------------------- /ImageOverlap/image_overlap.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ImageOverlap/image_overlap.dart -------------------------------------------------------------------------------- /ImageOverlap/image_overlap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ImageOverlap/image_overlap.go -------------------------------------------------------------------------------- /ImageOverlap/image_overlap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ImageOverlap/image_overlap.md -------------------------------------------------------------------------------- /ImplementQueueUsingStacks/implement_queue_using_stacks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ImplementQueueUsingStacks/implement_queue_using_stacks.dart -------------------------------------------------------------------------------- /ImplementQueueUsingStacks/implement_queue_using_stacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ImplementQueueUsingStacks/implement_queue_using_stacks.go -------------------------------------------------------------------------------- /ImplementQueueUsingStacks/implement_queue_using_stacks.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ImplementStackUsingQueues/implement_stack_using_queues.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ImplementStackUsingQueues/implement_stack_using_queues.dart -------------------------------------------------------------------------------- /ImplementStackUsingQueues/implement_stack_using_queues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ImplementStackUsingQueues/implement_stack_using_queues.go -------------------------------------------------------------------------------- /ImplementStackUsingQueues/implement_stack_using_queues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ImplementStackUsingQueues/implement_stack_using_queues.md -------------------------------------------------------------------------------- /ImplementstrStr/implement_strStr.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ImplementstrStr/implement_strStr.dart -------------------------------------------------------------------------------- /ImplementstrStr/implement_strStr.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IncreasingTripletSubsequence/increasing_triplet_subsequence.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IncreasingTripletSubsequence/increasing_triplet_subsequence.dart -------------------------------------------------------------------------------- /IncreasingTripletSubsequence/increasing_triplet_subsequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IncreasingTripletSubsequence/increasing_triplet_subsequence.go -------------------------------------------------------------------------------- /IncreasingTripletSubsequence/increasing_triplet_subsequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IncreasingTripletSubsequence/increasing_triplet_subsequence.md -------------------------------------------------------------------------------- /InsertDeleteGetRandom-01/insert_delete_getrandom_O1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/InsertDeleteGetRandom-01/insert_delete_getrandom_O1.dart -------------------------------------------------------------------------------- /InsertDeleteGetRandom-01/insert_delete_getrandom_O1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/InsertDeleteGetRandom-01/insert_delete_getrandom_O1.go -------------------------------------------------------------------------------- /InsertDeleteGetRandom-01/insert_delete_getrandom_O1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/InsertDeleteGetRandom-01/insert_delete_getrandom_O1.md -------------------------------------------------------------------------------- /InsertInterval/insert_interval.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/InsertInterval/insert_interval.dart -------------------------------------------------------------------------------- /InsertInterval/insert_interval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/InsertInterval/insert_interval.go -------------------------------------------------------------------------------- /InsertInterval/insert_interval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/InsertInterval/insert_interval.md -------------------------------------------------------------------------------- /IntegerToRoman/integer_to_roman.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IntegerToRoman/integer_to_roman.dart -------------------------------------------------------------------------------- /IntegerToRoman/integer_to_roman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IntegerToRoman/integer_to_roman.go -------------------------------------------------------------------------------- /IntegerToRoman/integer_to_roman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IntegerToRoman/integer_to_roman.md -------------------------------------------------------------------------------- /InterleavingString/interleaving_string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/InterleavingString/interleaving_string.dart -------------------------------------------------------------------------------- /InterleavingString/interleaving_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/InterleavingString/interleaving_string.go -------------------------------------------------------------------------------- /InterleavingString/interleaving_string.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IntersectionOfTwoArrays/intersection_of_two_arrays.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IntersectionOfTwoArrays/intersection_of_two_arrays.dart -------------------------------------------------------------------------------- /IntersectionOfTwoArrays/intersection_of_two_arrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IntersectionOfTwoArrays/intersection_of_two_arrays.go -------------------------------------------------------------------------------- /IntersectionOfTwoArrays/intersection_of_two_arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IntersectionOfTwoArrays/intersection_of_two_arrays.md -------------------------------------------------------------------------------- /IntersectionOfTwoArraysII/intersection_of_two_arrays_II.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IntersectionOfTwoArraysII/intersection_of_two_arrays_II.dart -------------------------------------------------------------------------------- /IntersectionOfTwoArraysII/intersection_of_two_arrays_II.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IntersectionOfTwoArraysII/intersection_of_two_arrays_II.go -------------------------------------------------------------------------------- /IntersectionOfTwoArraysII/intersection_of_two_arrays_II.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IntersectionOfTwoArraysII/intersection_of_two_arrays_II.md -------------------------------------------------------------------------------- /IntersectionOfTwoLinkedLists/intersection_of_two_linked_lists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IntersectionOfTwoLinkedLists/intersection_of_two_linked_lists.dart -------------------------------------------------------------------------------- /IntersectionOfTwoLinkedLists/intersection_of_two_linked_lists.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IntersectionOfTwoLinkedLists/intersection_of_two_linked_lists.go -------------------------------------------------------------------------------- /IntersectionOfTwoLinkedLists/intersection_of_two_linked_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IntersectionOfTwoLinkedLists/intersection_of_two_linked_lists.md -------------------------------------------------------------------------------- /InvertBinaryTree/invert_binary_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/InvertBinaryTree/invert_binary_tree.dart -------------------------------------------------------------------------------- /InvertBinaryTree/invert_binary_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/InvertBinaryTree/invert_binary_tree.go -------------------------------------------------------------------------------- /InvertBinaryTree/invert_binary_tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/InvertBinaryTree/invert_binary_tree.md -------------------------------------------------------------------------------- /IsSubsequence/is_subsequence.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IsSubsequence/is_subsequence.dart -------------------------------------------------------------------------------- /IsSubsequence/is_subsequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IsSubsequence/is_subsequence.go -------------------------------------------------------------------------------- /IsSubsequence/is_subsequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IsSubsequence/is_subsequence.md -------------------------------------------------------------------------------- /IsomorphicStrings/isomorphic_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IsomorphicStrings/isomorphic_strings.dart -------------------------------------------------------------------------------- /IsomorphicStrings/isomorphic_strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IsomorphicStrings/isomorphic_strings.go -------------------------------------------------------------------------------- /IsomorphicStrings/isomorphic_strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/IsomorphicStrings/isomorphic_strings.md -------------------------------------------------------------------------------- /JumpGameII/jump_game_ii.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/JumpGameII/jump_game_ii.dart -------------------------------------------------------------------------------- /JumpGameII/jump_game_ii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/JumpGameII/jump_game_ii.go -------------------------------------------------------------------------------- /JumpGameII/jump_game_ii.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KRadiusSubarrayAverages/k_radius_subarray_averages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/KRadiusSubarrayAverages/k_radius_subarray_averages.dart -------------------------------------------------------------------------------- /KRadiusSubarrayAverages/k_radius_subarray_averages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/KRadiusSubarrayAverages/k_radius_subarray_averages.go -------------------------------------------------------------------------------- /KRadiusSubarrayAverages/k_radius_subarray_averages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/KRadiusSubarrayAverages/k_radius_subarray_averages.md -------------------------------------------------------------------------------- /KeysAndRooms/keys_and_rooms.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/KeysAndRooms/keys_and_rooms.dart -------------------------------------------------------------------------------- /KeysAndRooms/keys_and_rooms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/KeysAndRooms/keys_and_rooms.go -------------------------------------------------------------------------------- /KeysAndRooms/keys_and_rooms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/KeysAndRooms/keys_and_rooms.md -------------------------------------------------------------------------------- /LFUCache/lfu_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LFUCache/lfu_cache.dart -------------------------------------------------------------------------------- /LFUCache/lfu_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LFUCache/lfu_cache.go -------------------------------------------------------------------------------- /LFUCache/lfu_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LFUCache/lfu_cache.md -------------------------------------------------------------------------------- /LRUCache/lru_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LRUCache/lru_cache.dart -------------------------------------------------------------------------------- /LRUCache/lru_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LRUCache/lru_cache.go -------------------------------------------------------------------------------- /LRUCache/lru_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LRUCache/lru_cache.md -------------------------------------------------------------------------------- /LargestPerimeterTriangle/largest_perimeter_triangle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LargestPerimeterTriangle/largest_perimeter_triangle.dart -------------------------------------------------------------------------------- /LargestPerimeterTriangle/largest_perimeter_triangle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LargestPerimeterTriangle/largest_perimeter_triangle.go -------------------------------------------------------------------------------- /LargestPerimeterTriangle/largest_perimeter_triangle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LargestPerimeterTriangle/largest_perimeter_triangle.md -------------------------------------------------------------------------------- /LastDayWhereYouCanStillCross/last_day_where_you_can_still_cross.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LastDayWhereYouCanStillCross/last_day_where_you_can_still_cross.dart -------------------------------------------------------------------------------- /LastDayWhereYouCanStillCross/last_day_where_you_can_still_cross.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LastDayWhereYouCanStillCross/last_day_where_you_can_still_cross.go -------------------------------------------------------------------------------- /LastDayWhereYouCanStillCross/last_day_where_you_can_still_cross.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LastDayWhereYouCanStillCross/last_day_where_you_can_still_cross.md -------------------------------------------------------------------------------- /LeafSimilarTrees/leaf_similar_trees.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LeafSimilarTrees/leaf_similar_trees.dart -------------------------------------------------------------------------------- /LeafSimilarTrees/leaf_similar_trees.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LeafSimilarTrees/leaf_similar_trees.go -------------------------------------------------------------------------------- /LeafSimilarTrees/leaf_similar_trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LeafSimilarTrees/leaf_similar_trees.md -------------------------------------------------------------------------------- /LengthOfLastWord/length_of_last_word.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LengthOfLastWord/length_of_last_word.dart -------------------------------------------------------------------------------- /LengthOfLastWord/length_of_last_word.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LengthOfLastWord/length_of_last_word.md -------------------------------------------------------------------------------- /LexicographicallySmallestEquivalentString/lexicographically_smallest_equivalent_string.go: -------------------------------------------------------------------------------- 1 | package main -------------------------------------------------------------------------------- /LinkedListCycle/linked_list_cycle..go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LinkedListCycle/linked_list_cycle..go -------------------------------------------------------------------------------- /LinkedListCycle/linked_list_cycle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LinkedListCycle/linked_list_cycle.dart -------------------------------------------------------------------------------- /LinkedListCycle/linked_list_cycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LinkedListCycle/linked_list_cycle.md -------------------------------------------------------------------------------- /LongestArithmeticSubsequence/longest_arithmetic_subsequence.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LongestArithmeticSubsequence/longest_arithmetic_subsequence.dart -------------------------------------------------------------------------------- /LongestArithmeticSubsequence/longest_arithmetic_subsequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LongestArithmeticSubsequence/longest_arithmetic_subsequence.go -------------------------------------------------------------------------------- /LongestArithmeticSubsequence/longest_arithmetic_subsequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LongestArithmeticSubsequence/longest_arithmetic_subsequence.md -------------------------------------------------------------------------------- /LongestCommonPrefix/longest_common_prefix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LongestCommonPrefix/longest_common_prefix.dart -------------------------------------------------------------------------------- /LongestCommonPrefix/longest_common_prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LongestCommonPrefix/longest_common_prefix.md -------------------------------------------------------------------------------- /LongestCommonSubsequence/longest_common_subsequence.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LongestCommonSubsequence/longest_common_subsequence.dart -------------------------------------------------------------------------------- /LongestCommonSubsequence/longest_common_subsequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LongestCommonSubsequence/longest_common_subsequence.go -------------------------------------------------------------------------------- /LongestCommonSubsequence/longest_common_subsequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LongestCommonSubsequence/longest_common_subsequence.md -------------------------------------------------------------------------------- /LongestPalindrome/longest_palindrome.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LongestPalindrome/longest_palindrome.dart -------------------------------------------------------------------------------- /LongestPalindrome/longest_palindrome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/LongestPalindrome/longest_palindrome.go -------------------------------------------------------------------------------- /LongestPalindrome/longest_palindrome.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LongestPalindromeByConcatenatingTwoLetterWords/longest_palindrome_by_concatenating_two_letter_words.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LongestPathWithDifferentAdjacentCharacters/longest_path_with_Different_adjacent_characters.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MajorityElement/majority_element.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MajorityElement/majority_element.dart -------------------------------------------------------------------------------- /MajorityElement/majority_element.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /MajorityElement/majority_element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MajorityElement/majority_element.md -------------------------------------------------------------------------------- /MakeArrayStrictlyIncreasing/make_array_strictly_increasing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MakeArrayStrictlyIncreasing/make_array_strictly_increasing.dart -------------------------------------------------------------------------------- /MakeArrayStrictlyIncreasing/make_array_strictly_increasing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MakeArrayStrictlyIncreasing/make_array_strictly_increasing.go -------------------------------------------------------------------------------- /MakeArrayStrictlyIncreasing/make_array_strictly_increasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MakeArrayStrictlyIncreasing/make_array_strictly_increasing.md -------------------------------------------------------------------------------- /MaxPointsOnALine/max_points_on_a_line.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaxPointsOnALine/max_points_on_a_line.dart -------------------------------------------------------------------------------- /MaxPointsOnALine/max_points_on_a_line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaxPointsOnALine/max_points_on_a_line.go -------------------------------------------------------------------------------- /MaxPointsOnALine/max_points_on_a_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaxPointsOnALine/max_points_on_a_line.md -------------------------------------------------------------------------------- /MaximalNetworkRank/maximal_network_rank.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximalNetworkRank/maximal_network_rank.dart -------------------------------------------------------------------------------- /MaximalNetworkRank/maximal_network_rank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximalNetworkRank/maximal_network_rank.go -------------------------------------------------------------------------------- /MaximalNetworkRank/maximal_network_rank.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MaximizeTheConfusionOfAnExam/maximize_the_confusion_of_an_exam.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximizeTheConfusionOfAnExam/maximize_the_confusion_of_an_exam.dart -------------------------------------------------------------------------------- /MaximizeTheConfusionOfAnExam/maximize_the_confusion_of_an_exam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximizeTheConfusionOfAnExam/maximize_the_confusion_of_an_exam.go -------------------------------------------------------------------------------- /MaximizeTheConfusionOfAnExam/maximize_the_confusion_of_an_exam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximizeTheConfusionOfAnExam/maximize_the_confusion_of_an_exam.md -------------------------------------------------------------------------------- /MaximumDepthOfBinaryTree/maximum_depth_of_binary_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumDepthOfBinaryTree/maximum_depth_of_binary_tree.dart -------------------------------------------------------------------------------- /MaximumDepthOfBinaryTree/maximum_depth_of_binary_tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumDepthOfBinaryTree/maximum_depth_of_binary_tree.md -------------------------------------------------------------------------------- /MaximumIceCreamBars/maximum_ice_cream_bars.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumIceCreamBars/maximum_ice_cream_bars.dart -------------------------------------------------------------------------------- /MaximumIceCreamBars/maximum_ice_cream_bars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumIceCreamBars/maximum_ice_cream_bars.go -------------------------------------------------------------------------------- /MaximumIceCreamBars/maximum_ice_cream_bars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumIceCreamBars/maximum_ice_cream_bars.md -------------------------------------------------------------------------------- /MaximumLengthOfPairChain/maximum_length_of_pair_chain.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumLengthOfPairChain/maximum_length_of_pair_chain.dart -------------------------------------------------------------------------------- /MaximumLengthOfPairChain/maximum_length_of_pair_chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumLengthOfPairChain/maximum_length_of_pair_chain.go -------------------------------------------------------------------------------- /MaximumLengthOfPairChain/maximum_length_of_pair_chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumLengthOfPairChain/maximum_length_of_pair_chain.md -------------------------------------------------------------------------------- /MaximumLengthofRepeatedSubarray/maximum_length_of_repeated_subarray.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumLengthofRepeatedSubarray/maximum_length_of_repeated_subarray.dart -------------------------------------------------------------------------------- /MaximumLengthofRepeatedSubarray/maximum_length_of_repeated_subarray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumLengthofRepeatedSubarray/maximum_length_of_repeated_subarray.go -------------------------------------------------------------------------------- /MaximumLengthofRepeatedSubarray/maximum_length_of_repeated_subarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumLengthofRepeatedSubarray/maximum_length_of_repeated_subarray.md -------------------------------------------------------------------------------- /MaximumLevelSumOfABinaryTree/maximum_level_sum_of_a_binary_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumLevelSumOfABinaryTree/maximum_level_sum_of_a_binary_tree.dart -------------------------------------------------------------------------------- /MaximumLevelSumOfABinaryTree/maximum_level_sum_of_a_binary_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumLevelSumOfABinaryTree/maximum_level_sum_of_a_binary_tree.go -------------------------------------------------------------------------------- /MaximumLevelSumOfABinaryTree/maximum_level_sum_of_a_binary_tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumLevelSumOfABinaryTree/maximum_level_sum_of_a_binary_tree.md -------------------------------------------------------------------------------- /MaximumNumberOfCoinsYouCanGet/maximum_number_of_coins_you_can_get.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumNumberOfCoinsYouCanGet/maximum_number_of_coins_you_can_get.dart -------------------------------------------------------------------------------- /MaximumNumberOfCoinsYouCanGet/maximum_number_of_coins_you_can_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumNumberOfCoinsYouCanGet/maximum_number_of_coins_you_can_get.go -------------------------------------------------------------------------------- /MaximumNumberOfCoinsYouCanGet/maximum_number_of_coins_you_can_get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumNumberOfCoinsYouCanGet/maximum_number_of_coins_you_can_get.md -------------------------------------------------------------------------------- /MaximumPerformanceofaTeam/maximum_performance_of_a_team.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumPerformanceofaTeam/maximum_performance_of_a_team.dart -------------------------------------------------------------------------------- /MaximumPerformanceofaTeam/maximum_performance_of_a_team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumPerformanceofaTeam/maximum_performance_of_a_team.go -------------------------------------------------------------------------------- /MaximumPerformanceofaTeam/maximum_performance_of_a_team.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MaximumProductOfSplittedBinaryTree/maximum_product_of_splitted_binary_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumProductOfSplittedBinaryTree/maximum_product_of_splitted_binary_tree.dart -------------------------------------------------------------------------------- /MaximumProductOfSplittedBinaryTree/maximum_product_of_splitted_binary_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumProductOfSplittedBinaryTree/maximum_product_of_splitted_binary_tree.go -------------------------------------------------------------------------------- /MaximumProductOfSplittedBinaryTree/maximum_product_of_splitted_binary_tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumProductOfSplittedBinaryTree/maximum_product_of_splitted_binary_tree.md -------------------------------------------------------------------------------- /MaximumProfitInJobScheduling/maximum_profit_in_job_scheduling.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumProfitInJobScheduling/maximum_profit_in_job_scheduling.dart -------------------------------------------------------------------------------- /MaximumProfitInJobScheduling/maximum_profit_in_job_scheduling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumProfitInJobScheduling/maximum_profit_in_job_scheduling.go -------------------------------------------------------------------------------- /MaximumProfitInJobScheduling/maximum_profit_in_job_scheduling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumProfitInJobScheduling/maximum_profit_in_job_scheduling.md -------------------------------------------------------------------------------- /MaximumScorefromPerformingMultiplicationOperations/Maximum score_from_performing_multiplication_operations.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /MaximumSumCircularSubarray/maximum_sum_circular_subarray.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumSumCircularSubarray/maximum_sum_circular_subarray.dart -------------------------------------------------------------------------------- /MaximumSumCircularSubarray/maximum_sum_circular_subarray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumSumCircularSubarray/maximum_sum_circular_subarray.go -------------------------------------------------------------------------------- /MaximumSumCircularSubarray/maximum_sum_circular_subarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MaximumSumCircularSubarray/maximum_sum_circular_subarray.md -------------------------------------------------------------------------------- /MeetingRooms/meeting_rooms.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MeetingRooms/meeting_rooms.dart -------------------------------------------------------------------------------- /MeetingRooms/meeting_rooms.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /MeetingRooms/meeting_rooms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MeetingRooms/meeting_rooms.md -------------------------------------------------------------------------------- /MergeSortedArray/merge_sorted_array.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MergeSortedArray/merge_sorted_array.dart -------------------------------------------------------------------------------- /MergeSortedArray/merge_sorted_array.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MergeTwoSortedLists/merge_two_sorted_lists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MergeTwoSortedLists/merge_two_sorted_lists.dart -------------------------------------------------------------------------------- /MergeTwoSortedLists/merge_two_sorted_lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MergeTwoSortedLists/merge_two_sorted_lists.md -------------------------------------------------------------------------------- /MiddleOfTheLinkedList/middle_of_the_linked_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MiddleOfTheLinkedList/middle_of_the_linked_list.dart -------------------------------------------------------------------------------- /MiddleOfTheLinkedList/middle_of_the_linked_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MiddleOfTheLinkedList/middle_of_the_linked_list.go -------------------------------------------------------------------------------- /MiddleOfTheLinkedList/middle_of_the_linked_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MiddleOfTheLinkedList/middle_of_the_linked_list.md -------------------------------------------------------------------------------- /MinCostToConnectAllPoints/min_cost_to_connect_all_points.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinCostToConnectAllPoints/min_cost_to_connect_all_points.dart -------------------------------------------------------------------------------- /MinCostToConnectAllPoints/min_cost_to_connect_all_points.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinCostToConnectAllPoints/min_cost_to_connect_all_points.go -------------------------------------------------------------------------------- /MinCostToConnectAllPoints/min_cost_to_connect_all_points.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinCostToConnectAllPoints/min_cost_to_connect_all_points.md -------------------------------------------------------------------------------- /MinimizeTheMaximumDifferenceOfPairs/minimize_the_maximum_difference_of_pairs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimizeTheMaximumDifferenceOfPairs/minimize_the_maximum_difference_of_pairs.dart -------------------------------------------------------------------------------- /MinimizeTheMaximumDifferenceOfPairs/minimize_the_maximum_difference_of_pairs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimizeTheMaximumDifferenceOfPairs/minimize_the_maximum_difference_of_pairs.go -------------------------------------------------------------------------------- /MinimizeTheMaximumDifferenceOfPairs/minimize_the_maximum_difference_of_pairs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MinimumAverageDifference/minimum_average_difference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumAverageDifference/minimum_average_difference.dart -------------------------------------------------------------------------------- /MinimumAverageDifference/minimum_average_difference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumAverageDifference/minimum_average_difference.go -------------------------------------------------------------------------------- /MinimumAverageDifference/minimum_average_difference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumAverageDifference/minimum_average_difference.md -------------------------------------------------------------------------------- /MinimumCostToCutAStick/minimum_cost_to_cut_a_stick.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumCostToCutAStick/minimum_cost_to_cut_a_stick.dart -------------------------------------------------------------------------------- /MinimumCostToCutAStick/minimum_cost_to_cut_a_stick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumCostToCutAStick/minimum_cost_to_cut_a_stick.go -------------------------------------------------------------------------------- /MinimumCostToCutAStick/minimum_cost_to_cut_a_stick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumCostToCutAStick/minimum_cost_to_cut_a_stick.md -------------------------------------------------------------------------------- /MinimumDepthofBinaryTree/minimum_depth_of_binary_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumDepthofBinaryTree/minimum_depth_of_binary_tree.dart -------------------------------------------------------------------------------- /MinimumDepthofBinaryTree/minimum_depth_of_binary_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumDepthofBinaryTree/minimum_depth_of_binary_tree.go -------------------------------------------------------------------------------- /MinimumDepthofBinaryTree/minimum_depth_of_binary_tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumDepthofBinaryTree/minimum_depth_of_binary_tree.md -------------------------------------------------------------------------------- /MinimumDifficultyOfAJobSchedule/minimum_difficulty_of_a_job_schedule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumDifficultyOfAJobSchedule/minimum_difficulty_of_a_job_schedule.dart -------------------------------------------------------------------------------- /MinimumDifficultyOfAJobSchedule/minimum_difficulty_of_a_job_schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumDifficultyOfAJobSchedule/minimum_difficulty_of_a_job_schedule.go -------------------------------------------------------------------------------- /MinimumDifficultyOfAJobSchedule/minimum_difficulty_of_a_job_schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumDifficultyOfAJobSchedule/minimum_difficulty_of_a_job_schedule.md -------------------------------------------------------------------------------- /MinimumFallingPathSum/minimum_falling_path_sum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumFallingPathSum/minimum_falling_path_sum.dart -------------------------------------------------------------------------------- /MinimumFallingPathSum/minimum_falling_path_sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumFallingPathSum/minimum_falling_path_sum.go -------------------------------------------------------------------------------- /MinimumFallingPathSum/minimum_falling_path_sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumFallingPathSum/minimum_falling_path_sum.md -------------------------------------------------------------------------------- /MinimumFuelCostToReportToTheCapital/minimum_fuel_cost_to_report_to_the_capital.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumFuelCostToReportToTheCapital/minimum_fuel_cost_to_report_to_the_capital.go -------------------------------------------------------------------------------- /MinimumFuelCostToReportToTheCapital/minimum_fuel_cost_to_report_to_the_capital.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumFuelCostToReportToTheCapital/minimum_fuel_cost_to_report_to_the_capital.md -------------------------------------------------------------------------------- /MinimumGeneticMutation/minimum_genetic_mutation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumGeneticMutation/minimum_genetic_mutation.dart -------------------------------------------------------------------------------- /MinimumGeneticMutation/minimum_genetic_mutation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumGeneticMutation/minimum_genetic_mutation.go -------------------------------------------------------------------------------- /MinimumGeneticMutation/minimum_genetic_mutation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumGeneticMutation/minimum_genetic_mutation.md -------------------------------------------------------------------------------- /MinimumNumberOfArrowsToBurstBalloons/minimum_number_of_arrows_to_burst_balloons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumNumberOfArrowsToBurstBalloons/minimum_number_of_arrows_to_burst_balloons.go -------------------------------------------------------------------------------- /MinimumNumberOfArrowsToBurstBalloons/minimum_number_of_arrows_to_burst_balloons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumNumberOfArrowsToBurstBalloons/minimum_number_of_arrows_to_burst_balloons.md -------------------------------------------------------------------------------- /MinimumPenaltyForAShop/minimum_penalty_for_a_shop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumPenaltyForAShop/minimum_penalty_for_a_shop.dart -------------------------------------------------------------------------------- /MinimumPenaltyForAShop/minimum_penalty_for_a_shop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumPenaltyForAShop/minimum_penalty_for_a_shop.go -------------------------------------------------------------------------------- /MinimumPenaltyForAShop/minimum_penalty_for_a_shop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumPenaltyForAShop/minimum_penalty_for_a_shop.md -------------------------------------------------------------------------------- /MinimumReplacementsToSortTheArray/minimum_replacements_to_sort_the_array.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumReplacementsToSortTheArray/minimum_replacements_to_sort_the_array.dart -------------------------------------------------------------------------------- /MinimumReplacementsToSortTheArray/minimum_replacements_to_sort_the_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumReplacementsToSortTheArray/minimum_replacements_to_sort_the_array.go -------------------------------------------------------------------------------- /MinimumReplacementsToSortTheArray/minimum_replacements_to_sort_the_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumReplacementsToSortTheArray/minimum_replacements_to_sort_the_array.md -------------------------------------------------------------------------------- /MinimumRoundsToCompleteAllTasks/minimum_rounds_to_complete_all_tasks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumRoundsToCompleteAllTasks/minimum_rounds_to_complete_all_tasks.dart -------------------------------------------------------------------------------- /MinimumRoundsToCompleteAllTasks/minimum_rounds_to_complete_all_tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumRoundsToCompleteAllTasks/minimum_rounds_to_complete_all_tasks.go -------------------------------------------------------------------------------- /MinimumRoundsToCompleteAllTasks/minimum_rounds_to_complete_all_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumRoundsToCompleteAllTasks/minimum_rounds_to_complete_all_tasks.md -------------------------------------------------------------------------------- /MinimumSpeedToArriveOnTime/minimum_speed_to_arrive_on_time.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumSpeedToArriveOnTime/minimum_speed_to_arrive_on_time.dart -------------------------------------------------------------------------------- /MinimumSpeedToArriveOnTime/minimum_speed_to_arrive_on_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumSpeedToArriveOnTime/minimum_speed_to_arrive_on_time.go -------------------------------------------------------------------------------- /MinimumSpeedToArriveOnTime/minimum_speed_to_arrive_on_time.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MinimumTimeToMakeRopeColorful/minimum_time_to_make_rope_colorful.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumTimeToMakeRopeColorful/minimum_time_to_make_rope_colorful.dart -------------------------------------------------------------------------------- /MinimumTimeToMakeRopeColorful/minimum_time_to_make_rope_colorful.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumTimeToMakeRopeColorful/minimum_time_to_make_rope_colorful.go -------------------------------------------------------------------------------- /MinimumTimeToMakeRopeColorful/minimum_time_to_make_rope_colorful.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumTimeToMakeRopeColorful/minimum_time_to_make_rope_colorful.md -------------------------------------------------------------------------------- /MinimumWindowSubstring/minimum_window_substring.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumWindowSubstring/minimum_window_substring.dart -------------------------------------------------------------------------------- /MinimumWindowSubstring/minimum_window_substring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumWindowSubstring/minimum_window_substring.go -------------------------------------------------------------------------------- /MinimumWindowSubstring/minimum_window_substring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MinimumWindowSubstring/minimum_window_substring.md -------------------------------------------------------------------------------- /MissingNumber/missing_number.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MissingNumber/missing_number.dart -------------------------------------------------------------------------------- /MissingNumber/missing_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MissingNumber/missing_number.go -------------------------------------------------------------------------------- /MissingNumber/missing_number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MissingNumber/missing_number.md -------------------------------------------------------------------------------- /MissingRanges/missing_ranges.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MissingRanges/missing_ranges.dart -------------------------------------------------------------------------------- /MissingRanges/missing_ranges.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /MissingRanges/missing_ranges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MissingRanges/missing_ranges.md -------------------------------------------------------------------------------- /MoveZeroes/move_zeroes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MoveZeroes/move_zeroes.dart -------------------------------------------------------------------------------- /MoveZeroes/move_zeroes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MoveZeroes/move_zeroes.go -------------------------------------------------------------------------------- /MoveZeroes/move_zeroes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MoveZeroes/move_zeroes.md -------------------------------------------------------------------------------- /MyCalendar-III/my_calendar_III.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MyCalendar-III/my_calendar_III.dart -------------------------------------------------------------------------------- /MyCalendar-III/my_calendar_III.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MyCalendar-III/my_calendar_III.go -------------------------------------------------------------------------------- /MyCalendar-III/my_calendar_III.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/MyCalendar-III/my_calendar_III.md -------------------------------------------------------------------------------- /N-thTribonacciNumber/n_th_tribonacci_number.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/N-thTribonacciNumber/n_th_tribonacci_number.dart -------------------------------------------------------------------------------- /N-thTribonacciNumber/n_th_tribonacci_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/N-thTribonacciNumber/n_th_tribonacci_number.go -------------------------------------------------------------------------------- /N-thTribonacciNumber/n_th_tribonacci_number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/N-thTribonacciNumber/n_th_tribonacci_number.md -------------------------------------------------------------------------------- /NamingACompany/naming_a_company.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NamingACompany/naming_a_company.dart -------------------------------------------------------------------------------- /NamingACompany/naming_a_company.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NamingACompany/naming_a_company.go -------------------------------------------------------------------------------- /NamingACompany/naming_a_company.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NamingACompany/naming_a_company.md -------------------------------------------------------------------------------- /NearestExitFromEntranceInMaze/nearest_exit_from_entrance_in_maze.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NearestExitFromEntranceInMaze/nearest_exit_from_entrance_in_maze.dart -------------------------------------------------------------------------------- /NearestExitFromEntranceInMaze/nearest_exit_from_entrance_in_maze.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NearestExitFromEntranceInMaze/nearest_exit_from_entrance_in_maze.go -------------------------------------------------------------------------------- /NearestExitFromEntranceInMaze/nearest_exit_from_entrance_in_maze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NearestExitFromEntranceInMaze/nearest_exit_from_entrance_in_maze.md -------------------------------------------------------------------------------- /New21Game/new_21_game.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/New21Game/new_21_game.dart -------------------------------------------------------------------------------- /New21Game/new_21_game.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/New21Game/new_21_game.go -------------------------------------------------------------------------------- /New21Game/new_21_game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/New21Game/new_21_game.md -------------------------------------------------------------------------------- /NimGame/nim_game.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NimGame/nim_game.dart -------------------------------------------------------------------------------- /NimGame/nim_game.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /NimGame/nim_game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NimGame/nim_game.md -------------------------------------------------------------------------------- /Non-DecreasingSubsequences/non_decreasing_subsequences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/Non-DecreasingSubsequences/non_decreasing_subsequences.dart -------------------------------------------------------------------------------- /Non-DecreasingSubsequences/non_decreasing_subsequences.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/Non-DecreasingSubsequences/non_decreasing_subsequences.go -------------------------------------------------------------------------------- /Non-DecreasingSubsequences/non_decreasing_subsequences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/Non-DecreasingSubsequences/non_decreasing_subsequences.md -------------------------------------------------------------------------------- /NumberOf-1-Bits/number_of_1_bits.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NumberOf-1-Bits/number_of_1_bits.dart -------------------------------------------------------------------------------- /NumberOf-1-Bits/number_of_1_bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NumberOf-1-Bits/number_of_1_bits.go -------------------------------------------------------------------------------- /NumberOf-1-Bits/number_of_1_bits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NumberOf-1-Bits/number_of_1_bits.md -------------------------------------------------------------------------------- /NumberOfDiceRollsWithTargetSum/number_of_dice_rolls_with_target_sum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NumberOfDiceRollsWithTargetSum/number_of_dice_rolls_with_target_sum.dart -------------------------------------------------------------------------------- /NumberOfDiceRollsWithTargetSum/number_of_dice_rolls_with_target_sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NumberOfDiceRollsWithTargetSum/number_of_dice_rolls_with_target_sum.go -------------------------------------------------------------------------------- /NumberOfDiceRollsWithTargetSum/number_of_dice_rolls_with_target_sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NumberOfDiceRollsWithTargetSum/number_of_dice_rolls_with_target_sum.md -------------------------------------------------------------------------------- /NumberOfGoodPaths/number_of_good_paths.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NumberOfGoodPaths/number_of_good_paths.dart -------------------------------------------------------------------------------- /NumberOfGoodPaths/number_of_good_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NumberOfGoodPaths/number_of_good_paths.go -------------------------------------------------------------------------------- /NumberOfGoodPaths/number_of_good_paths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NumberOfGoodPaths/number_of_good_paths.md -------------------------------------------------------------------------------- /NumberOfLongestIncreasingSubsequence/number_of_longest_increasing_subsequence.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NumberOfLongestIncreasingSubsequence/number_of_longest_increasing_subsequence.dart -------------------------------------------------------------------------------- /NumberOfLongestIncreasingSubsequence/number_of_longest_increasing_subsequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NumberOfLongestIncreasingSubsequence/number_of_longest_increasing_subsequence.go -------------------------------------------------------------------------------- /NumberOfLongestIncreasingSubsequence/number_of_longest_increasing_subsequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/NumberOfLongestIncreasingSubsequence/number_of_longest_increasing_subsequence.md -------------------------------------------------------------------------------- /NumberOfNodesInTheSub-TreeWithTheSameLabel/number_of_nodes_in_the_sub_tree_with_the_same_label.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NumberOfWaysToReorderArrayToGetSameBst/number_of_ways_to_reorder_array_to_get_same_bst.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OddEvenLinkedList/odd_even_linked_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/OddEvenLinkedList/odd_even_linked_list.dart -------------------------------------------------------------------------------- /OddEvenLinkedList/odd_even_linked_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/OddEvenLinkedList/odd_even_linked_list.go -------------------------------------------------------------------------------- /OddEvenLinkedList/odd_even_linked_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/OddEvenLinkedList/odd_even_linked_list.md -------------------------------------------------------------------------------- /PalindromeLinkedList/palindrome_linked_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PalindromeLinkedList/palindrome_linked_list.dart -------------------------------------------------------------------------------- /PalindromeLinkedList/palindrome_linked_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PalindromeLinkedList/palindrome_linked_list.go -------------------------------------------------------------------------------- /PalindromeLinkedList/palindrome_linked_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PalindromeLinkedList/palindrome_linked_list.md -------------------------------------------------------------------------------- /PalindromeNumber/palindrome_number.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PalindromeNumber/palindrome_number.dart -------------------------------------------------------------------------------- /PalindromeNumber/palindrome_number.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PalindromePairs/demo.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PalindromePairs/palindrome_pairs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PalindromePairs/palindrome_pairs.dart -------------------------------------------------------------------------------- /PalindromePairs/palindrome_pairs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PalindromePairs/palindrome_pairs.go -------------------------------------------------------------------------------- /PalindromePairs/palindrome_pairs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PalindromePartitioning/palindrome_partitioning.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PalindromePartitioning/palindrome_partitioning.dart -------------------------------------------------------------------------------- /PalindromePartitioning/palindrome_partitioning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PalindromePartitioning/palindrome_partitioning.go -------------------------------------------------------------------------------- /PalindromePartitioning/palindrome_partitioning.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PartitionList/partition_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PartitionList/partition_list.dart -------------------------------------------------------------------------------- /PartitionList/partition_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PartitionList/partition_list.go -------------------------------------------------------------------------------- /PartitionList/partition_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PartitionList/partition_list.md -------------------------------------------------------------------------------- /Pascal'sTriangle-II/pascals_riangle_II.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/Pascal'sTriangle-II/pascals_riangle_II.dart -------------------------------------------------------------------------------- /Pascal'sTriangle-II/pascals_riangle_II.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/Pascal'sTriangle-II/pascals_riangle_II.go -------------------------------------------------------------------------------- /Pascal'sTriangle-II/pascals_riangle_II.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/Pascal'sTriangle-II/pascals_riangle_II.md -------------------------------------------------------------------------------- /Pascal'sTriangle/pascals_triangle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/Pascal'sTriangle/pascals_triangle.dart -------------------------------------------------------------------------------- /Pascal'sTriangle/pascals_triangle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/Pascal'sTriangle/pascals_triangle.go -------------------------------------------------------------------------------- /Pascal'sTriangle/pascals_triangle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/Pascal'sTriangle/pascals_triangle.md -------------------------------------------------------------------------------- /PathSum/path_sum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PathSum/path_sum.dart -------------------------------------------------------------------------------- /PathSum/path_sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PathSum/path_sum.go -------------------------------------------------------------------------------- /PathSum/path_sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PathSum/path_sum.md -------------------------------------------------------------------------------- /PathSumII/path_sum_II.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PathSumII/path_sum_II.dart -------------------------------------------------------------------------------- /PathSumII/path_sum_II.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PathSumII/path_sum_II.go -------------------------------------------------------------------------------- /PathSumII/path_sum_II.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PathSumII/path_sum_II.md -------------------------------------------------------------------------------- /PathWithMinimumEffort/path_with_minimum_effort.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PathWithMinimumEffort/path_with_minimum_effort.dart -------------------------------------------------------------------------------- /PathWithMinimumEffort/path_with_minimum_effort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PathWithMinimumEffort/path_with_minimum_effort.go -------------------------------------------------------------------------------- /PathWithMinimumEffort/path_with_minimum_effort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PathWithMinimumEffort/path_with_minimum_effort.md -------------------------------------------------------------------------------- /PeakIndexInAMountainArray/peak_index_in_a_mountain_array.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PeakIndexInAMountainArray/peak_index_in_a_mountain_array.dart -------------------------------------------------------------------------------- /PeakIndexInAMountainArray/peak_index_in_a_mountain_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PeakIndexInAMountainArray/peak_index_in_a_mountain_array.go -------------------------------------------------------------------------------- /PeakIndexInAMountainArray/peak_index_in_a_mountain_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PeakIndexInAMountainArray/peak_index_in_a_mountain_array.md -------------------------------------------------------------------------------- /PerfectSquares/perfect_squares.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PerfectSquares/perfect_squares.dart -------------------------------------------------------------------------------- /PerfectSquares/perfect_squares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PerfectSquares/perfect_squares.go -------------------------------------------------------------------------------- /PerfectSquares/perfect_squares.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PerfectSquares/perfect_squares.md -------------------------------------------------------------------------------- /PlusOne/plus_one.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PlusOne/plus_one.dart -------------------------------------------------------------------------------- /PlusOne/plus_one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PlusOne/plus_one.md -------------------------------------------------------------------------------- /PossibleBipartition/possible_bipartition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PossibleBipartition/possible_bipartition.dart -------------------------------------------------------------------------------- /PossibleBipartition/possible_bipartition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PossibleBipartition/possible_bipartition.go -------------------------------------------------------------------------------- /PossibleBipartition/possible_bipartition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PossibleBipartition/possible_bipartition.md -------------------------------------------------------------------------------- /PowOfXN/pow_of_x_n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PowOfXN/pow_of_x_n.dart -------------------------------------------------------------------------------- /PowOfXN/pow_of_x_n.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PowOfXN/pow_of_x_n.go -------------------------------------------------------------------------------- /PowOfXN/pow_of_x_n.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PowerOfFour/power_of_four.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PowerOfFour/power_of_four.dart -------------------------------------------------------------------------------- /PowerOfFour/power_of_four.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PowerOfFour/power_of_four.go -------------------------------------------------------------------------------- /PowerOfFour/power_of_four.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PowerOfFour/power_of_four.md -------------------------------------------------------------------------------- /PowerOfThree/power_of_three.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PowerOfThree/power_of_three.dart -------------------------------------------------------------------------------- /PowerOfThree/power_of_three.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PowerOfThree/power_of_three.go -------------------------------------------------------------------------------- /PowerOfThree/power_of_three.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PowerOfThree/power_of_three.md -------------------------------------------------------------------------------- /PowerOfTwo/power_of_two.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PowerOfTwo/power_of_two.dart -------------------------------------------------------------------------------- /PowerOfTwo/power_of_two.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PowerOfTwo/power_of_two.go -------------------------------------------------------------------------------- /PowerOfTwo/power_of_two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PowerOfTwo/power_of_two.md -------------------------------------------------------------------------------- /PredictTheWinner/predict_the_winner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PredictTheWinner/predict_the_winner.dart -------------------------------------------------------------------------------- /PredictTheWinner/predict_the_winner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PredictTheWinner/predict_the_winner.go -------------------------------------------------------------------------------- /PredictTheWinner/predict_the_winner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PredictTheWinner/predict_the_winner.md -------------------------------------------------------------------------------- /Pseudo-PalindromicPathsInABinaryTree/pseudo_palindromic_paths_in_a_binary_tree.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PushDominoes/push_dominoes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PushDominoes/push_dominoes.dart -------------------------------------------------------------------------------- /PushDominoes/push_dominoes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PushDominoes/push_dominoes.go -------------------------------------------------------------------------------- /PushDominoes/push_dominoes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PushDominoes/push_dominoes.md -------------------------------------------------------------------------------- /PutMarblesInBags/put_marbles_in_bags.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PutMarblesInBags/put_marbles_in_bags.dart -------------------------------------------------------------------------------- /PutMarblesInBags/put_marbles_in_bags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/PutMarblesInBags/put_marbles_in_bags.go -------------------------------------------------------------------------------- /PutMarblesInBags/put_marbles_in_bags.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/README.md -------------------------------------------------------------------------------- /RangeSumOfBST/range_sum_of_bst.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RangeSumOfBST/range_sum_of_bst.dart -------------------------------------------------------------------------------- /RangeSumOfBST/range_sum_of_bst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RangeSumOfBST/range_sum_of_bst.go -------------------------------------------------------------------------------- /RangeSumOfBST/range_sum_of_bst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RangeSumOfBST/range_sum_of_bst.md -------------------------------------------------------------------------------- /RangeSumQuery-Immutable/range_sum_query_immutable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RangeSumQuery-Immutable/range_sum_query_immutable.dart -------------------------------------------------------------------------------- /RangeSumQuery-Immutable/range_sum_query_immutable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RangeSumQuery-Immutable/range_sum_query_immutable.go -------------------------------------------------------------------------------- /RangeSumQuery-Immutable/range_sum_query_immutable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RangeSumQuery-Immutable/range_sum_query_immutable.md -------------------------------------------------------------------------------- /RansomNote/ransom_note.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RansomNote/ransom_note.dart -------------------------------------------------------------------------------- /RansomNote/ransom_note.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RansomNote/ransom_note.go -------------------------------------------------------------------------------- /RansomNote/ransom_note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RansomNote/ransom_note.md -------------------------------------------------------------------------------- /ReadNCharactersGivenRead4/read_n_characters_given_read4.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReadNCharactersGivenRead4/read_n_characters_given_read4.dart -------------------------------------------------------------------------------- /ReadNCharactersGivenRead4/read_n_characters_given_read4.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /ReadNCharactersGivenRead4/read_n_characters_given_read4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReadNCharactersGivenRead4/read_n_characters_given_read4.md -------------------------------------------------------------------------------- /RectangleArea/rectangle_area.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RectangleArea/rectangle_area.dart -------------------------------------------------------------------------------- /RectangleArea/rectangle_area.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RectangleArea/rectangle_area.go -------------------------------------------------------------------------------- /RectangleArea/rectangle_area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RectangleArea/rectangle_area.md -------------------------------------------------------------------------------- /RemoveDuplicatesfromSortedArray/remove_duplicates_from_sorted_array.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RemoveDuplicatesfromSortedArray/remove_duplicates_from_sorted_array.dart -------------------------------------------------------------------------------- /RemoveDuplicatesfromSortedArray/remove_duplicates_from_sorted_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RemoveDuplicatesfromSortedArray/remove_duplicates_from_sorted_array.md -------------------------------------------------------------------------------- /RemoveDuplicatesfromSortedList/remove_duplicates_from_sorted_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RemoveDuplicatesfromSortedList/remove_duplicates_from_sorted_list.dart -------------------------------------------------------------------------------- /RemoveDuplicatesfromSortedList/remove_duplicates_from_sorted_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RemoveDuplicatesfromSortedList/remove_duplicates_from_sorted_list.md -------------------------------------------------------------------------------- /RemoveElement/remove_element.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RemoveElement/remove_element.dart -------------------------------------------------------------------------------- /RemoveElement/remove_element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RemoveElement/remove_element.md -------------------------------------------------------------------------------- /RemoveLinkedListElements/remove_linked_list_elements..md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RemoveLinkedListElements/remove_linked_list_elements..md -------------------------------------------------------------------------------- /RemoveLinkedListElements/remove_linked_list_elements.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RemoveLinkedListElements/remove_linked_list_elements.dart -------------------------------------------------------------------------------- /RemoveLinkedListElements/remove_linked_list_elements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RemoveLinkedListElements/remove_linked_list_elements.go -------------------------------------------------------------------------------- /RemoveNthNodeFromEndOfList/remove_nth_node_from_end_of_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RemoveNthNodeFromEndOfList/remove_nth_node_from_end_of_list.dart -------------------------------------------------------------------------------- /RemoveNthNodeFromEndOfList/remove_nth_node_from_end_of_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RemoveNthNodeFromEndOfList/remove_nth_node_from_end_of_list.go -------------------------------------------------------------------------------- /RemoveNthNodeFromEndOfList/remove_nth_node_from_end_of_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RemoveNthNodeFromEndOfList/remove_nth_node_from_end_of_list.md -------------------------------------------------------------------------------- /RestoreIPAddresses/restore_ip_addresses.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RestoreIPAddresses/restore_ip_addresses.dart -------------------------------------------------------------------------------- /RestoreIPAddresses/restore_ip_addresses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RestoreIPAddresses/restore_ip_addresses.go -------------------------------------------------------------------------------- /RestoreIPAddresses/restore_ip_addresses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RestoreIPAddresses/restore_ip_addresses.md -------------------------------------------------------------------------------- /ReverseBits/reverse_bits.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseBits/reverse_bits.dart -------------------------------------------------------------------------------- /ReverseBits/reverse_bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseBits/reverse_bits.go -------------------------------------------------------------------------------- /ReverseBits/reverse_bits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseBits/reverse_bits.md -------------------------------------------------------------------------------- /ReverseInteger/reverse_integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseInteger/reverse_integer.go -------------------------------------------------------------------------------- /ReverseInteger/reverse_integer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseInteger/reverse_integer.md -------------------------------------------------------------------------------- /ReverseInteger/reverse_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseInteger/reverse_integer.py -------------------------------------------------------------------------------- /ReverseLinkedList/reverse_linked_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseLinkedList/reverse_linked_list.dart -------------------------------------------------------------------------------- /ReverseLinkedList/reverse_linked_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseLinkedList/reverse_linked_list.go -------------------------------------------------------------------------------- /ReverseLinkedList/reverse_linked_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseLinkedList/reverse_linked_list.md -------------------------------------------------------------------------------- /ReverseString/reverse_string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseString/reverse_string.dart -------------------------------------------------------------------------------- /ReverseString/reverse_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseString/reverse_string.go -------------------------------------------------------------------------------- /ReverseString/reverse_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseString/reverse_string.md -------------------------------------------------------------------------------- /ReverseVowelsOfAString/reverse_vowels_of_a_string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseVowelsOfAString/reverse_vowels_of_a_string.dart -------------------------------------------------------------------------------- /ReverseVowelsOfAString/reverse_vowels_of_a_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseVowelsOfAString/reverse_vowels_of_a_string.go -------------------------------------------------------------------------------- /ReverseVowelsOfAString/reverse_vowels_of_a_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseVowelsOfAString/reverse_vowels_of_a_string.md -------------------------------------------------------------------------------- /ReverseWordsInAString/reverse_words_in_a_string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseWordsInAString/reverse_words_in_a_string.dart -------------------------------------------------------------------------------- /ReverseWordsInAString/reverse_words_in_a_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseWordsInAString/reverse_words_in_a_string.go -------------------------------------------------------------------------------- /ReverseWordsInAString/reverse_words_in_a_string.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReverseWordsInAString_III/reverse_words_in_a_string_III.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseWordsInAString_III/reverse_words_in_a_string_III.dart -------------------------------------------------------------------------------- /ReverseWordsInAString_III/reverse_words_in_a_string_III.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseWordsInAString_III/reverse_words_in_a_string_III.go -------------------------------------------------------------------------------- /ReverseWordsInAString_III/reverse_words_in_a_string_III.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ReverseWordsInAString_III/reverse_words_in_a_string_III.md -------------------------------------------------------------------------------- /RomanToInteger/roman_to_integer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RomanToInteger/roman_to_integer.dart -------------------------------------------------------------------------------- /RomanToInteger/roman_to_integer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/RomanToInteger/roman_to_integer.md -------------------------------------------------------------------------------- /SameTree/same_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SameTree/same_tree.dart -------------------------------------------------------------------------------- /SameTree/same_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SameTree/same_tree.go -------------------------------------------------------------------------------- /SameTree/same_tree.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SatisfiabilityOfEqualityEquations/satisfiability_of_equality_equations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SatisfiabilityOfEqualityEquations/satisfiability_of_equality_equations.dart -------------------------------------------------------------------------------- /SatisfiabilityOfEqualityEquations/satisfiability_of_equality_equations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SatisfiabilityOfEqualityEquations/satisfiability_of_equality_equations.go -------------------------------------------------------------------------------- /SatisfiabilityOfEqualityEquations/satisfiability_of_equality_equations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SatisfiabilityOfEqualityEquations/satisfiability_of_equality_equations.md -------------------------------------------------------------------------------- /SearchA2DMatrix/search_a_2d_matrix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SearchA2DMatrix/search_a_2d_matrix.dart -------------------------------------------------------------------------------- /SearchA2DMatrix/search_a_2d_matrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SearchA2DMatrix/search_a_2d_matrix.go -------------------------------------------------------------------------------- /SearchA2DMatrix/search_a_2d_matrix.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SearchInRotatedSortedArrayIi/search_in_rotated_sorted_array_ii.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SearchInRotatedSortedArrayIi/search_in_rotated_sorted_array_ii.dart -------------------------------------------------------------------------------- /SearchInRotatedSortedArrayIi/search_in_rotated_sorted_array_ii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SearchInRotatedSortedArrayIi/search_in_rotated_sorted_array_ii.go -------------------------------------------------------------------------------- /SearchInRotatedSortedArrayIi/search_in_rotated_sorted_array_ii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SearchInRotatedSortedArrayIi/search_in_rotated_sorted_array_ii.md -------------------------------------------------------------------------------- /SearchInsertPosition/search_insert_position.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SearchInsertPosition/search_insert_position.dart -------------------------------------------------------------------------------- /SearchInsertPosition/search_insert_position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SearchInsertPosition/search_insert_position.md -------------------------------------------------------------------------------- /SetMismatch/set_mismatch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SetMismatch/set_mismatch.dart -------------------------------------------------------------------------------- /SetMismatch/set_mismatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SetMismatch/set_mismatch.go -------------------------------------------------------------------------------- /SetMismatch/set_mismatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SetMismatch/set_mismatch.md -------------------------------------------------------------------------------- /ShortestPathToGetAllKeys/shortest_path_to_get_all_keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ShortestPathToGetAllKeys/shortest_path_to_get_all_keys.dart -------------------------------------------------------------------------------- /ShortestPathToGetAllKeys/shortest_path_to_get_all_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ShortestPathToGetAllKeys/shortest_path_to_get_all_keys.go -------------------------------------------------------------------------------- /ShortestPathToGetAllKeys/shortest_path_to_get_all_keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ShortestPathToGetAllKeys/shortest_path_to_get_all_keys.md -------------------------------------------------------------------------------- /ShortestPathWithAlternatingColors/shortest_path_with_alternating_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ShortestPathWithAlternatingColors/shortest_path_with_alternating_colors.dart -------------------------------------------------------------------------------- /ShortestPathWithAlternatingColors/shortest_path_with_alternating_colors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ShortestPathWithAlternatingColors/shortest_path_with_alternating_colors.go -------------------------------------------------------------------------------- /ShortestPathWithAlternatingColors/shortest_path_with_alternating_colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ShortestPathWithAlternatingColors/shortest_path_with_alternating_colors.md -------------------------------------------------------------------------------- /ShortestWordDistance/shortest_word_distance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ShortestWordDistance/shortest_word_distance.dart -------------------------------------------------------------------------------- /ShortestWordDistance/shortest_word_distance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ShortestWordDistance/shortest_word_distance.go -------------------------------------------------------------------------------- /ShortestWordDistance/shortest_word_distance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ShortestWordDistance/shortest_word_distance.md -------------------------------------------------------------------------------- /ShuffleTheArray/shuffle_the_array.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ShuffleTheArray/shuffle_the_array.dart -------------------------------------------------------------------------------- /ShuffleTheArray/shuffle_the_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ShuffleTheArray/shuffle_the_array.go -------------------------------------------------------------------------------- /ShuffleTheArray/shuffle_the_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ShuffleTheArray/shuffle_the_array.md -------------------------------------------------------------------------------- /SingleNumber/single_number.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SingleNumber/single_number.dart -------------------------------------------------------------------------------- /SingleNumber/single_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SingleNumber/single_number.go -------------------------------------------------------------------------------- /SingleNumber/single_number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SingleNumber/single_number.md -------------------------------------------------------------------------------- /SingleNumberII/single_number_ii.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SingleNumberII/single_number_ii.dart -------------------------------------------------------------------------------- /SingleNumberII/single_number_ii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SingleNumberII/single_number_ii.go -------------------------------------------------------------------------------- /SingleNumberII/single_number_ii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SingleNumberII/single_number_ii.md -------------------------------------------------------------------------------- /SlidingWindowMaximum/sliding_window_maximum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SlidingWindowMaximum/sliding_window_maximum.dart -------------------------------------------------------------------------------- /SlidingWindowMaximum/sliding_window_maximum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SlidingWindowMaximum/sliding_window_maximum.go -------------------------------------------------------------------------------- /SlidingWindowMaximum/sliding_window_maximum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SlidingWindowMaximum/sliding_window_maximum.md -------------------------------------------------------------------------------- /SnakesAndLadders/snakes_and_ladders.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SnakesAndLadders/snakes_and_ladders.dart -------------------------------------------------------------------------------- /SnakesAndLadders/snakes_and_ladders.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /SnakesAndLadders/snakes_and_ladders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SnakesAndLadders/snakes_and_ladders.md -------------------------------------------------------------------------------- /SortCharactersByFrequency/sort_characters_by_frequency.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SortCharactersByFrequency/sort_characters_by_frequency.dart -------------------------------------------------------------------------------- /SortCharactersByFrequency/sort_characters_by_frequency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SortCharactersByFrequency/sort_characters_by_frequency.go -------------------------------------------------------------------------------- /SortCharactersByFrequency/sort_characters_by_frequency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SortCharactersByFrequency/sort_characters_by_frequency.md -------------------------------------------------------------------------------- /SoupServings/soup_servings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SoupServings/soup_servings.dart -------------------------------------------------------------------------------- /SoupServings/soup_servings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SoupServings/soup_servings.go -------------------------------------------------------------------------------- /SoupServings/soup_servings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SoupServings/soup_servings.md -------------------------------------------------------------------------------- /SplitLinkedListInParts/split_linked_list_in_parts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SplitLinkedListInParts/split_linked_list_in_parts.dart -------------------------------------------------------------------------------- /SplitLinkedListInParts/split_linked_list_in_parts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SplitLinkedListInParts/split_linked_list_in_parts.go -------------------------------------------------------------------------------- /SplitLinkedListInParts/split_linked_list_in_parts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SplitLinkedListInParts/split_linked_list_in_parts.md -------------------------------------------------------------------------------- /SqrtX/sqrt_x.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SqrtX/sqrt_x.dart -------------------------------------------------------------------------------- /SqrtX/sqrt_x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SqrtX/sqrt_x.md -------------------------------------------------------------------------------- /StringCompression-II/string_compression_II.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/StringCompression-II/string_compression_II.dart -------------------------------------------------------------------------------- /StringCompression-II/string_compression_II.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/StringCompression-II/string_compression_II.go -------------------------------------------------------------------------------- /StringCompression-II/string_compression_II.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/StringCompression-II/string_compression_II.md -------------------------------------------------------------------------------- /StringToInteger/string_to_integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/StringToInteger/string_to_integer.go -------------------------------------------------------------------------------- /StringToInteger/string_to_integer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/StringToInteger/string_to_integer.md -------------------------------------------------------------------------------- /StringToInteger/string_to_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/StringToInteger/string_to_integer.py -------------------------------------------------------------------------------- /StrobogrammaticNumber/strobogrammatic_number.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/StrobogrammaticNumber/strobogrammatic_number.dart -------------------------------------------------------------------------------- /StrobogrammaticNumber/strobogrammatic_number.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /StrobogrammaticNumber/strobogrammatic_number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/StrobogrammaticNumber/strobogrammatic_number.md -------------------------------------------------------------------------------- /SubarraySumsDivisibleByK/subarray_sums_divisible_by_k.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SubarraySumsDivisibleByK/subarray_sums_divisible_by_k.dart -------------------------------------------------------------------------------- /SubarraySumsDivisibleByK/subarray_sums_divisible_by_k.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SubarraySumsDivisibleByK/subarray_sums_divisible_by_k.go -------------------------------------------------------------------------------- /SubarraySumsDivisibleByK/subarray_sums_divisible_by_k.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SubarraySumsDivisibleByK/subarray_sums_divisible_by_k.md -------------------------------------------------------------------------------- /SumOfLeftLeaves/sum_of_left_leaves.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SumOfLeftLeaves/sum_of_left_leaves.dart -------------------------------------------------------------------------------- /SumOfLeftLeaves/sum_of_left_leaves.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SumOfLeftLeaves/sum_of_left_leaves.go -------------------------------------------------------------------------------- /SumOfLeftLeaves/sum_of_left_leaves.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SumOfLeftLeaves/sum_of_left_leaves.md -------------------------------------------------------------------------------- /SumOfSubarrayMinimums/sum_of_subarray_minimums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SumOfSubarrayMinimums/sum_of_subarray_minimums.dart -------------------------------------------------------------------------------- /SumOfSubarrayMinimums/sum_of_subarray_minimums.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SumOfSubarrayMinimums/sum_of_subarray_minimums.go -------------------------------------------------------------------------------- /SumOfSubarrayMinimums/sum_of_subarray_minimums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SumOfSubarrayMinimums/sum_of_subarray_minimums.md -------------------------------------------------------------------------------- /SummaryRanges/summary_ranges.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SummaryRanges/summary_ranges.dart -------------------------------------------------------------------------------- /SummaryRanges/summary_ranges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SummaryRanges/summary_ranges.go -------------------------------------------------------------------------------- /SummaryRanges/summary_ranges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SummaryRanges/summary_ranges.md -------------------------------------------------------------------------------- /SumofEvenNumbersAfterQueries/sum_of_even_numbers_after_queries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SumofEvenNumbersAfterQueries/sum_of_even_numbers_after_queries.dart -------------------------------------------------------------------------------- /SumofEvenNumbersAfterQueries/sum_of_even_numbers_after_queries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SumofEvenNumbersAfterQueries/sum_of_even_numbers_after_queries.go -------------------------------------------------------------------------------- /SumofEvenNumbersAfterQueries/sum_of_even_numbers_after_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SumofEvenNumbersAfterQueries/sum_of_even_numbers_after_queries.md -------------------------------------------------------------------------------- /SymmetricTree/symmetric_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SymmetricTree/symmetric_tree.dart -------------------------------------------------------------------------------- /SymmetricTree/symmetric_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SymmetricTree/symmetric_tree.go -------------------------------------------------------------------------------- /SymmetricTree/symmetric_tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/SymmetricTree/symmetric_tree.md -------------------------------------------------------------------------------- /TallestBillboard/tallest_billboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TallestBillboard/tallest_billboard.dart -------------------------------------------------------------------------------- /TallestBillboard/tallest_billboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TallestBillboard/tallest_billboard.go -------------------------------------------------------------------------------- /TallestBillboard/tallest_billboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TallestBillboard/tallest_billboard.md -------------------------------------------------------------------------------- /TheKWeakestRowsInAMatrix/the_k_weakest_rows_in_a_matrix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TheKWeakestRowsInAMatrix/the_k_weakest_rows_in_a_matrix.dart -------------------------------------------------------------------------------- /TheKWeakestRowsInAMatrix/the_k_weakest_rows_in_a_matrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TheKWeakestRowsInAMatrix/the_k_weakest_rows_in_a_matrix.go -------------------------------------------------------------------------------- /TheKWeakestRowsInAMatrix/the_k_weakest_rows_in_a_matrix.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TheNumberOfWeekCharactersInTheGame/the_number_of_week_characters_in_the_game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TheNumberOfWeekCharactersInTheGame/the_number_of_week_characters_in_the_game.md -------------------------------------------------------------------------------- /TheSkylineProblem/the_skyline_problem.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TheSkylineProblem/the_skyline_problem.dart -------------------------------------------------------------------------------- /TheSkylineProblem/the_skyline_problem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TheSkylineProblem/the_skyline_problem.go -------------------------------------------------------------------------------- /TheSkylineProblem/the_skyline_problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TheSkylineProblem/the_skyline_problem.md -------------------------------------------------------------------------------- /ThirdMaximumNumber/third_maximum_number.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ThirdMaximumNumber/third_maximum_number.dart -------------------------------------------------------------------------------- /ThirdMaximumNumber/third_maximum_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ThirdMaximumNumber/third_maximum_number.go -------------------------------------------------------------------------------- /ThirdMaximumNumber/third_maximum_number.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeBasedKeyValueStore/time_based_key_value_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TimeBasedKeyValueStore/time_based_key_value_store.dart -------------------------------------------------------------------------------- /TimeBasedKeyValueStore/time_based_key_value_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TimeBasedKeyValueStore/time_based_key_value_store.go -------------------------------------------------------------------------------- /TimeBasedKeyValueStore/time_based_key_value_store.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TimeNeededToInformAllEmployees/time_needed_to_inform_all_employees.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TimeNeededToInformAllEmployees/time_needed_to_inform_all_employees.dart -------------------------------------------------------------------------------- /TimeNeededToInformAllEmployees/time_needed_to_inform_all_employees.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TimeNeededToInformAllEmployees/time_needed_to_inform_all_employees.go -------------------------------------------------------------------------------- /TimeNeededToInformAllEmployees/time_needed_to_inform_all_employees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TimeNeededToInformAllEmployees/time_needed_to_inform_all_employees.md -------------------------------------------------------------------------------- /ToeplitzMatrix/toeplitz_matrix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ToeplitzMatrix/toeplitz_matrix.dart -------------------------------------------------------------------------------- /ToeplitzMatrix/toeplitz_matrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ToeplitzMatrix/toeplitz_matrix.go -------------------------------------------------------------------------------- /ToeplitzMatrix/toeplitz_matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ToeplitzMatrix/toeplitz_matrix.md -------------------------------------------------------------------------------- /TopKFrequentElements/top_k_frequent_elements.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TopKFrequentElements/top_k_frequent_elements.dart -------------------------------------------------------------------------------- /TopKFrequentElements/top_k_frequent_elements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TopKFrequentElements/top_k_frequent_elements.go -------------------------------------------------------------------------------- /TopKFrequentElements/top_k_frequent_elements.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TopKFrequentWords/top_k_frequent_words.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TopKFrequentWords/top_k_frequent_words.dart -------------------------------------------------------------------------------- /TopKFrequentWords/top_k_frequent_words.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TopKFrequentWords/top_k_frequent_words.go -------------------------------------------------------------------------------- /TopKFrequentWords/top_k_frequent_words.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TrappingRainWater/trapping_rain_water.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TrappingRainWater/trapping_rain_water.dart -------------------------------------------------------------------------------- /TrappingRainWater/trapping_rain_water.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TrappingRainWater/trapping_rain_water.go -------------------------------------------------------------------------------- /TrappingRainWater/trapping_rain_water.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TrappingRainWater/trapping_rain_water.md -------------------------------------------------------------------------------- /TwoSum-III-DataStructureDesign/two_sum_III_data_structure_design.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TwoSum-III-DataStructureDesign/two_sum_III_data_structure_design.dart -------------------------------------------------------------------------------- /TwoSum-III-DataStructureDesign/two_sum_III_data_structure_design.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /TwoSum-III-DataStructureDesign/two_sum_III_data_structure_design.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TwoSum/twosum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TwoSum/twosum.dart -------------------------------------------------------------------------------- /TwoSum/twosum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TwoSum/twosum.md -------------------------------------------------------------------------------- /TwoSumIV-InputIsABST/two_sum_IV_input_is_a_bst.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TwoSumIV-InputIsABST/two_sum_IV_input_is_a_bst.dart -------------------------------------------------------------------------------- /TwoSumIV-InputIsABST/two_sum_IV_input_is_a_bst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TwoSumIV-InputIsABST/two_sum_IV_input_is_a_bst.go -------------------------------------------------------------------------------- /TwoSumIV-InputIsABST/two_sum_IV_input_is_a_bst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/TwoSumIV-InputIsABST/two_sum_IV_input_is_a_bst.md -------------------------------------------------------------------------------- /UTF-8Validation/uft_8_validation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/UTF-8Validation/uft_8_validation.dart -------------------------------------------------------------------------------- /UTF-8Validation/uft_8_validation.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /UTF-8Validation/uft_8_validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/UTF-8Validation/uft_8_validation.md -------------------------------------------------------------------------------- /UglyNumber/ugly_number.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/UglyNumber/ugly_number.dart -------------------------------------------------------------------------------- /UglyNumber/ugly_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/UglyNumber/ugly_number.go -------------------------------------------------------------------------------- /UglyNumber/ugly_number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/UglyNumber/ugly_number.md -------------------------------------------------------------------------------- /UniqueBinarySearchTreesIi/unique_binary_search_trees_ii.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/UniqueBinarySearchTreesIi/unique_binary_search_trees_ii.dart -------------------------------------------------------------------------------- /UniqueBinarySearchTreesIi/unique_binary_search_trees_ii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/UniqueBinarySearchTreesIi/unique_binary_search_trees_ii.go -------------------------------------------------------------------------------- /UniqueBinarySearchTreesIi/unique_binary_search_trees_ii.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UniqueNumberOfOccurrences/unique_number_of_occurrences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/UniqueNumberOfOccurrences/unique_number_of_occurrences.dart -------------------------------------------------------------------------------- /UniqueNumberOfOccurrences/unique_number_of_occurrences.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/UniqueNumberOfOccurrences/unique_number_of_occurrences.go -------------------------------------------------------------------------------- /UniqueNumberOfOccurrences/unique_number_of_occurrences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/UniqueNumberOfOccurrences/unique_number_of_occurrences.md -------------------------------------------------------------------------------- /UniquePathsIII/unique_paths_iii.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/UniquePathsIII/unique_paths_iii.dart -------------------------------------------------------------------------------- /UniquePathsIII/unique_paths_iii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/UniquePathsIII/unique_paths_iii.go -------------------------------------------------------------------------------- /UniquePathsIII/unique_paths_iii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/UniquePathsIII/unique_paths_iii.md -------------------------------------------------------------------------------- /ValidAnagram/valid_anagram.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ValidAnagram/valid_anagram.dart -------------------------------------------------------------------------------- /ValidAnagram/valid_anagram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ValidAnagram/valid_anagram.go -------------------------------------------------------------------------------- /ValidAnagram/valid_anagram.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ValidPalindrome/valid_palindrome.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ValidPalindrome/valid_palindrome.dart -------------------------------------------------------------------------------- /ValidPalindrome/valid_palindrome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ValidPalindrome/valid_palindrome.go -------------------------------------------------------------------------------- /ValidPalindrome/valid_palindrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ValidPalindrome/valid_palindrome.md -------------------------------------------------------------------------------- /ValidParentheses/valid_parentheses.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ValidParentheses/valid_parentheses.dart -------------------------------------------------------------------------------- /ValidParentheses/valid_parentheses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ValidParentheses/valid_parentheses.md -------------------------------------------------------------------------------- /ValidPerfectSquare/valid_perfect_square.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ValidPerfectSquare/valid_perfect_square.dart -------------------------------------------------------------------------------- /ValidPerfectSquare/valid_perfect_square.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ValidPerfectSquare/valid_perfect_square.go -------------------------------------------------------------------------------- /ValidPerfectSquare/valid_perfect_square.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ValidPerfectSquare/valid_perfect_square.md -------------------------------------------------------------------------------- /ValidSudoku/valid_sudoku.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ValidSudoku/valid_sudoku.dart -------------------------------------------------------------------------------- /ValidSudoku/valid_sudoku.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ValidSudoku/valid_sudoku.go -------------------------------------------------------------------------------- /ValidSudoku/valid_sudoku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ValidSudoku/valid_sudoku.md -------------------------------------------------------------------------------- /VerifyingAnAlienDictionary/verifying_an_alien_dictionary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/VerifyingAnAlienDictionary/verifying_an_alien_dictionary.dart -------------------------------------------------------------------------------- /VerifyingAnAlienDictionary/verifying_an_alien_dictionary.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /VerifyingAnAlienDictionary/verifying_an_alien_dictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/VerifyingAnAlienDictionary/verifying_an_alien_dictionary.md -------------------------------------------------------------------------------- /WhereWillTheBallFall/where_will_the_ball_fall.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/WhereWillTheBallFall/where_will_the_ball_fall.dart -------------------------------------------------------------------------------- /WhereWillTheBallFall/where_will_the_ball_fall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/WhereWillTheBallFall/where_will_the_ball_fall.go -------------------------------------------------------------------------------- /WhereWillTheBallFall/where_will_the_ball_fall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/WhereWillTheBallFall/where_will_the_ball_fall.md -------------------------------------------------------------------------------- /WordBreak/word_break.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/WordBreak/word_break.dart -------------------------------------------------------------------------------- /WordBreak/word_break.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/WordBreak/word_break.go -------------------------------------------------------------------------------- /WordBreak/word_break.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WordPattern/word_pattern.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/WordPattern/word_pattern.dart -------------------------------------------------------------------------------- /WordPattern/word_pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/WordPattern/word_pattern.go -------------------------------------------------------------------------------- /WordPattern/word_pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/WordPattern/word_pattern.md -------------------------------------------------------------------------------- /WordSearch/word_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/WordSearch/word_search.dart -------------------------------------------------------------------------------- /WordSearch/word_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/WordSearch/word_search.go -------------------------------------------------------------------------------- /WordSearch/word_search.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZigzagConversion/zigzag_conversion.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ZigzagConversion/zigzag_conversion.dart -------------------------------------------------------------------------------- /ZigzagConversion/zigzag_conversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayoubzulfiqar/leetcode/HEAD/ZigzagConversion/zigzag_conversion.go -------------------------------------------------------------------------------- /ZigzagConversion/zigzag_conversion.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------