├── C ├── Armstrong No ├── Fibonacci Element Find.c ├── Matrix.c ├── binary_search.c ├── insertion_sort.c ├── multiplication_table.c ├── oddOrEvenWithoutConditionalStatements.c ├── palindrome.c ├── prime number.c ├── producer consumer.c ├── remove duplicates.c ├── selection_sort.c ├── snakewatergungame.c └── swap.c ├── Cpp ├── 233-Number_of_Digit_One.cpp ├── Anagram.cpp ├── Arrays │ ├── 1DArrayInto2D Array.cpp │ ├── 3Sum_Closest.cpp │ ├── 4 Sum.cpp │ ├── Find_The_Highest_Altitude.cpp │ ├── TowerOfHanoi.cpp │ ├── best_time_to_buy_and_sell_stock.cpp │ ├── cricket_game.cpp │ ├── generateSubarrays.cpp │ ├── kadanes_algo.cpp │ ├── maxSumSubarray.cpp │ ├── rearrangeArrayAlternatively.cpp │ └── trappingRainwater.cpp ├── Basics │ ├── callByReference.cpp │ ├── callByReference.exe │ ├── fun_overloading.cpp │ ├── fun_overloading.exe │ └── multilevel_inheritance.cpp ├── BinarySearchTree.cpp ├── Competitions │ └── Google Kick Start │ │ ├── Kickstart(round G).cpp │ │ └── googlekickstart_Festival.cpp ├── ConnectedComponents.cpp ├── Dynamic Programming │ ├── DP_Knapsack.cpp │ ├── ShortestCommonSupersequence.cpp │ ├── longest_common_subsequence_using_dp.cpp │ ├── palindrome_partitioning.cpp │ ├── rod_cutting.cpp │ ├── subset_sum_dp.cpp │ └── unbounded_knapsack.cpp ├── HeapSort.cpp ├── Linkedlist │ ├── Check_Palinromic_LinkedList.cpp │ ├── Delete_Middle_Of_LINKED LIST.cpp │ ├── Music_Player using Linked List.cpp │ └── palindromic_linked_list.cpp ├── Longest Consecutive 1s.cpp ├── Maths │ ├── Armstrong Number.cpp │ ├── Fibonacci number.cpp │ ├── Greatest Common Divident.cpp │ ├── Reverse_a_number.cpp │ ├── SwapOf2Num.cpp │ ├── SwapOf2Num.exe │ ├── catalan_numbers.cpp │ └── check-niven-num.cpp ├── MatrixSorting.cpp ├── QueueUsingLL.cpp ├── Rat_Maze.cpp ├── Recursion │ └── josphus_problem.cpp ├── Reverse_linkedlist.cpp ├── STL and Templates │ ├── DequeueSTL.cpp │ ├── QueueSTL.cpp │ ├── TEMPLATE.cpp │ └── priority_queue.cpp ├── Searching │ ├── BinarySearch.cpp │ ├── Find First and Last Position of Element in Sorted Array.cpp │ ├── LinearSearch.cpp │ └── find-first-and-last-position-of-element-in-sorted-array.cpp ├── SelectionSort.cpp ├── Snake & Ladder.cpp ├── Sorting │ ├── Heap Sort.cpp │ ├── Insertion_Sort.cpp │ ├── MergeSort.cpp │ ├── QuickSort.cpp │ ├── Timsort │ │ ├── Timsort.txt │ │ ├── Timsort_analysis.png │ │ ├── timsort_cpp_implementation.cpp │ │ └── timsort_python_implementation.py │ ├── bubbleSort.cpp │ ├── bucketSort.cpp │ ├── selectionSort.cpp │ └── tsort.cpp ├── SpiralMatrix.cpp ├── Stacks and Queues │ ├── Bracket_Balancing.cpp │ ├── Checking_Balanced_Parenthesis.cpp │ └── rain_water_trapping.cpp ├── Strings │ ├── Length of Last Word.cpp │ ├── permutationsOfStrings.cpp │ └── plaindrome_ll.cpp ├── connected_components.cpp ├── dequeSTL.cpp ├── integer-to-english-words.md ├── kadane_algo.cpp ├── partition_equal_subset_sum.cpp ├── permutationOfTheInputStringUsingRecursion.cpp ├── queueSTL.cpp ├── quick_sort.cpp ├── radixSort.cpp ├── search_element_in_row_column_sorted_matrix.cpp └── setSTL.cpp ├── Java ├── Arrays │ ├── Arranging_Coins.java │ ├── ArrayInputLoop.java │ ├── Rotate2DArray.java │ ├── Search_in_Rotated_Sorted_Array.java │ └── WaveTraversal2DArray.java ├── Binary Search │ └── binarysearch.java ├── CircularLinkedList.java ├── Crypto │ ├── Push Zeros to end.java │ └── crytohider.java ├── Sorting Algorithms │ └── MergeSort.java ├── Stacks and Queues │ └── deque_datasructure.java ├── Swap Function └── Trapping.java ├── JavaScript ├── ToastNotification.html ├── javascript calculator.html └── javascript clock.html ├── Kubernetes └── hello-world.yml ├── LICENSE ├── Python ├── BucketSort.py ├── Create Best_time_to_buy_and_sell_stocks.py ├── HRSimpleArraySum.py ├── HeapSort.py ├── Infix to Postfix.py ├── LargeSmallSum.py ├── Next Greater Element.py ├── PrioQueue.cpp ├── counting_words.py ├── electricity bill.py ├── palindrome.py ├── password_generator.py ├── password_validator.py ├── qrcode_generator.py ├── string_palindrome.py ├── tictactoe.py └── turtlegraphics.py ├── README.md └── go ├── hello_world ├── go.mod └── hello.go └── switch ├── go.mod └── switch.go /C/Armstrong No: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/Armstrong No -------------------------------------------------------------------------------- /C/Fibonacci Element Find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/Fibonacci Element Find.c -------------------------------------------------------------------------------- /C/Matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/Matrix.c -------------------------------------------------------------------------------- /C/binary_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/binary_search.c -------------------------------------------------------------------------------- /C/insertion_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/insertion_sort.c -------------------------------------------------------------------------------- /C/multiplication_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/multiplication_table.c -------------------------------------------------------------------------------- /C/oddOrEvenWithoutConditionalStatements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/oddOrEvenWithoutConditionalStatements.c -------------------------------------------------------------------------------- /C/palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/palindrome.c -------------------------------------------------------------------------------- /C/prime number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/prime number.c -------------------------------------------------------------------------------- /C/producer consumer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/producer consumer.c -------------------------------------------------------------------------------- /C/remove duplicates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/remove duplicates.c -------------------------------------------------------------------------------- /C/selection_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/selection_sort.c -------------------------------------------------------------------------------- /C/snakewatergungame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/snakewatergungame.c -------------------------------------------------------------------------------- /C/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/C/swap.c -------------------------------------------------------------------------------- /Cpp/233-Number_of_Digit_One.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/233-Number_of_Digit_One.cpp -------------------------------------------------------------------------------- /Cpp/Anagram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Anagram.cpp -------------------------------------------------------------------------------- /Cpp/Arrays/1DArrayInto2D Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Arrays/1DArrayInto2D Array.cpp -------------------------------------------------------------------------------- /Cpp/Arrays/3Sum_Closest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Arrays/3Sum_Closest.cpp -------------------------------------------------------------------------------- /Cpp/Arrays/4 Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Arrays/4 Sum.cpp -------------------------------------------------------------------------------- /Cpp/Arrays/Find_The_Highest_Altitude.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Arrays/Find_The_Highest_Altitude.cpp -------------------------------------------------------------------------------- /Cpp/Arrays/TowerOfHanoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Arrays/TowerOfHanoi.cpp -------------------------------------------------------------------------------- /Cpp/Arrays/best_time_to_buy_and_sell_stock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Arrays/best_time_to_buy_and_sell_stock.cpp -------------------------------------------------------------------------------- /Cpp/Arrays/cricket_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Arrays/cricket_game.cpp -------------------------------------------------------------------------------- /Cpp/Arrays/generateSubarrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Arrays/generateSubarrays.cpp -------------------------------------------------------------------------------- /Cpp/Arrays/kadanes_algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Arrays/kadanes_algo.cpp -------------------------------------------------------------------------------- /Cpp/Arrays/maxSumSubarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Arrays/maxSumSubarray.cpp -------------------------------------------------------------------------------- /Cpp/Arrays/rearrangeArrayAlternatively.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Arrays/rearrangeArrayAlternatively.cpp -------------------------------------------------------------------------------- /Cpp/Arrays/trappingRainwater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Arrays/trappingRainwater.cpp -------------------------------------------------------------------------------- /Cpp/Basics/callByReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Basics/callByReference.cpp -------------------------------------------------------------------------------- /Cpp/Basics/callByReference.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Basics/callByReference.exe -------------------------------------------------------------------------------- /Cpp/Basics/fun_overloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Basics/fun_overloading.cpp -------------------------------------------------------------------------------- /Cpp/Basics/fun_overloading.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Basics/fun_overloading.exe -------------------------------------------------------------------------------- /Cpp/Basics/multilevel_inheritance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Basics/multilevel_inheritance.cpp -------------------------------------------------------------------------------- /Cpp/BinarySearchTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/BinarySearchTree.cpp -------------------------------------------------------------------------------- /Cpp/Competitions/Google Kick Start/Kickstart(round G).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Competitions/Google Kick Start/Kickstart(round G).cpp -------------------------------------------------------------------------------- /Cpp/Competitions/Google Kick Start/googlekickstart_Festival.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Competitions/Google Kick Start/googlekickstart_Festival.cpp -------------------------------------------------------------------------------- /Cpp/ConnectedComponents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/ConnectedComponents.cpp -------------------------------------------------------------------------------- /Cpp/Dynamic Programming/DP_Knapsack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Dynamic Programming/DP_Knapsack.cpp -------------------------------------------------------------------------------- /Cpp/Dynamic Programming/ShortestCommonSupersequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Dynamic Programming/ShortestCommonSupersequence.cpp -------------------------------------------------------------------------------- /Cpp/Dynamic Programming/longest_common_subsequence_using_dp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Dynamic Programming/longest_common_subsequence_using_dp.cpp -------------------------------------------------------------------------------- /Cpp/Dynamic Programming/palindrome_partitioning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Dynamic Programming/palindrome_partitioning.cpp -------------------------------------------------------------------------------- /Cpp/Dynamic Programming/rod_cutting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Dynamic Programming/rod_cutting.cpp -------------------------------------------------------------------------------- /Cpp/Dynamic Programming/subset_sum_dp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Dynamic Programming/subset_sum_dp.cpp -------------------------------------------------------------------------------- /Cpp/Dynamic Programming/unbounded_knapsack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Dynamic Programming/unbounded_knapsack.cpp -------------------------------------------------------------------------------- /Cpp/HeapSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/HeapSort.cpp -------------------------------------------------------------------------------- /Cpp/Linkedlist/Check_Palinromic_LinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Linkedlist/Check_Palinromic_LinkedList.cpp -------------------------------------------------------------------------------- /Cpp/Linkedlist/Delete_Middle_Of_LINKED LIST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Linkedlist/Delete_Middle_Of_LINKED LIST.cpp -------------------------------------------------------------------------------- /Cpp/Linkedlist/Music_Player using Linked List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Linkedlist/Music_Player using Linked List.cpp -------------------------------------------------------------------------------- /Cpp/Linkedlist/palindromic_linked_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Linkedlist/palindromic_linked_list.cpp -------------------------------------------------------------------------------- /Cpp/Longest Consecutive 1s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Longest Consecutive 1s.cpp -------------------------------------------------------------------------------- /Cpp/Maths/Armstrong Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Maths/Armstrong Number.cpp -------------------------------------------------------------------------------- /Cpp/Maths/Fibonacci number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Maths/Fibonacci number.cpp -------------------------------------------------------------------------------- /Cpp/Maths/Greatest Common Divident.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Maths/Greatest Common Divident.cpp -------------------------------------------------------------------------------- /Cpp/Maths/Reverse_a_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Maths/Reverse_a_number.cpp -------------------------------------------------------------------------------- /Cpp/Maths/SwapOf2Num.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Maths/SwapOf2Num.cpp -------------------------------------------------------------------------------- /Cpp/Maths/SwapOf2Num.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Maths/SwapOf2Num.exe -------------------------------------------------------------------------------- /Cpp/Maths/catalan_numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Maths/catalan_numbers.cpp -------------------------------------------------------------------------------- /Cpp/Maths/check-niven-num.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Maths/check-niven-num.cpp -------------------------------------------------------------------------------- /Cpp/MatrixSorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/MatrixSorting.cpp -------------------------------------------------------------------------------- /Cpp/QueueUsingLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/QueueUsingLL.cpp -------------------------------------------------------------------------------- /Cpp/Rat_Maze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Rat_Maze.cpp -------------------------------------------------------------------------------- /Cpp/Recursion/josphus_problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Recursion/josphus_problem.cpp -------------------------------------------------------------------------------- /Cpp/Reverse_linkedlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Reverse_linkedlist.cpp -------------------------------------------------------------------------------- /Cpp/STL and Templates/DequeueSTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/STL and Templates/DequeueSTL.cpp -------------------------------------------------------------------------------- /Cpp/STL and Templates/QueueSTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/STL and Templates/QueueSTL.cpp -------------------------------------------------------------------------------- /Cpp/STL and Templates/TEMPLATE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/STL and Templates/TEMPLATE.cpp -------------------------------------------------------------------------------- /Cpp/STL and Templates/priority_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/STL and Templates/priority_queue.cpp -------------------------------------------------------------------------------- /Cpp/Searching/BinarySearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Searching/BinarySearch.cpp -------------------------------------------------------------------------------- /Cpp/Searching/Find First and Last Position of Element in Sorted Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Searching/Find First and Last Position of Element in Sorted Array.cpp -------------------------------------------------------------------------------- /Cpp/Searching/LinearSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Searching/LinearSearch.cpp -------------------------------------------------------------------------------- /Cpp/Searching/find-first-and-last-position-of-element-in-sorted-array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Searching/find-first-and-last-position-of-element-in-sorted-array.cpp -------------------------------------------------------------------------------- /Cpp/SelectionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/SelectionSort.cpp -------------------------------------------------------------------------------- /Cpp/Snake & Ladder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Snake & Ladder.cpp -------------------------------------------------------------------------------- /Cpp/Sorting/Heap Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Sorting/Heap Sort.cpp -------------------------------------------------------------------------------- /Cpp/Sorting/Insertion_Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Sorting/Insertion_Sort.cpp -------------------------------------------------------------------------------- /Cpp/Sorting/MergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Sorting/MergeSort.cpp -------------------------------------------------------------------------------- /Cpp/Sorting/QuickSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Sorting/QuickSort.cpp -------------------------------------------------------------------------------- /Cpp/Sorting/Timsort/Timsort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Sorting/Timsort/Timsort.txt -------------------------------------------------------------------------------- /Cpp/Sorting/Timsort/Timsort_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Sorting/Timsort/Timsort_analysis.png -------------------------------------------------------------------------------- /Cpp/Sorting/Timsort/timsort_cpp_implementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Sorting/Timsort/timsort_cpp_implementation.cpp -------------------------------------------------------------------------------- /Cpp/Sorting/Timsort/timsort_python_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Sorting/Timsort/timsort_python_implementation.py -------------------------------------------------------------------------------- /Cpp/Sorting/bubbleSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Sorting/bubbleSort.cpp -------------------------------------------------------------------------------- /Cpp/Sorting/bucketSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Sorting/bucketSort.cpp -------------------------------------------------------------------------------- /Cpp/Sorting/selectionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Sorting/selectionSort.cpp -------------------------------------------------------------------------------- /Cpp/Sorting/tsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Sorting/tsort.cpp -------------------------------------------------------------------------------- /Cpp/SpiralMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/SpiralMatrix.cpp -------------------------------------------------------------------------------- /Cpp/Stacks and Queues/Bracket_Balancing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Stacks and Queues/Bracket_Balancing.cpp -------------------------------------------------------------------------------- /Cpp/Stacks and Queues/Checking_Balanced_Parenthesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Stacks and Queues/Checking_Balanced_Parenthesis.cpp -------------------------------------------------------------------------------- /Cpp/Stacks and Queues/rain_water_trapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Stacks and Queues/rain_water_trapping.cpp -------------------------------------------------------------------------------- /Cpp/Strings/Length of Last Word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Strings/Length of Last Word.cpp -------------------------------------------------------------------------------- /Cpp/Strings/permutationsOfStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/Strings/permutationsOfStrings.cpp -------------------------------------------------------------------------------- /Cpp/Strings/plaindrome_ll.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cpp/connected_components.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/connected_components.cpp -------------------------------------------------------------------------------- /Cpp/dequeSTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/dequeSTL.cpp -------------------------------------------------------------------------------- /Cpp/integer-to-english-words.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/integer-to-english-words.md -------------------------------------------------------------------------------- /Cpp/kadane_algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/kadane_algo.cpp -------------------------------------------------------------------------------- /Cpp/partition_equal_subset_sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/partition_equal_subset_sum.cpp -------------------------------------------------------------------------------- /Cpp/permutationOfTheInputStringUsingRecursion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/permutationOfTheInputStringUsingRecursion.cpp -------------------------------------------------------------------------------- /Cpp/queueSTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/queueSTL.cpp -------------------------------------------------------------------------------- /Cpp/quick_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/quick_sort.cpp -------------------------------------------------------------------------------- /Cpp/radixSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/radixSort.cpp -------------------------------------------------------------------------------- /Cpp/search_element_in_row_column_sorted_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/search_element_in_row_column_sorted_matrix.cpp -------------------------------------------------------------------------------- /Cpp/setSTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Cpp/setSTL.cpp -------------------------------------------------------------------------------- /Java/Arrays/Arranging_Coins.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Java/Arrays/Arranging_Coins.java -------------------------------------------------------------------------------- /Java/Arrays/ArrayInputLoop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Java/Arrays/ArrayInputLoop.java -------------------------------------------------------------------------------- /Java/Arrays/Rotate2DArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Java/Arrays/Rotate2DArray.java -------------------------------------------------------------------------------- /Java/Arrays/Search_in_Rotated_Sorted_Array.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Java/Arrays/Search_in_Rotated_Sorted_Array.java -------------------------------------------------------------------------------- /Java/Arrays/WaveTraversal2DArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Java/Arrays/WaveTraversal2DArray.java -------------------------------------------------------------------------------- /Java/Binary Search/binarysearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Java/Binary Search/binarysearch.java -------------------------------------------------------------------------------- /Java/CircularLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Java/CircularLinkedList.java -------------------------------------------------------------------------------- /Java/Crypto/Push Zeros to end.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Java/Crypto/Push Zeros to end.java -------------------------------------------------------------------------------- /Java/Crypto/crytohider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Java/Crypto/crytohider.java -------------------------------------------------------------------------------- /Java/Sorting Algorithms/MergeSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Java/Sorting Algorithms/MergeSort.java -------------------------------------------------------------------------------- /Java/Stacks and Queues/deque_datasructure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Java/Stacks and Queues/deque_datasructure.java -------------------------------------------------------------------------------- /Java/Swap Function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Java/Swap Function -------------------------------------------------------------------------------- /Java/Trapping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Java/Trapping.java -------------------------------------------------------------------------------- /JavaScript/ToastNotification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/JavaScript/ToastNotification.html -------------------------------------------------------------------------------- /JavaScript/javascript calculator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/JavaScript/javascript calculator.html -------------------------------------------------------------------------------- /JavaScript/javascript clock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/JavaScript/javascript clock.html -------------------------------------------------------------------------------- /Kubernetes/hello-world.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Kubernetes/hello-world.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/LICENSE -------------------------------------------------------------------------------- /Python/BucketSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/BucketSort.py -------------------------------------------------------------------------------- /Python/Create Best_time_to_buy_and_sell_stocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/Create Best_time_to_buy_and_sell_stocks.py -------------------------------------------------------------------------------- /Python/HRSimpleArraySum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/HRSimpleArraySum.py -------------------------------------------------------------------------------- /Python/HeapSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/HeapSort.py -------------------------------------------------------------------------------- /Python/Infix to Postfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/Infix to Postfix.py -------------------------------------------------------------------------------- /Python/LargeSmallSum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/LargeSmallSum.py -------------------------------------------------------------------------------- /Python/Next Greater Element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/Next Greater Element.py -------------------------------------------------------------------------------- /Python/PrioQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/PrioQueue.cpp -------------------------------------------------------------------------------- /Python/counting_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/counting_words.py -------------------------------------------------------------------------------- /Python/electricity bill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/electricity bill.py -------------------------------------------------------------------------------- /Python/palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/palindrome.py -------------------------------------------------------------------------------- /Python/password_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/password_generator.py -------------------------------------------------------------------------------- /Python/password_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/password_validator.py -------------------------------------------------------------------------------- /Python/qrcode_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/qrcode_generator.py -------------------------------------------------------------------------------- /Python/string_palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/string_palindrome.py -------------------------------------------------------------------------------- /Python/tictactoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/tictactoe.py -------------------------------------------------------------------------------- /Python/turtlegraphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/Python/turtlegraphics.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/README.md -------------------------------------------------------------------------------- /go/hello_world/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/go/hello_world/go.mod -------------------------------------------------------------------------------- /go/hello_world/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/go/hello_world/hello.go -------------------------------------------------------------------------------- /go/switch/go.mod: -------------------------------------------------------------------------------- 1 | module shan-shaji.github.io/switch 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /go/switch/switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamilthomas8/hacktoberfest2021-easy/HEAD/go/switch/switch.go --------------------------------------------------------------------------------