├── .DS_Store ├── 3Sum.cpp ├── Aaron’s Quest IV While Moses Was Away └── Build │ ├── .editorconfig │ ├── .gitignore │ ├── Checks.js │ ├── Compress.js │ ├── Config.js │ ├── README.md │ ├── appbundle.js │ ├── config_project.js │ ├── eslint.js │ ├── exec.js │ ├── gulpish.js │ ├── gulpish_bundle.js │ ├── gulpish_tasks.js │ ├── imgproc.js │ ├── index.js │ ├── jsjam22.sublime-project │ ├── json5.js │ ├── package-lock.json │ ├── package.json │ ├── resize.js │ ├── spritesheet.js │ ├── ss1.png │ ├── ss2.png │ ├── typescript.js │ ├── uglify.js │ ├── warnmatch.js │ └── web_fsbuild.js ├── C++ ├── 3Sum.cpp ├── Arithmetic Number.cpp ├── Atm _Simulator │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── atm.cpp │ └── atm.exe ├── BFS and DFS traversal of a graph using adjacency list.cpp ├── BotClean Stochastic ├── Bucket_sort ├── Floyd’s Cycle Detection Algorithm to find the start of the loop.cpp ├── Josephus.cpp ├── KMP_algorithm.cpp ├── Kadane.cpp ├── MaxXor.cpp ├── Maximum Length of Repeated Subarray.cpp ├── Median_of_two_sorted_arrays.cpp ├── Merge Nodes in Between Zeros ├── Palindrome Free Strings.cpp ├── PhoneBook ├── Quick_Sort_Added ├── Remove one element.cpp ├── Reverse_nodes_in_k_groups.cpp ├── Rotate_Image.cpp ├── Rotting Oranges.cpp ├── Single Number.cpp ├── Sort an array of 0s, 1s and 2s.cpp ├── Sudoku_solver.cpp ├── a.exe ├── cashflow_minimizer.cpp ├── floyds.cpp ├── heap.cpp ├── mergeInterval.cpp ├── mergeoverlappingintervals.cpp ├── mergesort.cpp ├── minimum_number_of_jumps.cpp ├── nqueens.cpp ├── spiral_matrix └── topologicalsort.cpp ├── Cpp ├── Add two Binary numbers.cpp ├── Array_As_ADT.c ├── Check_if_arrays_are_equal_or_not.cpp ├── CycleDetection_InLinkedList.cpp ├── Implementation of meerge sort │ ├── mergesort.cpp │ └── readme.md ├── Lexicographically smallest string.cpp ├── Longest valid Parentheses.cpp ├── MergeTwoBst.cpp ├── MergeTwoSortedList.cpp ├── MinimizeHeight2.cpp ├── MinimizeHeight2.exe ├── Number Of Islands.cpp ├── Quicksort │ ├── README.md │ ├── quicksort.cpp │ └── quicksort.exe ├── Report Card making System .CPP ├── Search │ ├── Binary Search.cpp │ ├── Linear Search.cpp │ ├── searching.cpp │ └── ternary_search.cpp ├── Shortest Distance in a Binary Maze.cpp ├── String Game.cpp ├── bookshop_management_system.cpp ├── countSort.cpp ├── majority.cpp ├── minesweeper_game.cpp ├── minesweeper_game.exe ├── regular expression matching.cpp └── sort012.cpp ├── HtmlGame └── CarGame.html ├── Javascript projects └── Voice operated calculator │ ├── B.jpg │ ├── Instructions.css │ ├── Instructions.html │ ├── M1.jpg │ ├── S (1).html │ ├── S.css │ ├── S.js │ ├── back.jpg │ └── debug.log ├── LICENSE.md ├── Python ├── 2048game.py ├── 21number.py ├── AudioBook.py ├── C.I_calculator.py ├── CatchTheBall.py ├── Created_tower_of_hanoi.py ├── Faulty_Calculator.py ├── Health_Management_System.py ├── Implementation of quick sort ├── Leap_Year.py ├── MergeTwoBst.py ├── Merge_K_Sorted_List.py ├── Minimize_the_heights_II.py ├── Print the Fibonacci sequence ├── Reversing_the_equation.py ├── Simple_calculator.py ├── Tower of Hanoi.py ├── Tower of Hanoi │ ├── Tower of Hanoi.md │ └── towerofhanoi.py ├── Turtle.py ├── acronym.py ├── age_calculator.py ├── analogClock.py ├── captain-shield.py ├── character_rangoli.py ├── countdowntimer.py ├── digitalclock.py ├── eggCatcher.py ├── fractalDraw.py ├── insertion_sort.py ├── number_guessing.py ├── pPrinting_matrix_in_spiral.py ├── pet.py ├── pokemon.py ├── price_email.py ├── quizGame.py ├── rangoli.py ├── roadCrossing Game.py ├── rockpaperscissorgame.py ├── snek.py ├── tictac.py └── weightcalc.py └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/.DS_Store -------------------------------------------------------------------------------- /3Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/3Sum.cpp -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/.editorconfig -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/.gitignore -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/Checks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/Checks.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/Compress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/Compress.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/Config.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/README.md -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/appbundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/appbundle.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/config_project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/config_project.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/eslint.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/exec.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/gulpish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/gulpish.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/gulpish_bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/gulpish_bundle.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/gulpish_tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/gulpish_tasks.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/imgproc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/imgproc.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/index.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/jsjam22.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/jsjam22.sublime-project -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/json5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/json5.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/package-lock.json -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/package.json -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/resize.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/spritesheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/spritesheet.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/ss1.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/ss2.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/typescript.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/uglify.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/warnmatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/warnmatch.js -------------------------------------------------------------------------------- /Aaron’s Quest IV While Moses Was Away/Build/web_fsbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Aaron’s Quest IV While Moses Was Away/Build/web_fsbuild.js -------------------------------------------------------------------------------- /C++/3Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/3Sum.cpp -------------------------------------------------------------------------------- /C++/Arithmetic Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Arithmetic Number.cpp -------------------------------------------------------------------------------- /C++/Atm _Simulator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Atm _Simulator/.gitignore -------------------------------------------------------------------------------- /C++/Atm _Simulator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Atm _Simulator/Makefile -------------------------------------------------------------------------------- /C++/Atm _Simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Atm _Simulator/README.md -------------------------------------------------------------------------------- /C++/Atm _Simulator/atm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Atm _Simulator/atm.cpp -------------------------------------------------------------------------------- /C++/Atm _Simulator/atm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Atm _Simulator/atm.exe -------------------------------------------------------------------------------- /C++/BFS and DFS traversal of a graph using adjacency list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/BFS and DFS traversal of a graph using adjacency list.cpp -------------------------------------------------------------------------------- /C++/BotClean Stochastic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/BotClean Stochastic -------------------------------------------------------------------------------- /C++/Bucket_sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Bucket_sort -------------------------------------------------------------------------------- /C++/Floyd’s Cycle Detection Algorithm to find the start of the loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Floyd’s Cycle Detection Algorithm to find the start of the loop.cpp -------------------------------------------------------------------------------- /C++/Josephus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Josephus.cpp -------------------------------------------------------------------------------- /C++/KMP_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/KMP_algorithm.cpp -------------------------------------------------------------------------------- /C++/Kadane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Kadane.cpp -------------------------------------------------------------------------------- /C++/MaxXor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/MaxXor.cpp -------------------------------------------------------------------------------- /C++/Maximum Length of Repeated Subarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Maximum Length of Repeated Subarray.cpp -------------------------------------------------------------------------------- /C++/Median_of_two_sorted_arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Median_of_two_sorted_arrays.cpp -------------------------------------------------------------------------------- /C++/Merge Nodes in Between Zeros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Merge Nodes in Between Zeros -------------------------------------------------------------------------------- /C++/Palindrome Free Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Palindrome Free Strings.cpp -------------------------------------------------------------------------------- /C++/PhoneBook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/PhoneBook -------------------------------------------------------------------------------- /C++/Quick_Sort_Added: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Quick_Sort_Added -------------------------------------------------------------------------------- /C++/Remove one element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Remove one element.cpp -------------------------------------------------------------------------------- /C++/Reverse_nodes_in_k_groups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Reverse_nodes_in_k_groups.cpp -------------------------------------------------------------------------------- /C++/Rotate_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Rotate_Image.cpp -------------------------------------------------------------------------------- /C++/Rotting Oranges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Rotting Oranges.cpp -------------------------------------------------------------------------------- /C++/Single Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Single Number.cpp -------------------------------------------------------------------------------- /C++/Sort an array of 0s, 1s and 2s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/Sort an array of 0s, 1s and 2s.cpp -------------------------------------------------------------------------------- /C++/Sudoku_solver.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C++/a.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/a.exe -------------------------------------------------------------------------------- /C++/cashflow_minimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/cashflow_minimizer.cpp -------------------------------------------------------------------------------- /C++/floyds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/floyds.cpp -------------------------------------------------------------------------------- /C++/heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/heap.cpp -------------------------------------------------------------------------------- /C++/mergeInterval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/mergeInterval.cpp -------------------------------------------------------------------------------- /C++/mergeoverlappingintervals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/mergeoverlappingintervals.cpp -------------------------------------------------------------------------------- /C++/mergesort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/mergesort.cpp -------------------------------------------------------------------------------- /C++/minimum_number_of_jumps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/minimum_number_of_jumps.cpp -------------------------------------------------------------------------------- /C++/nqueens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/nqueens.cpp -------------------------------------------------------------------------------- /C++/spiral_matrix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/spiral_matrix -------------------------------------------------------------------------------- /C++/topologicalsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/C++/topologicalsort.cpp -------------------------------------------------------------------------------- /Cpp/Add two Binary numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Add two Binary numbers.cpp -------------------------------------------------------------------------------- /Cpp/Array_As_ADT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Array_As_ADT.c -------------------------------------------------------------------------------- /Cpp/Check_if_arrays_are_equal_or_not.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Check_if_arrays_are_equal_or_not.cpp -------------------------------------------------------------------------------- /Cpp/CycleDetection_InLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/CycleDetection_InLinkedList.cpp -------------------------------------------------------------------------------- /Cpp/Implementation of meerge sort/mergesort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Implementation of meerge sort/mergesort.cpp -------------------------------------------------------------------------------- /Cpp/Implementation of meerge sort/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Implementation of meerge sort/readme.md -------------------------------------------------------------------------------- /Cpp/Lexicographically smallest string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Lexicographically smallest string.cpp -------------------------------------------------------------------------------- /Cpp/Longest valid Parentheses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Longest valid Parentheses.cpp -------------------------------------------------------------------------------- /Cpp/MergeTwoBst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/MergeTwoBst.cpp -------------------------------------------------------------------------------- /Cpp/MergeTwoSortedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/MergeTwoSortedList.cpp -------------------------------------------------------------------------------- /Cpp/MinimizeHeight2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/MinimizeHeight2.cpp -------------------------------------------------------------------------------- /Cpp/MinimizeHeight2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/MinimizeHeight2.exe -------------------------------------------------------------------------------- /Cpp/Number Of Islands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Number Of Islands.cpp -------------------------------------------------------------------------------- /Cpp/Quicksort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Quicksort/README.md -------------------------------------------------------------------------------- /Cpp/Quicksort/quicksort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Quicksort/quicksort.cpp -------------------------------------------------------------------------------- /Cpp/Quicksort/quicksort.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Quicksort/quicksort.exe -------------------------------------------------------------------------------- /Cpp/Report Card making System .CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Report Card making System .CPP -------------------------------------------------------------------------------- /Cpp/Search/Binary Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Search/Binary Search.cpp -------------------------------------------------------------------------------- /Cpp/Search/Linear Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Search/Linear Search.cpp -------------------------------------------------------------------------------- /Cpp/Search/searching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Search/searching.cpp -------------------------------------------------------------------------------- /Cpp/Search/ternary_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Search/ternary_search.cpp -------------------------------------------------------------------------------- /Cpp/Shortest Distance in a Binary Maze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/Shortest Distance in a Binary Maze.cpp -------------------------------------------------------------------------------- /Cpp/String Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/String Game.cpp -------------------------------------------------------------------------------- /Cpp/bookshop_management_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/bookshop_management_system.cpp -------------------------------------------------------------------------------- /Cpp/countSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/countSort.cpp -------------------------------------------------------------------------------- /Cpp/majority.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/majority.cpp -------------------------------------------------------------------------------- /Cpp/minesweeper_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/minesweeper_game.cpp -------------------------------------------------------------------------------- /Cpp/minesweeper_game.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/minesweeper_game.exe -------------------------------------------------------------------------------- /Cpp/regular expression matching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/regular expression matching.cpp -------------------------------------------------------------------------------- /Cpp/sort012.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Cpp/sort012.cpp -------------------------------------------------------------------------------- /HtmlGame/CarGame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/HtmlGame/CarGame.html -------------------------------------------------------------------------------- /Javascript projects/Voice operated calculator/B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Javascript projects/Voice operated calculator/B.jpg -------------------------------------------------------------------------------- /Javascript projects/Voice operated calculator/Instructions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Javascript projects/Voice operated calculator/Instructions.css -------------------------------------------------------------------------------- /Javascript projects/Voice operated calculator/Instructions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Javascript projects/Voice operated calculator/Instructions.html -------------------------------------------------------------------------------- /Javascript projects/Voice operated calculator/M1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Javascript projects/Voice operated calculator/M1.jpg -------------------------------------------------------------------------------- /Javascript projects/Voice operated calculator/S (1).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Javascript projects/Voice operated calculator/S (1).html -------------------------------------------------------------------------------- /Javascript projects/Voice operated calculator/S.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Javascript projects/Voice operated calculator/S.css -------------------------------------------------------------------------------- /Javascript projects/Voice operated calculator/S.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Javascript projects/Voice operated calculator/S.js -------------------------------------------------------------------------------- /Javascript projects/Voice operated calculator/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Javascript projects/Voice operated calculator/back.jpg -------------------------------------------------------------------------------- /Javascript projects/Voice operated calculator/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Javascript projects/Voice operated calculator/debug.log -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Python/2048game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/2048game.py -------------------------------------------------------------------------------- /Python/21number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/21number.py -------------------------------------------------------------------------------- /Python/AudioBook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/AudioBook.py -------------------------------------------------------------------------------- /Python/C.I_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/C.I_calculator.py -------------------------------------------------------------------------------- /Python/CatchTheBall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/CatchTheBall.py -------------------------------------------------------------------------------- /Python/Created_tower_of_hanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Created_tower_of_hanoi.py -------------------------------------------------------------------------------- /Python/Faulty_Calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Faulty_Calculator.py -------------------------------------------------------------------------------- /Python/Health_Management_System.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Health_Management_System.py -------------------------------------------------------------------------------- /Python/Implementation of quick sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Implementation of quick sort -------------------------------------------------------------------------------- /Python/Leap_Year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Leap_Year.py -------------------------------------------------------------------------------- /Python/MergeTwoBst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/MergeTwoBst.py -------------------------------------------------------------------------------- /Python/Merge_K_Sorted_List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Merge_K_Sorted_List.py -------------------------------------------------------------------------------- /Python/Minimize_the_heights_II.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Minimize_the_heights_II.py -------------------------------------------------------------------------------- /Python/Print the Fibonacci sequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Print the Fibonacci sequence -------------------------------------------------------------------------------- /Python/Reversing_the_equation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Reversing_the_equation.py -------------------------------------------------------------------------------- /Python/Simple_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Simple_calculator.py -------------------------------------------------------------------------------- /Python/Tower of Hanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Tower of Hanoi.py -------------------------------------------------------------------------------- /Python/Tower of Hanoi/Tower of Hanoi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Tower of Hanoi/Tower of Hanoi.md -------------------------------------------------------------------------------- /Python/Tower of Hanoi/towerofhanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Tower of Hanoi/towerofhanoi.py -------------------------------------------------------------------------------- /Python/Turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/Turtle.py -------------------------------------------------------------------------------- /Python/acronym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/acronym.py -------------------------------------------------------------------------------- /Python/age_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/age_calculator.py -------------------------------------------------------------------------------- /Python/analogClock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/analogClock.py -------------------------------------------------------------------------------- /Python/captain-shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/captain-shield.py -------------------------------------------------------------------------------- /Python/character_rangoli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/character_rangoli.py -------------------------------------------------------------------------------- /Python/countdowntimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/countdowntimer.py -------------------------------------------------------------------------------- /Python/digitalclock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/digitalclock.py -------------------------------------------------------------------------------- /Python/eggCatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/eggCatcher.py -------------------------------------------------------------------------------- /Python/fractalDraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/fractalDraw.py -------------------------------------------------------------------------------- /Python/insertion_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/insertion_sort.py -------------------------------------------------------------------------------- /Python/number_guessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/number_guessing.py -------------------------------------------------------------------------------- /Python/pPrinting_matrix_in_spiral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/pPrinting_matrix_in_spiral.py -------------------------------------------------------------------------------- /Python/pet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/pet.py -------------------------------------------------------------------------------- /Python/pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/pokemon.py -------------------------------------------------------------------------------- /Python/price_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/price_email.py -------------------------------------------------------------------------------- /Python/quizGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/quizGame.py -------------------------------------------------------------------------------- /Python/rangoli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/rangoli.py -------------------------------------------------------------------------------- /Python/roadCrossing Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/roadCrossing Game.py -------------------------------------------------------------------------------- /Python/rockpaperscissorgame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/rockpaperscissorgame.py -------------------------------------------------------------------------------- /Python/snek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/snek.py -------------------------------------------------------------------------------- /Python/tictac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/tictac.py -------------------------------------------------------------------------------- /Python/weightcalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/Python/weightcalc.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanKumar21/python-cpp-html-programs-projects/HEAD/README.md --------------------------------------------------------------------------------