├── .github └── FUNDING.yml ├── .gitignore ├── 000_BASICS ├── 001_Compare │ ├── threeNumbers.cpp │ └── twoNumbers.cpp ├── 002_Nature_of_Roots │ └── main.cpp ├── 003_Grades_distribution │ └── main.cpp ├── 004_Check_LeapYear │ └── main.cpp ├── 005_Multiplication_Table │ └── main.cpp ├── 006_Sum_of_Naturals │ └── main.cpp ├── 007_Factorial_of_Number │ └── main.cpp ├── 008_Factors_of_Number │ └── main.cpp ├── 009_Perfect_Number │ └── main.cpp ├── 010_Prime_Number │ └── main.cpp ├── 011_Sum_of_Digits │ └── main.cpp ├── 012_Palindrome │ └── main.cpp ├── 013_Armstrong_Number │ └── main.cpp ├── 014_HCF_GCD │ └── main.cpp ├── 015_Pythogorean_Triplet │ └── main.cpp ├── 016_Patterns │ ├── 001_rectangle.cpp │ ├── 002_hollow_rectangle.cpp │ ├── 003_inverted_triangle.cpp │ ├── 004_shifted_triangle.cpp │ ├── 005_number_triangle.cpp │ ├── 006_floyd_triangle.cpp │ ├── 007_butterfly.cpp │ ├── 008_inverted_pattern.cpp │ ├── 009_01_triangle.cpp │ ├── 010_rohmbus.cpp │ ├── 011_number_pyramid.cpp │ ├── 012_palindrome_pyramid.cpp │ ├── 013_star.cpp │ └── 014_zig_zag.cpp ├── 017_Number_Conversion │ ├── binary2decimal.cpp │ ├── decimal2binary.cpp │ ├── decimal2hexadecimal.cpp │ ├── decimal2octal.cpp │ ├── hexadecimal2decimal.cpp │ └── octal2decimal.cpp ├── 018_Add_Binary │ └── main.cpp └── README.md ├── 001_RECURSION ├── 001_Lets_Code_Recursion │ ├── main.c │ └── main.cpp ├── 002_Static_and_Global_Variables │ ├── main.c │ └── main.cpp ├── 003_Tree_Recursion │ ├── main.c │ └── main.cpp ├── 004_Indirect_Recursion │ ├── main.c │ └── main.cpp ├── 005_Nested_Recursion │ ├── main.c │ └── main.cpp ├── 006_Sum_of_n_naturals │ ├── main.c │ └── main.cpp ├── 007_Factorial_using_recursion │ ├── main.c │ └── main.cpp ├── 008_Power_using_recursion │ ├── main.c │ └── main.cpp ├── 009_Taylor_Series_using_recursion │ ├── homers_main.cpp │ ├── iterative_main.cpp │ ├── main.c │ └── main.cpp ├── 010_Fibonacci_using_recursion │ ├── fibonacci.cpp │ ├── main.cpp │ └── mem_fibonacci.cpp ├── 011_nCr_using_recursion │ └── main.cpp ├── 012_Tower_of_Hanoi │ └── main.cpp └── README.md ├── 002_ARRAY ├── 001_Initializing_Array_ADT │ └── main.cpp ├── 002_Displaying_an_Array │ └── main.cpp ├── 003_Inserting_in_Array │ └── main.cpp ├── 004_Delete_in_Array │ └── main.cpp ├── 005_Linear_Searching │ └── main.cpp ├── 006_Binary_Searching │ └── main.cpp ├── 007_Get_Set_Avg_Max │ └── main.cpp ├── 008_Reverse_Array │ └── main.cpp ├── 009_Left_Shift_Rotate │ └── main.cpp ├── 010_Sorted_Operations │ └── main.cpp └── 012_SUM_OF_TWO_ARRAYS ├── 999_Practice ├── Day_0 │ ├── 0000_hello_world.cpp │ ├── 0001_even_odd.cpp │ ├── 0002_min_max.cpp │ ├── 0003_max_3_number.cpp │ ├── 0004_triangle_check.cpp │ ├── 0005_vovel_consonant.cpp │ ├── 0006_sum_of_n_naturals.cpp │ ├── 0007_multiplication_table.cpp │ ├── 0008_adding_positive.cpp │ ├── 0009_odd_till_n.cpp │ ├── 0010_checking_prime.cpp │ └── 0011_prime_in_range.cpp ├── Day_1 │ ├── 0012_simple_calculator.cpp │ ├── 0013_vovel_consonant.cpp │ ├── 0014_pre_post_increment.cpp │ ├── 0015_divisiblity.cpp │ └── 0016_bitwise.cpp ├── Day_10 │ ├── 0061_sum_n.cpp │ ├── 0062_pythogorian_triplet.cpp │ ├── 0063_octal_to_decimal.cpp │ ├── 0064_hexadecimal_to_decimal.cpp │ ├── 0065_decimal_to_octal.cpp │ ├── 0066_decimal_to_hexadecimal.cpp │ └── 0067_binary_addition.cpp ├── Day_11 │ ├── 0068_time_complexity.cpp │ ├── 0069_space_complexity.cpp │ ├── 0070_complexity_n+m.cpp │ ├── 0071_complexity_logn.cpp │ └── 0072_complexity_nlogn.cpp ├── Day_12 │ ├── 0073_array.cpp │ ├── 0074_max_min.cpp │ ├── 0075_running_array_sum.cpp │ └── 0076_kid_with_max_cadies.cpp ├── Day_13 │ ├── 0077_linear_search.cpp │ └── 0078_binary_search.cpp ├── Day_14 │ ├── 0079_selection_sort.cpp │ ├── 0080_bubble_sort.cpp │ └── 0081_insertion_sort.cpp ├── Day_15 │ └── 0082_hackerrank_7.cpp ├── Day_16 │ └── 0083_hackerrank_8.c ├── Day_17 │ ├── 0084_max_till_i.cpp │ └── 0085_sum_of_all_subarrays.cpp ├── Day_18 │ ├── 0086_longest_arithmetic_subarray.cpp │ ├── 0087_record_breaker.cpp │ └── 0088_two_sum.cpp ├── Day_19 │ ├── 0089_first_repeating_element.cpp │ ├── 0090_subarray_with_given_sum.cpp │ └── 0091_smallest_poitive_missing_number.cpp ├── Day_2 │ ├── 0017_hackerrank_1.cpp │ ├── 0018_hackerrank_2.cpp │ ├── 0019_hackerrank_3.cpp │ ├── 0020_hackerrank_4.cpp │ ├── 0021_hackrrank_5.cpp │ ├── 0022_different_datatypes.cpp │ ├── 0023_cerr_clog.cpp │ ├── 0024_endl_vs_n.cpp │ ├── 0025_cin_vs_scanf.cpp │ ├── 0026_rectangle_pattern.cpp │ ├── 0027_hollow_rectangle.cpp │ ├── 0028_inverted_half_pyramid.cpp │ ├── 0029_half_pyramid_180.cpp │ └── 0030_half_pyramid_number.cpp ├── Day_20 │ ├── 0092_all_subarray.cpp │ ├── 0093_maximum_subarray_sum_brute_force.cpp │ ├── 0094_maximum_subarray_sum_cumulative_sum.cpp │ ├── 0095_maximum_subarray_sum_kadanes_alorithm.cpp │ ├── 0096_maximum_circular_subarray_sum.cpp │ └── 0097_pair_sum_optimised.cpp ├── Day_21 │ ├── 0098_roman_to_decimal.cpp │ ├── 0099_length_of_last_word.cpp │ └── 0100_plus_one.cpp ├── Day_22 │ ├── 0101_sqrt_x.cpp │ ├── 0102_palindrome_string.cpp │ ├── 0103_single_number.cpp │ ├── 0104_remove_vovel_from_string.cpp │ └── 0105_single_row_keyboard.cpp ├── Day_23 │ ├── 0106_2d_array_search.cpp │ ├── 0107_spiral_order_matrix_traversal.cpp │ ├── 0108_reverse_integer.cpp │ ├── 0109_longest_common_prefix.cpp │ └── 0110_count_the_triplets.cpp ├── Day_24 │ ├── 0111_rearrange_array_alternatively.cpp │ ├── 0112_and_plus_or.cpp │ ├── 0113_split_the_str_ing.cpp │ ├── 0114_sort_array_of_0_1_and_2.cpp │ └── 0115_equilibrium_point.cpp ├── Day_25 │ ├── 0116_transpose_matrix.cpp │ ├── 0117_matrix_multiplication.cpp │ ├── 0118_2d_matrix_search.cpp │ ├── 0119_2d_matrix_search_optimised.cpp │ └── 0120_largest_word_in_sentence.cpp ├── Day_26 │ ├── 0121_leaders_in_an_array.cpp │ ├── 0122_minimum_platforms.cpp │ ├── 0123_reverse_array_in_grops.cpp │ └── 0124_kth_smallest_element.cpp ├── Day_27 │ ├── 0125_pointers_intro.cpp │ ├── 0126_pointer_arithmetic.cpp │ ├── 0127_array_and_pointer.cpp │ ├── 0128_pointer_to_pointer.cpp │ ├── 0129_passing_pointer_to_function.cpp │ └── 0130_trapping_rain_water.cpp ├── Day_28 │ ├── 0131_pythogorean_triplet.cpp │ ├── 0132_life_universe_and_everything.cpp │ ├── 0133_reverse_the_number.cpp │ ├── 0134_lapindrome.cpp │ ├── 0135_smart_phone.cpp │ └── 0136_ada_and_dishes.cpp ├── Day_29 │ ├── 0137_string_operations.cpp │ ├── 0138_sorting_a_string.cpp │ ├── 0139_smart_phones_updated.cpp │ └── 0140_carvans.cpp ├── Day_3 │ ├── 0031_floyds_triangle.cpp │ ├── 0032_butterfly_pattern.cpp │ └── 0033_rounding_off.cpp ├── Day_30 │ ├── 0141_chocolate_distribution_problem.cpp │ ├── 0142_compare_the_triplets.cpp │ ├── 0143_diagonal_difference.cpp │ ├── 0144_plus_minus.cpp │ ├── 0145_staircase.cpp │ ├── 0146_min_max_sum.cpp │ └── 0147_birthday_cake_candles.cpp ├── Day_31 │ ├── 0148_case_conversion.cpp │ ├── 0149_biggest_number_from_string.cpp │ ├── 0150_max_frequency_character.cpp │ ├── 0151_reverse_words_in-string.cpp │ └── 0152_permutations_of_a_given_string.cpp ├── Day_32 │ ├── 0153_get_bit.cpp │ ├── 0154_set_bit.cpp │ ├── 0155_clear_bit.cpp │ └── 0156_update_bit.cpp ├── Day_33 │ ├── 0157_power_of_two.cpp │ ├── 0158_number_of_1_in_binary.cpp │ └── 0159_generating_all_possible_subsets.cpp ├── Day_34 │ ├── 0160_last_index_of_one.cpp │ ├── 0161_stock_buy_and_sell.cpp │ ├── 0162_one_time.cpp │ └── 0163_two_number_one_time.cpp ├── Day_35 │ ├── 0161_three_one.cpp │ ├── 0162_seive_of_eratosthenes.cpp │ └── 0163_prime_factorization.cpp ├── Day_36 │ ├── 0164_recursively_removing_duplicate.cpp │ ├── 0165_divisible_5_or_7.cpp │ └── 0167_euclid_algo_to_find_gcd.cpp ├── Day_37 │ ├── 0168_add_numbers_till_n.cpp │ ├── 0169_n_raised_to_power_p.cpp │ ├── 0170_factorial.cpp │ └── 0171_nth_fibonacci.cpp ├── Day_38 │ ├── 0172_checking_sorted_array.cpp │ ├── 0173_numbers_till_n.cpp │ ├── 0174_numbers_till_n.cpp │ ├── 0175_first_occurance.cpp │ └── 0176_last_occurance.cpp ├── Day_39 │ ├── 0177_closed_box.cpp │ └── 0178_reverse_string.cpp ├── Day_4 │ ├── 0034_inverted_pattern.cpp │ ├── 0035_0-1_pattern.cpp │ ├── 0036_rohmbus_pattern.cpp │ ├── 0037_number_pattern.cpp │ ├── 0038_palindromic_pattern.cpp │ ├── 0039_star_pattern.cpp │ ├── 0040_zigzag_pattern.cpp │ ├── 0041_hollow_butterfly.cpp │ └── 0042_pascal_triangle.cpp ├── Day_40 │ ├── 0179_replace_pi_with_string.cpp │ └── 0180_tower_of_hanoi.cpp ├── Day_41 │ ├── 0181_removing_duplicates.cpp │ └── 0182_move_all_x.cpp ├── Day_42 │ ├── 0183_generate_substring.cpp │ ├── 0184_generate_ascii_subsequence.cpp │ └── 0185-possible_word.cpp ├── Day_43 │ └── 0186_tiling_problem.cpp ├── Day_44 │ └── 0187_friends_pairing_problem.cpp ├── Day_45 │ └── 0188_0_1_knapsack.cpp ├── Day_46 │ ├── 0189_iterating_vector.cpp │ └── 0190_vector functions.cpp ├── Day_47 │ ├── 0191_auto_keyword.cpp │ ├── 0192_average_of_two.cpp │ ├── 0193_reverse_array.cpp │ └── 0194_max_and_min_from_array.cpp ├── Day_5 │ ├── 0043_decimal_to_binary.cpp │ └── 0044_binary_to_decimal.cpp ├── Day_6 │ ├── 0045_prime_number.cpp │ ├── 0046_reverse_number.cpp │ └── 0047_armstrong_number.cpp ├── Day_7 │ ├── 0048_sum_function.cpp │ ├── 0049_printing_using_function.cpp │ └── 0050_factorial_using_function.cpp ├── Day_8 │ └── 0051_hackerrank_6.cpp └── Day_9 │ ├── 0053_prime_betwwen_numbers.cpp │ ├── 0054_fibonacci.cpp │ ├── 0055_nCr.cpp │ ├── 0056_pascal_triangle.cpp │ ├── 0057_even_odd.cpp │ ├── 0058_alphabet_or_not.cpp │ ├── 0059_elligible_for_voting.cpp │ └── 0060_max_min.cpp ├── 999_Practice_Set_2 ├── Day_001 │ ├── 001_hello_world.cpp │ ├── 002_macros.cpp │ ├── 003_datatype.cpp │ ├── 004_precision.cpp │ ├── 005_odd_even.cpp │ ├── 006_max_min_two_number.cpp │ ├── 007_max_from_three_numbers.cpp │ ├── 008_check_triangle_type.cpp │ ├── 009_vovel_or_consonant.cpp │ ├── 010_sum_of_n_naturals.cpp │ ├── 011_table_of_number.cpp │ ├── 012_only_add_positive.cpp │ ├── 013_print_odd_till_n.cpp │ ├── 014_check_prime.cpp │ ├── 015_prime_between_range.cpp │ └── 016_simple_calculator.cpp ├── Day_002 │ ├── 017_bridge_of_stones.cpp │ ├── 018_rectangle_pattern.cpp │ ├── 019_hollow_rectangle.cpp │ ├── 020_inverted_half_pyramid.cpp │ ├── 021_inverted_half_pyramid.cpp │ ├── 022_half_number_pyramid.cpp │ ├── 023_floyd_triangle.cpp │ ├── 024_butterfly_pattern.cpp │ └── 025_inverted_pattern.cpp ├── Day_003 │ ├── 026_0_1_pattern.cpp │ ├── 027_rohmbus.cpp │ ├── 028_number_pattern.cpp │ ├── 029_palindromic_pattern.cpp │ ├── 030_star.cpp │ ├── 031_zig_zag_pattern.cpp │ ├── 032_reverse_number.cpp │ ├── 033_armstrong.cpp │ └── 034_factorial_using_function.cpp ├── Day_004 │ ├── 035_fibonacci.cpp │ ├── 036_sum_of_n_naturals.cpp │ ├── 037_pythogorean_triplet.cpp │ ├── 038_binary_to_decimal.cpp │ ├── 039_octal_to_decimal.cpp │ ├── 040_hexadecimal_to_decimal.cpp │ ├── 041_decimal_to_binary.cpp │ ├── 042_decimal_to_octal.cpp │ ├── 043_decimal_to_hexadecimal.cpp │ └── 044_add_binary.cpp ├── Day_005 │ ├── 045_max_min_array.cpp │ ├── 046_running_sum_of_array.cpp │ ├── 047_kid_with_greatest_candies.cpp │ └── 049_linear_search.cpp ├── Day_006 │ ├── 050_linear_search.cpp │ └── 051_binary_search.cpp ├── Day_007 │ ├── 052_selection_sort.cpp │ ├── 053_bubble_sort.cpp │ └── 054_insertion_sort.cpp ├── Day_008 │ ├── 055_max_till_i.cpp │ ├── 056_sub_of_all_subarray.cpp │ └── 057_longest_arithmetic_subarray.cpp ├── Day_009 │ ├── 058_record_braker.cpp │ ├── 059_first_repeating_element.cpp │ ├── 060_subarray_with_given_sum.cpp │ ├── 061_leap_year.cpp │ └── 062_reverse_number.cpp ├── Day_010 │ ├── 063_boxes_and_toys.cpp │ ├── 064_v_pattern.cpp │ ├── 065_late_and_socks.cpp │ ├── 066_perfect_number.cpp │ ├── 067_clock_and_angle.cpp │ ├── 068_sorcerer_sequence.cpp │ └── 069_shopping_cost.cpp ├── Day_011 │ ├── 070_smallest_missing_number.cpp │ ├── 071_maximum_subarray_sum.cpp │ └── 072_kadanes_algorithm.cpp ├── Day_012 │ ├── 073_circular_subarray_sum.cpp │ ├── 074_pair_sum_problem.cpp │ └── 075_pair_sum_problem_sorted.cpp ├── Day_013 │ ├── 076_searching_2d_array.cpp │ └── 077_spiral_traversal_2d_array.cpp └── Day_014 │ ├── 078_matrix_transpose.cpp │ ├── 079_matrix_multiplication.cpp │ └── 080_matrix_searching_sorted.cpp ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Data Structures and Algorithms.pdf ├── Data_Structure_and_Algorithm.png ├── LICENSE ├── README.md └── _config.yml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/.gitignore -------------------------------------------------------------------------------- /000_BASICS/001_Compare/threeNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/001_Compare/threeNumbers.cpp -------------------------------------------------------------------------------- /000_BASICS/001_Compare/twoNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/001_Compare/twoNumbers.cpp -------------------------------------------------------------------------------- /000_BASICS/002_Nature_of_Roots/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/002_Nature_of_Roots/main.cpp -------------------------------------------------------------------------------- /000_BASICS/003_Grades_distribution/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/003_Grades_distribution/main.cpp -------------------------------------------------------------------------------- /000_BASICS/004_Check_LeapYear/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/004_Check_LeapYear/main.cpp -------------------------------------------------------------------------------- /000_BASICS/005_Multiplication_Table/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/005_Multiplication_Table/main.cpp -------------------------------------------------------------------------------- /000_BASICS/006_Sum_of_Naturals/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/006_Sum_of_Naturals/main.cpp -------------------------------------------------------------------------------- /000_BASICS/007_Factorial_of_Number/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/007_Factorial_of_Number/main.cpp -------------------------------------------------------------------------------- /000_BASICS/008_Factors_of_Number/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/008_Factors_of_Number/main.cpp -------------------------------------------------------------------------------- /000_BASICS/009_Perfect_Number/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/009_Perfect_Number/main.cpp -------------------------------------------------------------------------------- /000_BASICS/010_Prime_Number/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/010_Prime_Number/main.cpp -------------------------------------------------------------------------------- /000_BASICS/011_Sum_of_Digits/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/011_Sum_of_Digits/main.cpp -------------------------------------------------------------------------------- /000_BASICS/012_Palindrome/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/012_Palindrome/main.cpp -------------------------------------------------------------------------------- /000_BASICS/013_Armstrong_Number/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/013_Armstrong_Number/main.cpp -------------------------------------------------------------------------------- /000_BASICS/014_HCF_GCD/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/014_HCF_GCD/main.cpp -------------------------------------------------------------------------------- /000_BASICS/015_Pythogorean_Triplet/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/015_Pythogorean_Triplet/main.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/001_rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/001_rectangle.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/002_hollow_rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/002_hollow_rectangle.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/003_inverted_triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/003_inverted_triangle.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/004_shifted_triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/004_shifted_triangle.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/005_number_triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/005_number_triangle.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/006_floyd_triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/006_floyd_triangle.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/007_butterfly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/007_butterfly.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/008_inverted_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/008_inverted_pattern.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/009_01_triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/009_01_triangle.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/010_rohmbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/010_rohmbus.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/011_number_pyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/011_number_pyramid.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/012_palindrome_pyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/012_palindrome_pyramid.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/013_star.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/013_star.cpp -------------------------------------------------------------------------------- /000_BASICS/016_Patterns/014_zig_zag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/016_Patterns/014_zig_zag.cpp -------------------------------------------------------------------------------- /000_BASICS/017_Number_Conversion/binary2decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/017_Number_Conversion/binary2decimal.cpp -------------------------------------------------------------------------------- /000_BASICS/017_Number_Conversion/decimal2binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/017_Number_Conversion/decimal2binary.cpp -------------------------------------------------------------------------------- /000_BASICS/017_Number_Conversion/decimal2hexadecimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/017_Number_Conversion/decimal2hexadecimal.cpp -------------------------------------------------------------------------------- /000_BASICS/017_Number_Conversion/decimal2octal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/017_Number_Conversion/decimal2octal.cpp -------------------------------------------------------------------------------- /000_BASICS/017_Number_Conversion/hexadecimal2decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/017_Number_Conversion/hexadecimal2decimal.cpp -------------------------------------------------------------------------------- /000_BASICS/017_Number_Conversion/octal2decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/017_Number_Conversion/octal2decimal.cpp -------------------------------------------------------------------------------- /000_BASICS/018_Add_Binary/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/018_Add_Binary/main.cpp -------------------------------------------------------------------------------- /000_BASICS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/000_BASICS/README.md -------------------------------------------------------------------------------- /001_RECURSION/001_Lets_Code_Recursion/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/001_Lets_Code_Recursion/main.c -------------------------------------------------------------------------------- /001_RECURSION/001_Lets_Code_Recursion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/001_Lets_Code_Recursion/main.cpp -------------------------------------------------------------------------------- /001_RECURSION/002_Static_and_Global_Variables/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/002_Static_and_Global_Variables/main.c -------------------------------------------------------------------------------- /001_RECURSION/002_Static_and_Global_Variables/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/002_Static_and_Global_Variables/main.cpp -------------------------------------------------------------------------------- /001_RECURSION/003_Tree_Recursion/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/003_Tree_Recursion/main.c -------------------------------------------------------------------------------- /001_RECURSION/003_Tree_Recursion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/003_Tree_Recursion/main.cpp -------------------------------------------------------------------------------- /001_RECURSION/004_Indirect_Recursion/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/004_Indirect_Recursion/main.c -------------------------------------------------------------------------------- /001_RECURSION/004_Indirect_Recursion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/004_Indirect_Recursion/main.cpp -------------------------------------------------------------------------------- /001_RECURSION/005_Nested_Recursion/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/005_Nested_Recursion/main.c -------------------------------------------------------------------------------- /001_RECURSION/005_Nested_Recursion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/005_Nested_Recursion/main.cpp -------------------------------------------------------------------------------- /001_RECURSION/006_Sum_of_n_naturals/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/006_Sum_of_n_naturals/main.c -------------------------------------------------------------------------------- /001_RECURSION/006_Sum_of_n_naturals/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/006_Sum_of_n_naturals/main.cpp -------------------------------------------------------------------------------- /001_RECURSION/007_Factorial_using_recursion/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/007_Factorial_using_recursion/main.c -------------------------------------------------------------------------------- /001_RECURSION/007_Factorial_using_recursion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/007_Factorial_using_recursion/main.cpp -------------------------------------------------------------------------------- /001_RECURSION/008_Power_using_recursion/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/008_Power_using_recursion/main.c -------------------------------------------------------------------------------- /001_RECURSION/008_Power_using_recursion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/008_Power_using_recursion/main.cpp -------------------------------------------------------------------------------- /001_RECURSION/009_Taylor_Series_using_recursion/homers_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/009_Taylor_Series_using_recursion/homers_main.cpp -------------------------------------------------------------------------------- /001_RECURSION/009_Taylor_Series_using_recursion/iterative_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/009_Taylor_Series_using_recursion/iterative_main.cpp -------------------------------------------------------------------------------- /001_RECURSION/009_Taylor_Series_using_recursion/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/009_Taylor_Series_using_recursion/main.c -------------------------------------------------------------------------------- /001_RECURSION/009_Taylor_Series_using_recursion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/009_Taylor_Series_using_recursion/main.cpp -------------------------------------------------------------------------------- /001_RECURSION/010_Fibonacci_using_recursion/fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/010_Fibonacci_using_recursion/fibonacci.cpp -------------------------------------------------------------------------------- /001_RECURSION/010_Fibonacci_using_recursion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/010_Fibonacci_using_recursion/main.cpp -------------------------------------------------------------------------------- /001_RECURSION/010_Fibonacci_using_recursion/mem_fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/010_Fibonacci_using_recursion/mem_fibonacci.cpp -------------------------------------------------------------------------------- /001_RECURSION/011_nCr_using_recursion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/011_nCr_using_recursion/main.cpp -------------------------------------------------------------------------------- /001_RECURSION/012_Tower_of_Hanoi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/012_Tower_of_Hanoi/main.cpp -------------------------------------------------------------------------------- /001_RECURSION/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/001_RECURSION/README.md -------------------------------------------------------------------------------- /002_ARRAY/001_Initializing_Array_ADT/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/002_ARRAY/001_Initializing_Array_ADT/main.cpp -------------------------------------------------------------------------------- /002_ARRAY/002_Displaying_an_Array/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/002_ARRAY/002_Displaying_an_Array/main.cpp -------------------------------------------------------------------------------- /002_ARRAY/003_Inserting_in_Array/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/002_ARRAY/003_Inserting_in_Array/main.cpp -------------------------------------------------------------------------------- /002_ARRAY/004_Delete_in_Array/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/002_ARRAY/004_Delete_in_Array/main.cpp -------------------------------------------------------------------------------- /002_ARRAY/005_Linear_Searching/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/002_ARRAY/005_Linear_Searching/main.cpp -------------------------------------------------------------------------------- /002_ARRAY/006_Binary_Searching/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/002_ARRAY/006_Binary_Searching/main.cpp -------------------------------------------------------------------------------- /002_ARRAY/007_Get_Set_Avg_Max/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/002_ARRAY/007_Get_Set_Avg_Max/main.cpp -------------------------------------------------------------------------------- /002_ARRAY/008_Reverse_Array/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/002_ARRAY/008_Reverse_Array/main.cpp -------------------------------------------------------------------------------- /002_ARRAY/009_Left_Shift_Rotate/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/002_ARRAY/009_Left_Shift_Rotate/main.cpp -------------------------------------------------------------------------------- /002_ARRAY/010_Sorted_Operations/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/002_ARRAY/010_Sorted_Operations/main.cpp -------------------------------------------------------------------------------- /002_ARRAY/012_SUM_OF_TWO_ARRAYS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/002_ARRAY/012_SUM_OF_TWO_ARRAYS -------------------------------------------------------------------------------- /999_Practice/Day_0/0000_hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_0/0000_hello_world.cpp -------------------------------------------------------------------------------- /999_Practice/Day_0/0001_even_odd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_0/0001_even_odd.cpp -------------------------------------------------------------------------------- /999_Practice/Day_0/0002_min_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_0/0002_min_max.cpp -------------------------------------------------------------------------------- /999_Practice/Day_0/0003_max_3_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_0/0003_max_3_number.cpp -------------------------------------------------------------------------------- /999_Practice/Day_0/0004_triangle_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_0/0004_triangle_check.cpp -------------------------------------------------------------------------------- /999_Practice/Day_0/0005_vovel_consonant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_0/0005_vovel_consonant.cpp -------------------------------------------------------------------------------- /999_Practice/Day_0/0006_sum_of_n_naturals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_0/0006_sum_of_n_naturals.cpp -------------------------------------------------------------------------------- /999_Practice/Day_0/0007_multiplication_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_0/0007_multiplication_table.cpp -------------------------------------------------------------------------------- /999_Practice/Day_0/0008_adding_positive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_0/0008_adding_positive.cpp -------------------------------------------------------------------------------- /999_Practice/Day_0/0009_odd_till_n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_0/0009_odd_till_n.cpp -------------------------------------------------------------------------------- /999_Practice/Day_0/0010_checking_prime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_0/0010_checking_prime.cpp -------------------------------------------------------------------------------- /999_Practice/Day_0/0011_prime_in_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_0/0011_prime_in_range.cpp -------------------------------------------------------------------------------- /999_Practice/Day_1/0012_simple_calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_1/0012_simple_calculator.cpp -------------------------------------------------------------------------------- /999_Practice/Day_1/0013_vovel_consonant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_1/0013_vovel_consonant.cpp -------------------------------------------------------------------------------- /999_Practice/Day_1/0014_pre_post_increment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_1/0014_pre_post_increment.cpp -------------------------------------------------------------------------------- /999_Practice/Day_1/0015_divisiblity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_1/0015_divisiblity.cpp -------------------------------------------------------------------------------- /999_Practice/Day_1/0016_bitwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_1/0016_bitwise.cpp -------------------------------------------------------------------------------- /999_Practice/Day_10/0061_sum_n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_10/0061_sum_n.cpp -------------------------------------------------------------------------------- /999_Practice/Day_10/0062_pythogorian_triplet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_10/0062_pythogorian_triplet.cpp -------------------------------------------------------------------------------- /999_Practice/Day_10/0063_octal_to_decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_10/0063_octal_to_decimal.cpp -------------------------------------------------------------------------------- /999_Practice/Day_10/0064_hexadecimal_to_decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_10/0064_hexadecimal_to_decimal.cpp -------------------------------------------------------------------------------- /999_Practice/Day_10/0065_decimal_to_octal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_10/0065_decimal_to_octal.cpp -------------------------------------------------------------------------------- /999_Practice/Day_10/0066_decimal_to_hexadecimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_10/0066_decimal_to_hexadecimal.cpp -------------------------------------------------------------------------------- /999_Practice/Day_10/0067_binary_addition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_10/0067_binary_addition.cpp -------------------------------------------------------------------------------- /999_Practice/Day_11/0068_time_complexity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_11/0068_time_complexity.cpp -------------------------------------------------------------------------------- /999_Practice/Day_11/0069_space_complexity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_11/0069_space_complexity.cpp -------------------------------------------------------------------------------- /999_Practice/Day_11/0070_complexity_n+m.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_11/0070_complexity_n+m.cpp -------------------------------------------------------------------------------- /999_Practice/Day_11/0071_complexity_logn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_11/0071_complexity_logn.cpp -------------------------------------------------------------------------------- /999_Practice/Day_11/0072_complexity_nlogn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_11/0072_complexity_nlogn.cpp -------------------------------------------------------------------------------- /999_Practice/Day_12/0073_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_12/0073_array.cpp -------------------------------------------------------------------------------- /999_Practice/Day_12/0074_max_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_12/0074_max_min.cpp -------------------------------------------------------------------------------- /999_Practice/Day_12/0075_running_array_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_12/0075_running_array_sum.cpp -------------------------------------------------------------------------------- /999_Practice/Day_12/0076_kid_with_max_cadies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_12/0076_kid_with_max_cadies.cpp -------------------------------------------------------------------------------- /999_Practice/Day_13/0077_linear_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_13/0077_linear_search.cpp -------------------------------------------------------------------------------- /999_Practice/Day_13/0078_binary_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_13/0078_binary_search.cpp -------------------------------------------------------------------------------- /999_Practice/Day_14/0079_selection_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_14/0079_selection_sort.cpp -------------------------------------------------------------------------------- /999_Practice/Day_14/0080_bubble_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_14/0080_bubble_sort.cpp -------------------------------------------------------------------------------- /999_Practice/Day_14/0081_insertion_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_14/0081_insertion_sort.cpp -------------------------------------------------------------------------------- /999_Practice/Day_15/0082_hackerrank_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_15/0082_hackerrank_7.cpp -------------------------------------------------------------------------------- /999_Practice/Day_16/0083_hackerrank_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_16/0083_hackerrank_8.c -------------------------------------------------------------------------------- /999_Practice/Day_17/0084_max_till_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_17/0084_max_till_i.cpp -------------------------------------------------------------------------------- /999_Practice/Day_17/0085_sum_of_all_subarrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_17/0085_sum_of_all_subarrays.cpp -------------------------------------------------------------------------------- /999_Practice/Day_18/0086_longest_arithmetic_subarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_18/0086_longest_arithmetic_subarray.cpp -------------------------------------------------------------------------------- /999_Practice/Day_18/0087_record_breaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_18/0087_record_breaker.cpp -------------------------------------------------------------------------------- /999_Practice/Day_18/0088_two_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_18/0088_two_sum.cpp -------------------------------------------------------------------------------- /999_Practice/Day_19/0089_first_repeating_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_19/0089_first_repeating_element.cpp -------------------------------------------------------------------------------- /999_Practice/Day_19/0090_subarray_with_given_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_19/0090_subarray_with_given_sum.cpp -------------------------------------------------------------------------------- /999_Practice/Day_19/0091_smallest_poitive_missing_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_19/0091_smallest_poitive_missing_number.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0017_hackerrank_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0017_hackerrank_1.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0018_hackerrank_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0018_hackerrank_2.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0019_hackerrank_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0019_hackerrank_3.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0020_hackerrank_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0020_hackerrank_4.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0021_hackrrank_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0021_hackrrank_5.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0022_different_datatypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0022_different_datatypes.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0023_cerr_clog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0023_cerr_clog.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0024_endl_vs_n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0024_endl_vs_n.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0025_cin_vs_scanf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0025_cin_vs_scanf.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0026_rectangle_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0026_rectangle_pattern.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0027_hollow_rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0027_hollow_rectangle.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0028_inverted_half_pyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0028_inverted_half_pyramid.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0029_half_pyramid_180.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0029_half_pyramid_180.cpp -------------------------------------------------------------------------------- /999_Practice/Day_2/0030_half_pyramid_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_2/0030_half_pyramid_number.cpp -------------------------------------------------------------------------------- /999_Practice/Day_20/0092_all_subarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_20/0092_all_subarray.cpp -------------------------------------------------------------------------------- /999_Practice/Day_20/0093_maximum_subarray_sum_brute_force.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_20/0093_maximum_subarray_sum_brute_force.cpp -------------------------------------------------------------------------------- /999_Practice/Day_20/0094_maximum_subarray_sum_cumulative_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_20/0094_maximum_subarray_sum_cumulative_sum.cpp -------------------------------------------------------------------------------- /999_Practice/Day_20/0095_maximum_subarray_sum_kadanes_alorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_20/0095_maximum_subarray_sum_kadanes_alorithm.cpp -------------------------------------------------------------------------------- /999_Practice/Day_20/0096_maximum_circular_subarray_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_20/0096_maximum_circular_subarray_sum.cpp -------------------------------------------------------------------------------- /999_Practice/Day_20/0097_pair_sum_optimised.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_20/0097_pair_sum_optimised.cpp -------------------------------------------------------------------------------- /999_Practice/Day_21/0098_roman_to_decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_21/0098_roman_to_decimal.cpp -------------------------------------------------------------------------------- /999_Practice/Day_21/0099_length_of_last_word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_21/0099_length_of_last_word.cpp -------------------------------------------------------------------------------- /999_Practice/Day_21/0100_plus_one.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_21/0100_plus_one.cpp -------------------------------------------------------------------------------- /999_Practice/Day_22/0101_sqrt_x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_22/0101_sqrt_x.cpp -------------------------------------------------------------------------------- /999_Practice/Day_22/0102_palindrome_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_22/0102_palindrome_string.cpp -------------------------------------------------------------------------------- /999_Practice/Day_22/0103_single_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_22/0103_single_number.cpp -------------------------------------------------------------------------------- /999_Practice/Day_22/0104_remove_vovel_from_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_22/0104_remove_vovel_from_string.cpp -------------------------------------------------------------------------------- /999_Practice/Day_22/0105_single_row_keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_22/0105_single_row_keyboard.cpp -------------------------------------------------------------------------------- /999_Practice/Day_23/0106_2d_array_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_23/0106_2d_array_search.cpp -------------------------------------------------------------------------------- /999_Practice/Day_23/0107_spiral_order_matrix_traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_23/0107_spiral_order_matrix_traversal.cpp -------------------------------------------------------------------------------- /999_Practice/Day_23/0108_reverse_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_23/0108_reverse_integer.cpp -------------------------------------------------------------------------------- /999_Practice/Day_23/0109_longest_common_prefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_23/0109_longest_common_prefix.cpp -------------------------------------------------------------------------------- /999_Practice/Day_23/0110_count_the_triplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_23/0110_count_the_triplets.cpp -------------------------------------------------------------------------------- /999_Practice/Day_24/0111_rearrange_array_alternatively.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_24/0111_rearrange_array_alternatively.cpp -------------------------------------------------------------------------------- /999_Practice/Day_24/0112_and_plus_or.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_24/0112_and_plus_or.cpp -------------------------------------------------------------------------------- /999_Practice/Day_24/0113_split_the_str_ing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_24/0113_split_the_str_ing.cpp -------------------------------------------------------------------------------- /999_Practice/Day_24/0114_sort_array_of_0_1_and_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_24/0114_sort_array_of_0_1_and_2.cpp -------------------------------------------------------------------------------- /999_Practice/Day_24/0115_equilibrium_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_24/0115_equilibrium_point.cpp -------------------------------------------------------------------------------- /999_Practice/Day_25/0116_transpose_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_25/0116_transpose_matrix.cpp -------------------------------------------------------------------------------- /999_Practice/Day_25/0117_matrix_multiplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_25/0117_matrix_multiplication.cpp -------------------------------------------------------------------------------- /999_Practice/Day_25/0118_2d_matrix_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_25/0118_2d_matrix_search.cpp -------------------------------------------------------------------------------- /999_Practice/Day_25/0119_2d_matrix_search_optimised.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_25/0119_2d_matrix_search_optimised.cpp -------------------------------------------------------------------------------- /999_Practice/Day_25/0120_largest_word_in_sentence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_25/0120_largest_word_in_sentence.cpp -------------------------------------------------------------------------------- /999_Practice/Day_26/0121_leaders_in_an_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_26/0121_leaders_in_an_array.cpp -------------------------------------------------------------------------------- /999_Practice/Day_26/0122_minimum_platforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_26/0122_minimum_platforms.cpp -------------------------------------------------------------------------------- /999_Practice/Day_26/0123_reverse_array_in_grops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_26/0123_reverse_array_in_grops.cpp -------------------------------------------------------------------------------- /999_Practice/Day_26/0124_kth_smallest_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_26/0124_kth_smallest_element.cpp -------------------------------------------------------------------------------- /999_Practice/Day_27/0125_pointers_intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_27/0125_pointers_intro.cpp -------------------------------------------------------------------------------- /999_Practice/Day_27/0126_pointer_arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_27/0126_pointer_arithmetic.cpp -------------------------------------------------------------------------------- /999_Practice/Day_27/0127_array_and_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_27/0127_array_and_pointer.cpp -------------------------------------------------------------------------------- /999_Practice/Day_27/0128_pointer_to_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_27/0128_pointer_to_pointer.cpp -------------------------------------------------------------------------------- /999_Practice/Day_27/0129_passing_pointer_to_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_27/0129_passing_pointer_to_function.cpp -------------------------------------------------------------------------------- /999_Practice/Day_27/0130_trapping_rain_water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_27/0130_trapping_rain_water.cpp -------------------------------------------------------------------------------- /999_Practice/Day_28/0131_pythogorean_triplet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_28/0131_pythogorean_triplet.cpp -------------------------------------------------------------------------------- /999_Practice/Day_28/0132_life_universe_and_everything.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_28/0132_life_universe_and_everything.cpp -------------------------------------------------------------------------------- /999_Practice/Day_28/0133_reverse_the_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_28/0133_reverse_the_number.cpp -------------------------------------------------------------------------------- /999_Practice/Day_28/0134_lapindrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_28/0134_lapindrome.cpp -------------------------------------------------------------------------------- /999_Practice/Day_28/0135_smart_phone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_28/0135_smart_phone.cpp -------------------------------------------------------------------------------- /999_Practice/Day_28/0136_ada_and_dishes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_28/0136_ada_and_dishes.cpp -------------------------------------------------------------------------------- /999_Practice/Day_29/0137_string_operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_29/0137_string_operations.cpp -------------------------------------------------------------------------------- /999_Practice/Day_29/0138_sorting_a_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_29/0138_sorting_a_string.cpp -------------------------------------------------------------------------------- /999_Practice/Day_29/0139_smart_phones_updated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_29/0139_smart_phones_updated.cpp -------------------------------------------------------------------------------- /999_Practice/Day_29/0140_carvans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_29/0140_carvans.cpp -------------------------------------------------------------------------------- /999_Practice/Day_3/0031_floyds_triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_3/0031_floyds_triangle.cpp -------------------------------------------------------------------------------- /999_Practice/Day_3/0032_butterfly_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_3/0032_butterfly_pattern.cpp -------------------------------------------------------------------------------- /999_Practice/Day_3/0033_rounding_off.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_3/0033_rounding_off.cpp -------------------------------------------------------------------------------- /999_Practice/Day_30/0141_chocolate_distribution_problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_30/0141_chocolate_distribution_problem.cpp -------------------------------------------------------------------------------- /999_Practice/Day_30/0142_compare_the_triplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_30/0142_compare_the_triplets.cpp -------------------------------------------------------------------------------- /999_Practice/Day_30/0143_diagonal_difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_30/0143_diagonal_difference.cpp -------------------------------------------------------------------------------- /999_Practice/Day_30/0144_plus_minus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_30/0144_plus_minus.cpp -------------------------------------------------------------------------------- /999_Practice/Day_30/0145_staircase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_30/0145_staircase.cpp -------------------------------------------------------------------------------- /999_Practice/Day_30/0146_min_max_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_30/0146_min_max_sum.cpp -------------------------------------------------------------------------------- /999_Practice/Day_30/0147_birthday_cake_candles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_30/0147_birthday_cake_candles.cpp -------------------------------------------------------------------------------- /999_Practice/Day_31/0148_case_conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_31/0148_case_conversion.cpp -------------------------------------------------------------------------------- /999_Practice/Day_31/0149_biggest_number_from_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_31/0149_biggest_number_from_string.cpp -------------------------------------------------------------------------------- /999_Practice/Day_31/0150_max_frequency_character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_31/0150_max_frequency_character.cpp -------------------------------------------------------------------------------- /999_Practice/Day_31/0151_reverse_words_in-string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_31/0151_reverse_words_in-string.cpp -------------------------------------------------------------------------------- /999_Practice/Day_31/0152_permutations_of_a_given_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_31/0152_permutations_of_a_given_string.cpp -------------------------------------------------------------------------------- /999_Practice/Day_32/0153_get_bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_32/0153_get_bit.cpp -------------------------------------------------------------------------------- /999_Practice/Day_32/0154_set_bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_32/0154_set_bit.cpp -------------------------------------------------------------------------------- /999_Practice/Day_32/0155_clear_bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_32/0155_clear_bit.cpp -------------------------------------------------------------------------------- /999_Practice/Day_32/0156_update_bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_32/0156_update_bit.cpp -------------------------------------------------------------------------------- /999_Practice/Day_33/0157_power_of_two.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_33/0157_power_of_two.cpp -------------------------------------------------------------------------------- /999_Practice/Day_33/0158_number_of_1_in_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_33/0158_number_of_1_in_binary.cpp -------------------------------------------------------------------------------- /999_Practice/Day_33/0159_generating_all_possible_subsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_33/0159_generating_all_possible_subsets.cpp -------------------------------------------------------------------------------- /999_Practice/Day_34/0160_last_index_of_one.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_34/0160_last_index_of_one.cpp -------------------------------------------------------------------------------- /999_Practice/Day_34/0161_stock_buy_and_sell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_34/0161_stock_buy_and_sell.cpp -------------------------------------------------------------------------------- /999_Practice/Day_34/0162_one_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_34/0162_one_time.cpp -------------------------------------------------------------------------------- /999_Practice/Day_34/0163_two_number_one_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_34/0163_two_number_one_time.cpp -------------------------------------------------------------------------------- /999_Practice/Day_35/0161_three_one.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_35/0161_three_one.cpp -------------------------------------------------------------------------------- /999_Practice/Day_35/0162_seive_of_eratosthenes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_35/0162_seive_of_eratosthenes.cpp -------------------------------------------------------------------------------- /999_Practice/Day_35/0163_prime_factorization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_35/0163_prime_factorization.cpp -------------------------------------------------------------------------------- /999_Practice/Day_36/0164_recursively_removing_duplicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_36/0164_recursively_removing_duplicate.cpp -------------------------------------------------------------------------------- /999_Practice/Day_36/0165_divisible_5_or_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_36/0165_divisible_5_or_7.cpp -------------------------------------------------------------------------------- /999_Practice/Day_36/0167_euclid_algo_to_find_gcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_36/0167_euclid_algo_to_find_gcd.cpp -------------------------------------------------------------------------------- /999_Practice/Day_37/0168_add_numbers_till_n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_37/0168_add_numbers_till_n.cpp -------------------------------------------------------------------------------- /999_Practice/Day_37/0169_n_raised_to_power_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_37/0169_n_raised_to_power_p.cpp -------------------------------------------------------------------------------- /999_Practice/Day_37/0170_factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_37/0170_factorial.cpp -------------------------------------------------------------------------------- /999_Practice/Day_37/0171_nth_fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_37/0171_nth_fibonacci.cpp -------------------------------------------------------------------------------- /999_Practice/Day_38/0172_checking_sorted_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_38/0172_checking_sorted_array.cpp -------------------------------------------------------------------------------- /999_Practice/Day_38/0173_numbers_till_n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_38/0173_numbers_till_n.cpp -------------------------------------------------------------------------------- /999_Practice/Day_38/0174_numbers_till_n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_38/0174_numbers_till_n.cpp -------------------------------------------------------------------------------- /999_Practice/Day_38/0175_first_occurance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_38/0175_first_occurance.cpp -------------------------------------------------------------------------------- /999_Practice/Day_38/0176_last_occurance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_38/0176_last_occurance.cpp -------------------------------------------------------------------------------- /999_Practice/Day_39/0177_closed_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_39/0177_closed_box.cpp -------------------------------------------------------------------------------- /999_Practice/Day_39/0178_reverse_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_39/0178_reverse_string.cpp -------------------------------------------------------------------------------- /999_Practice/Day_4/0034_inverted_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_4/0034_inverted_pattern.cpp -------------------------------------------------------------------------------- /999_Practice/Day_4/0035_0-1_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_4/0035_0-1_pattern.cpp -------------------------------------------------------------------------------- /999_Practice/Day_4/0036_rohmbus_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_4/0036_rohmbus_pattern.cpp -------------------------------------------------------------------------------- /999_Practice/Day_4/0037_number_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_4/0037_number_pattern.cpp -------------------------------------------------------------------------------- /999_Practice/Day_4/0038_palindromic_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_4/0038_palindromic_pattern.cpp -------------------------------------------------------------------------------- /999_Practice/Day_4/0039_star_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_4/0039_star_pattern.cpp -------------------------------------------------------------------------------- /999_Practice/Day_4/0040_zigzag_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_4/0040_zigzag_pattern.cpp -------------------------------------------------------------------------------- /999_Practice/Day_4/0041_hollow_butterfly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_4/0041_hollow_butterfly.cpp -------------------------------------------------------------------------------- /999_Practice/Day_4/0042_pascal_triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_4/0042_pascal_triangle.cpp -------------------------------------------------------------------------------- /999_Practice/Day_40/0179_replace_pi_with_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_40/0179_replace_pi_with_string.cpp -------------------------------------------------------------------------------- /999_Practice/Day_40/0180_tower_of_hanoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_40/0180_tower_of_hanoi.cpp -------------------------------------------------------------------------------- /999_Practice/Day_41/0181_removing_duplicates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_41/0181_removing_duplicates.cpp -------------------------------------------------------------------------------- /999_Practice/Day_41/0182_move_all_x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_41/0182_move_all_x.cpp -------------------------------------------------------------------------------- /999_Practice/Day_42/0183_generate_substring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_42/0183_generate_substring.cpp -------------------------------------------------------------------------------- /999_Practice/Day_42/0184_generate_ascii_subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_42/0184_generate_ascii_subsequence.cpp -------------------------------------------------------------------------------- /999_Practice/Day_42/0185-possible_word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_42/0185-possible_word.cpp -------------------------------------------------------------------------------- /999_Practice/Day_43/0186_tiling_problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_43/0186_tiling_problem.cpp -------------------------------------------------------------------------------- /999_Practice/Day_44/0187_friends_pairing_problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_44/0187_friends_pairing_problem.cpp -------------------------------------------------------------------------------- /999_Practice/Day_45/0188_0_1_knapsack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_45/0188_0_1_knapsack.cpp -------------------------------------------------------------------------------- /999_Practice/Day_46/0189_iterating_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_46/0189_iterating_vector.cpp -------------------------------------------------------------------------------- /999_Practice/Day_46/0190_vector functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_46/0190_vector functions.cpp -------------------------------------------------------------------------------- /999_Practice/Day_47/0191_auto_keyword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_47/0191_auto_keyword.cpp -------------------------------------------------------------------------------- /999_Practice/Day_47/0192_average_of_two.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_47/0192_average_of_two.cpp -------------------------------------------------------------------------------- /999_Practice/Day_47/0193_reverse_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_47/0193_reverse_array.cpp -------------------------------------------------------------------------------- /999_Practice/Day_47/0194_max_and_min_from_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_47/0194_max_and_min_from_array.cpp -------------------------------------------------------------------------------- /999_Practice/Day_5/0043_decimal_to_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_5/0043_decimal_to_binary.cpp -------------------------------------------------------------------------------- /999_Practice/Day_5/0044_binary_to_decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_5/0044_binary_to_decimal.cpp -------------------------------------------------------------------------------- /999_Practice/Day_6/0045_prime_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_6/0045_prime_number.cpp -------------------------------------------------------------------------------- /999_Practice/Day_6/0046_reverse_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_6/0046_reverse_number.cpp -------------------------------------------------------------------------------- /999_Practice/Day_6/0047_armstrong_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_6/0047_armstrong_number.cpp -------------------------------------------------------------------------------- /999_Practice/Day_7/0048_sum_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_7/0048_sum_function.cpp -------------------------------------------------------------------------------- /999_Practice/Day_7/0049_printing_using_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_7/0049_printing_using_function.cpp -------------------------------------------------------------------------------- /999_Practice/Day_7/0050_factorial_using_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_7/0050_factorial_using_function.cpp -------------------------------------------------------------------------------- /999_Practice/Day_8/0051_hackerrank_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_8/0051_hackerrank_6.cpp -------------------------------------------------------------------------------- /999_Practice/Day_9/0053_prime_betwwen_numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_9/0053_prime_betwwen_numbers.cpp -------------------------------------------------------------------------------- /999_Practice/Day_9/0054_fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_9/0054_fibonacci.cpp -------------------------------------------------------------------------------- /999_Practice/Day_9/0055_nCr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_9/0055_nCr.cpp -------------------------------------------------------------------------------- /999_Practice/Day_9/0056_pascal_triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_9/0056_pascal_triangle.cpp -------------------------------------------------------------------------------- /999_Practice/Day_9/0057_even_odd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_9/0057_even_odd.cpp -------------------------------------------------------------------------------- /999_Practice/Day_9/0058_alphabet_or_not.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_9/0058_alphabet_or_not.cpp -------------------------------------------------------------------------------- /999_Practice/Day_9/0059_elligible_for_voting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_9/0059_elligible_for_voting.cpp -------------------------------------------------------------------------------- /999_Practice/Day_9/0060_max_min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice/Day_9/0060_max_min.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/001_hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/001_hello_world.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/002_macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/002_macros.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/003_datatype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/003_datatype.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/004_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/004_precision.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/005_odd_even.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/005_odd_even.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/006_max_min_two_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/006_max_min_two_number.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/007_max_from_three_numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/007_max_from_three_numbers.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/008_check_triangle_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/008_check_triangle_type.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/009_vovel_or_consonant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/009_vovel_or_consonant.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/010_sum_of_n_naturals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/010_sum_of_n_naturals.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/011_table_of_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/011_table_of_number.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/012_only_add_positive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/012_only_add_positive.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/013_print_odd_till_n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/013_print_odd_till_n.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/014_check_prime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/014_check_prime.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/015_prime_between_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/015_prime_between_range.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_001/016_simple_calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_001/016_simple_calculator.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_002/017_bridge_of_stones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_002/017_bridge_of_stones.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_002/018_rectangle_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_002/018_rectangle_pattern.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_002/019_hollow_rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_002/019_hollow_rectangle.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_002/020_inverted_half_pyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_002/020_inverted_half_pyramid.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_002/021_inverted_half_pyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_002/021_inverted_half_pyramid.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_002/022_half_number_pyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_002/022_half_number_pyramid.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_002/023_floyd_triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_002/023_floyd_triangle.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_002/024_butterfly_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_002/024_butterfly_pattern.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_002/025_inverted_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_002/025_inverted_pattern.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_003/026_0_1_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_003/026_0_1_pattern.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_003/027_rohmbus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_003/027_rohmbus.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_003/028_number_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_003/028_number_pattern.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_003/029_palindromic_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_003/029_palindromic_pattern.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_003/030_star.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_003/030_star.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_003/031_zig_zag_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_003/031_zig_zag_pattern.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_003/032_reverse_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_003/032_reverse_number.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_003/033_armstrong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_003/033_armstrong.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_003/034_factorial_using_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_003/034_factorial_using_function.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_004/035_fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_004/035_fibonacci.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_004/036_sum_of_n_naturals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_004/036_sum_of_n_naturals.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_004/037_pythogorean_triplet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_004/037_pythogorean_triplet.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_004/038_binary_to_decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_004/038_binary_to_decimal.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_004/039_octal_to_decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_004/039_octal_to_decimal.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_004/040_hexadecimal_to_decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_004/040_hexadecimal_to_decimal.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_004/041_decimal_to_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_004/041_decimal_to_binary.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_004/042_decimal_to_octal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_004/042_decimal_to_octal.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_004/043_decimal_to_hexadecimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_004/043_decimal_to_hexadecimal.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_004/044_add_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_004/044_add_binary.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_005/045_max_min_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_005/045_max_min_array.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_005/046_running_sum_of_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_005/046_running_sum_of_array.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_005/047_kid_with_greatest_candies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_005/047_kid_with_greatest_candies.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_005/049_linear_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_005/049_linear_search.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_006/050_linear_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_006/050_linear_search.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_006/051_binary_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_006/051_binary_search.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_007/052_selection_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_007/052_selection_sort.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_007/053_bubble_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_007/053_bubble_sort.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_007/054_insertion_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_007/054_insertion_sort.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_008/055_max_till_i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_008/055_max_till_i.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_008/056_sub_of_all_subarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_008/056_sub_of_all_subarray.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_008/057_longest_arithmetic_subarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_008/057_longest_arithmetic_subarray.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_009/058_record_braker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_009/058_record_braker.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_009/059_first_repeating_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_009/059_first_repeating_element.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_009/060_subarray_with_given_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_009/060_subarray_with_given_sum.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_009/061_leap_year.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_009/061_leap_year.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_009/062_reverse_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_009/062_reverse_number.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_010/063_boxes_and_toys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_010/063_boxes_and_toys.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_010/064_v_pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_010/064_v_pattern.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_010/065_late_and_socks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_010/065_late_and_socks.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_010/066_perfect_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_010/066_perfect_number.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_010/067_clock_and_angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_010/067_clock_and_angle.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_010/068_sorcerer_sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_010/068_sorcerer_sequence.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_010/069_shopping_cost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_010/069_shopping_cost.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_011/070_smallest_missing_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_011/070_smallest_missing_number.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_011/071_maximum_subarray_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_011/071_maximum_subarray_sum.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_011/072_kadanes_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_011/072_kadanes_algorithm.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_012/073_circular_subarray_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_012/073_circular_subarray_sum.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_012/074_pair_sum_problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_012/074_pair_sum_problem.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_012/075_pair_sum_problem_sorted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_012/075_pair_sum_problem_sorted.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_013/076_searching_2d_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_013/076_searching_2d_array.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_013/077_spiral_traversal_2d_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_013/077_spiral_traversal_2d_array.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_014/078_matrix_transpose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_014/078_matrix_transpose.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_014/079_matrix_multiplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_014/079_matrix_multiplication.cpp -------------------------------------------------------------------------------- /999_Practice_Set_2/Day_014/080_matrix_searching_sorted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/999_Practice_Set_2/Day_014/080_matrix_searching_sorted.cpp -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Data Structures and Algorithms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/Data Structures and Algorithms.pdf -------------------------------------------------------------------------------- /Data_Structure_and_Algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/Data_Structure_and_Algorithm.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kshitizsaini113/Data-Structure-and-Algorithms/HEAD/_config.yml --------------------------------------------------------------------------------