├── .github └── ISSUE_TEMPLATE │ └── custom.md ├── .vscode ├── settings.json └── tasks.json ├── 1.cpp ├── 3rd_nov.cpp ├── BMICalculator.cpp ├── C++ ├── Balanced Brackets.cpp ├── BeginerFriendly.cpp ├── BeginerFriendly.exe ├── C++ program for Dijkstra's single source shortest path ├── DP_Series_Longest_common_subsequence ├── DP_Series_Rod_Cutting ├── DataTypes.cpp ├── Function.cpp ├── HelloWorld.cpp ├── HreturnPermutationOfString.cpp ├── LinkedList │ ├── CircularLL.cpp │ ├── DoublyLL.cpp │ └── SinglyLL.cpp ├── Loops.cpp ├── Recursion.cpp ├── StackImplementation.cpp ├── Trees │ ├── AVL.cpp │ ├── AVL.exe │ ├── BinarySearchTree.cpp │ └── BinaryTree.cpp ├── binary_search.cpp ├── bitwise xor of all pairings ├── kth_ele_of_array.cpp └── permutation.cpp ├── C ├── Linked List │ └── DLL.c ├── Queue │ └── Queue_Using_Array.c ├── QuickSort ├── QuickSort.c ├── Stack │ └── Stack_using_Array.c ├── bubblesort.c └── linearsearch.c ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Calculator └── calculator.py ├── Contribution list.md ├── DS ├── arrays │ ├── .vscode │ │ └── settings.json │ ├── set_matrix_zero.cpp │ └── set_matrix_zero.exe ├── binary search trees │ └── intro.cpp ├── binary trees │ ├── .vscode │ │ └── settings.json │ ├── intro.cpp │ └── intro.exe ├── linked lists │ ├── check_loop_present.cpp │ ├── cll.cpp │ ├── cll.exe │ ├── dll.cpp │ ├── dll.exe │ ├── ll.cpp │ ├── ll.exe │ └── middle_of_linked_list.cpp ├── queue │ ├── .vscode │ │ └── settings.json │ ├── arr_implementation.cpp │ ├── arr_implementation.exe │ ├── circular_q.cpp │ ├── circular_q.exe │ └── ll_implementation.cpp ├── sliding window │ └── fruit_basket_function.cpp └── stacks │ ├── .vscode │ └── settings.json │ ├── balanced_parenthesis.cpp │ ├── balanced_parenthesis.exe │ ├── evaluate_postfix.cpp │ ├── insert_at_bottom_stack.cpp │ ├── insert_at_bottom_stack.exe │ ├── occurence_of_annagrams.cpp │ ├── reverse_stack.cpp │ ├── reverse_stack.exe │ ├── stack.cpp │ ├── stack.exe │ ├── stack_using_ll.cpp │ ├── stack_using_ll.exe │ ├── two_stack.cpp │ └── two_stack.exe ├── DSA algoriths ├── 3maxmin.c ├── CycleInUndirectedGraph.cpp ├── DSA.md.txt ├── KMP.cpp ├── MergeTwoSortedLinkedList.cpp ├── Number_of_Islands.cpp ├── SelectionSort.cpp ├── activitySelection.c ├── demonstratethebubblesort.cpp ├── infix_to_postfix.c ├── kadane's algo ├── mergeSort.cpp └── palindrome.cpp ├── Graphs ├── BFS.cpp ├── DFS.cpp ├── Disjisktra.cpp ├── Tarjan_Algorithm.cpp ├── check_star_graph.cpp └── kruskals.cpp ├── HTML and CSS ├── HTML and CSS Projects ├── .DS_Store ├── ColourFlipper │ ├── README.md │ ├── app.js │ ├── index.html │ └── style.css ├── Digital Clock │ ├── app.js │ └── index.html ├── Quiz │ ├── app.js │ └── index.html ├── Responsive Contact Us Page │ ├── bg.jpg │ ├── index.html │ └── style.css ├── Santa Animation │ ├── .DS_Store │ ├── santa.html │ └── sprites │ │ └── santa.png ├── Shape RPG Game │ ├── Controller.js │ ├── Enemy.js │ ├── Level.js │ ├── Menu.js │ ├── Player.js │ ├── index.html │ └── index.js ├── To-Do-List │ ├── app.js │ ├── index.html │ └── styles.css ├── blackjack game │ ├── game.css │ ├── game.html │ └── game.js ├── grocery cart │ ├── README.md │ ├── app.js │ ├── index.html │ └── styles.css ├── html css js │ ├── README.md │ ├── img │ │ ├── Apple-logo-black-and-white.png │ │ ├── akar-icons_arrow-down.png │ │ ├── akar-icons_battery-charging (1).png │ │ ├── akar-icons_battery-charging.png │ │ ├── bi_arrow-down-short.png │ │ ├── bi_camera (1).png │ │ ├── bi_camera.png │ │ ├── bi_phone (1).png │ │ ├── bi_phone.png │ │ ├── ion_hardware-chip-outline.png │ │ └── png-clipart-iphone-x-front-view-apple__-iphone.png │ ├── index.html │ └── style.css ├── navbar │ ├── README.md │ ├── app.js │ ├── index.html │ └── style.css └── portfolio │ ├── Images │ ├── andy-vult-t-WkBEOQngs-unsplash.jpg │ └── simplee.jpg │ ├── index.html │ ├── script.js │ └── style.css ├── Hacktoberfest ├── Hello.cpp ├── HprintSubsetOfArray.cpp ├── HreturnAllCodes.cpp ├── HreturnsubsetOfArray.cpp ├── IOT projects └── Smoke Detector │ ├── CktDiagram.png │ ├── Code │ └── Code.ino │ ├── arduiniunojpeg.jpg │ ├── breadboard.jpg │ ├── gasSensor.jpg │ ├── readme.md │ └── temperatureSensor.jpg ├── Leetcode ├── ML Projects └── Minist │ ├── minist training.ipynb │ └── mnist.h5 ├── ML project ├── ML ├── README.md ├── Titanic predictions │ ├── kaggle_titanic_machine_learning_from_disaster (1).ipynb │ ├── sample_submission.csv │ ├── test.csv │ └── train.csv └── heart_disease_predict.py │ ├── README.md │ ├── heart_imp.ipynb │ └── heart_new.csv ├── PHP └── Login │ ├── Readme.md │ ├── change-password.php │ ├── config.php │ ├── index.php │ ├── login.php │ ├── logout.php │ ├── signup.php │ └── sql │ ├── create-database.sql │ └── create-user-table.sql ├── Profile card ├── Profile.html ├── img.jpg └── style.css ├── Python ├── MaxHeap.py ├── km_to_m.py ├── rock_paper_scissors.py ├── shannon_fano.py └── snake-water-gun.py ├── README.md ├── Recursion.cpp ├── Searching-Algo ├── binary_Search.py ├── binarysearch.cpp └── linearsearch.cpp ├── SolveBoggle └── Main.java ├── Sorting ├── .vscode │ ├── c_cpp_properties.json │ ├── launch.json │ └── settings.json ├── HeapSort.cpp ├── HeapSort.exe ├── binary_search.py ├── bubblesort.c ├── bubblesort.exe ├── insertionsort.c ├── insertionsort.exe ├── mergesort.c ├── mergesort.exe ├── quicksort.c ├── quicksort.exe ├── selectionsort.c ├── selectionsort.exe └── shell_sort.py ├── carrental reservecar.cpp ├── countgoodtriplet.cpp ├── eyedoodle.html ├── hacktoberfest technical blogs. ├── html and css learners ├── .vscode │ └── settings.json ├── images │ ├── img1.jpg │ ├── img10.png │ ├── img11.png │ ├── img12.png │ ├── img13.png │ ├── img14.png │ ├── img15.png │ ├── img16.png │ ├── img17.png │ ├── img18.png │ ├── img2.png │ ├── img3.jpg │ ├── img4.jpg │ ├── img5.webp │ ├── img6.png │ ├── img7.png │ ├── img8.png │ ├── img9.png │ └── ss.PNG ├── index.html ├── readme.md └── style.css ├── java ├── HiddenNumber.java └── tictactoe.java ├── javascript ├── palindrome.js ├── reverse.js └── rock paper scissors │ ├── rps.css │ ├── rps.html │ └── rps.js ├── ml beginner learnings ├── population.c ├── postfix_evaluation ├── evaluate_postfix.cpp └── postfix_evaluation.py ├── studentrecordmanagement.cpp ├── swap.c └── voice assistant in python └── jarnet.py /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /1.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /3rd_nov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/3rd_nov.cpp -------------------------------------------------------------------------------- /BMICalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/BMICalculator.cpp -------------------------------------------------------------------------------- /C++/Balanced Brackets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/Balanced Brackets.cpp -------------------------------------------------------------------------------- /C++/BeginerFriendly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/BeginerFriendly.cpp -------------------------------------------------------------------------------- /C++/BeginerFriendly.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/BeginerFriendly.exe -------------------------------------------------------------------------------- /C++/C++ program for Dijkstra's single source shortest path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/C++ program for Dijkstra's single source shortest path -------------------------------------------------------------------------------- /C++/DP_Series_Longest_common_subsequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/DP_Series_Longest_common_subsequence -------------------------------------------------------------------------------- /C++/DP_Series_Rod_Cutting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/DP_Series_Rod_Cutting -------------------------------------------------------------------------------- /C++/DataTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/DataTypes.cpp -------------------------------------------------------------------------------- /C++/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/Function.cpp -------------------------------------------------------------------------------- /C++/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/HelloWorld.cpp -------------------------------------------------------------------------------- /C++/HreturnPermutationOfString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/HreturnPermutationOfString.cpp -------------------------------------------------------------------------------- /C++/LinkedList/CircularLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/LinkedList/CircularLL.cpp -------------------------------------------------------------------------------- /C++/LinkedList/DoublyLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/LinkedList/DoublyLL.cpp -------------------------------------------------------------------------------- /C++/LinkedList/SinglyLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/LinkedList/SinglyLL.cpp -------------------------------------------------------------------------------- /C++/Loops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/Loops.cpp -------------------------------------------------------------------------------- /C++/Recursion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/Recursion.cpp -------------------------------------------------------------------------------- /C++/StackImplementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/StackImplementation.cpp -------------------------------------------------------------------------------- /C++/Trees/AVL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/Trees/AVL.cpp -------------------------------------------------------------------------------- /C++/Trees/AVL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/Trees/AVL.exe -------------------------------------------------------------------------------- /C++/Trees/BinarySearchTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/Trees/BinarySearchTree.cpp -------------------------------------------------------------------------------- /C++/Trees/BinaryTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/Trees/BinaryTree.cpp -------------------------------------------------------------------------------- /C++/binary_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/binary_search.cpp -------------------------------------------------------------------------------- /C++/bitwise xor of all pairings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/bitwise xor of all pairings -------------------------------------------------------------------------------- /C++/kth_ele_of_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/kth_ele_of_array.cpp -------------------------------------------------------------------------------- /C++/permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C++/permutation.cpp -------------------------------------------------------------------------------- /C/Linked List/DLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C/Linked List/DLL.c -------------------------------------------------------------------------------- /C/Queue/Queue_Using_Array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C/Queue/Queue_Using_Array.c -------------------------------------------------------------------------------- /C/QuickSort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C/QuickSort -------------------------------------------------------------------------------- /C/QuickSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C/QuickSort.c -------------------------------------------------------------------------------- /C/Stack/Stack_using_Array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C/Stack/Stack_using_Array.c -------------------------------------------------------------------------------- /C/bubblesort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C/bubblesort.c -------------------------------------------------------------------------------- /C/linearsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/C/linearsearch.c -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Calculator/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Calculator/calculator.py -------------------------------------------------------------------------------- /Contribution list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Contribution list.md -------------------------------------------------------------------------------- /DS/arrays/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/arrays/.vscode/settings.json -------------------------------------------------------------------------------- /DS/arrays/set_matrix_zero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/arrays/set_matrix_zero.cpp -------------------------------------------------------------------------------- /DS/arrays/set_matrix_zero.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/arrays/set_matrix_zero.exe -------------------------------------------------------------------------------- /DS/binary search trees/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/binary search trees/intro.cpp -------------------------------------------------------------------------------- /DS/binary trees/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/binary trees/.vscode/settings.json -------------------------------------------------------------------------------- /DS/binary trees/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/binary trees/intro.cpp -------------------------------------------------------------------------------- /DS/binary trees/intro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/binary trees/intro.exe -------------------------------------------------------------------------------- /DS/linked lists/check_loop_present.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/linked lists/check_loop_present.cpp -------------------------------------------------------------------------------- /DS/linked lists/cll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/linked lists/cll.cpp -------------------------------------------------------------------------------- /DS/linked lists/cll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/linked lists/cll.exe -------------------------------------------------------------------------------- /DS/linked lists/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/linked lists/dll.cpp -------------------------------------------------------------------------------- /DS/linked lists/dll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/linked lists/dll.exe -------------------------------------------------------------------------------- /DS/linked lists/ll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/linked lists/ll.cpp -------------------------------------------------------------------------------- /DS/linked lists/ll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/linked lists/ll.exe -------------------------------------------------------------------------------- /DS/linked lists/middle_of_linked_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/linked lists/middle_of_linked_list.cpp -------------------------------------------------------------------------------- /DS/queue/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/queue/.vscode/settings.json -------------------------------------------------------------------------------- /DS/queue/arr_implementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/queue/arr_implementation.cpp -------------------------------------------------------------------------------- /DS/queue/arr_implementation.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/queue/arr_implementation.exe -------------------------------------------------------------------------------- /DS/queue/circular_q.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/queue/circular_q.cpp -------------------------------------------------------------------------------- /DS/queue/circular_q.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/queue/circular_q.exe -------------------------------------------------------------------------------- /DS/queue/ll_implementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/queue/ll_implementation.cpp -------------------------------------------------------------------------------- /DS/sliding window/fruit_basket_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/sliding window/fruit_basket_function.cpp -------------------------------------------------------------------------------- /DS/stacks/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/.vscode/settings.json -------------------------------------------------------------------------------- /DS/stacks/balanced_parenthesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/balanced_parenthesis.cpp -------------------------------------------------------------------------------- /DS/stacks/balanced_parenthesis.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/balanced_parenthesis.exe -------------------------------------------------------------------------------- /DS/stacks/evaluate_postfix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/evaluate_postfix.cpp -------------------------------------------------------------------------------- /DS/stacks/insert_at_bottom_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/insert_at_bottom_stack.cpp -------------------------------------------------------------------------------- /DS/stacks/insert_at_bottom_stack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/insert_at_bottom_stack.exe -------------------------------------------------------------------------------- /DS/stacks/occurence_of_annagrams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/occurence_of_annagrams.cpp -------------------------------------------------------------------------------- /DS/stacks/reverse_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/reverse_stack.cpp -------------------------------------------------------------------------------- /DS/stacks/reverse_stack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/reverse_stack.exe -------------------------------------------------------------------------------- /DS/stacks/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/stack.cpp -------------------------------------------------------------------------------- /DS/stacks/stack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/stack.exe -------------------------------------------------------------------------------- /DS/stacks/stack_using_ll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/stack_using_ll.cpp -------------------------------------------------------------------------------- /DS/stacks/stack_using_ll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/stack_using_ll.exe -------------------------------------------------------------------------------- /DS/stacks/two_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/two_stack.cpp -------------------------------------------------------------------------------- /DS/stacks/two_stack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DS/stacks/two_stack.exe -------------------------------------------------------------------------------- /DSA algoriths/3maxmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DSA algoriths/3maxmin.c -------------------------------------------------------------------------------- /DSA algoriths/CycleInUndirectedGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DSA algoriths/CycleInUndirectedGraph.cpp -------------------------------------------------------------------------------- /DSA algoriths/DSA.md.txt: -------------------------------------------------------------------------------- 1 | Add Data structures codes and algorithms in this folder. -------------------------------------------------------------------------------- /DSA algoriths/KMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DSA algoriths/KMP.cpp -------------------------------------------------------------------------------- /DSA algoriths/MergeTwoSortedLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DSA algoriths/MergeTwoSortedLinkedList.cpp -------------------------------------------------------------------------------- /DSA algoriths/Number_of_Islands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DSA algoriths/Number_of_Islands.cpp -------------------------------------------------------------------------------- /DSA algoriths/SelectionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DSA algoriths/SelectionSort.cpp -------------------------------------------------------------------------------- /DSA algoriths/activitySelection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DSA algoriths/activitySelection.c -------------------------------------------------------------------------------- /DSA algoriths/demonstratethebubblesort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DSA algoriths/demonstratethebubblesort.cpp -------------------------------------------------------------------------------- /DSA algoriths/infix_to_postfix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DSA algoriths/infix_to_postfix.c -------------------------------------------------------------------------------- /DSA algoriths/kadane's algo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DSA algoriths/kadane's algo -------------------------------------------------------------------------------- /DSA algoriths/mergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DSA algoriths/mergeSort.cpp -------------------------------------------------------------------------------- /DSA algoriths/palindrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/DSA algoriths/palindrome.cpp -------------------------------------------------------------------------------- /Graphs/BFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Graphs/BFS.cpp -------------------------------------------------------------------------------- /Graphs/DFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Graphs/DFS.cpp -------------------------------------------------------------------------------- /Graphs/Disjisktra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Graphs/Disjisktra.cpp -------------------------------------------------------------------------------- /Graphs/Tarjan_Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Graphs/Tarjan_Algorithm.cpp -------------------------------------------------------------------------------- /Graphs/check_star_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Graphs/check_star_graph.cpp -------------------------------------------------------------------------------- /Graphs/kruskals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Graphs/kruskals.cpp -------------------------------------------------------------------------------- /HTML and CSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS -------------------------------------------------------------------------------- /HTML and CSS Projects/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/.DS_Store -------------------------------------------------------------------------------- /HTML and CSS Projects/ColourFlipper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/ColourFlipper/README.md -------------------------------------------------------------------------------- /HTML and CSS Projects/ColourFlipper/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/ColourFlipper/app.js -------------------------------------------------------------------------------- /HTML and CSS Projects/ColourFlipper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/ColourFlipper/index.html -------------------------------------------------------------------------------- /HTML and CSS Projects/ColourFlipper/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/ColourFlipper/style.css -------------------------------------------------------------------------------- /HTML and CSS Projects/Digital Clock/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Digital Clock/app.js -------------------------------------------------------------------------------- /HTML and CSS Projects/Digital Clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Digital Clock/index.html -------------------------------------------------------------------------------- /HTML and CSS Projects/Quiz/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Quiz/app.js -------------------------------------------------------------------------------- /HTML and CSS Projects/Quiz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Quiz/index.html -------------------------------------------------------------------------------- /HTML and CSS Projects/Responsive Contact Us Page/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Responsive Contact Us Page/bg.jpg -------------------------------------------------------------------------------- /HTML and CSS Projects/Responsive Contact Us Page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Responsive Contact Us Page/index.html -------------------------------------------------------------------------------- /HTML and CSS Projects/Responsive Contact Us Page/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Responsive Contact Us Page/style.css -------------------------------------------------------------------------------- /HTML and CSS Projects/Santa Animation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Santa Animation/.DS_Store -------------------------------------------------------------------------------- /HTML and CSS Projects/Santa Animation/santa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Santa Animation/santa.html -------------------------------------------------------------------------------- /HTML and CSS Projects/Santa Animation/sprites/santa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Santa Animation/sprites/santa.png -------------------------------------------------------------------------------- /HTML and CSS Projects/Shape RPG Game/Controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Shape RPG Game/Controller.js -------------------------------------------------------------------------------- /HTML and CSS Projects/Shape RPG Game/Enemy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Shape RPG Game/Enemy.js -------------------------------------------------------------------------------- /HTML and CSS Projects/Shape RPG Game/Level.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML and CSS Projects/Shape RPG Game/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Shape RPG Game/Menu.js -------------------------------------------------------------------------------- /HTML and CSS Projects/Shape RPG Game/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Shape RPG Game/Player.js -------------------------------------------------------------------------------- /HTML and CSS Projects/Shape RPG Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Shape RPG Game/index.html -------------------------------------------------------------------------------- /HTML and CSS Projects/Shape RPG Game/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/Shape RPG Game/index.js -------------------------------------------------------------------------------- /HTML and CSS Projects/To-Do-List/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/To-Do-List/app.js -------------------------------------------------------------------------------- /HTML and CSS Projects/To-Do-List/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/To-Do-List/index.html -------------------------------------------------------------------------------- /HTML and CSS Projects/To-Do-List/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/To-Do-List/styles.css -------------------------------------------------------------------------------- /HTML and CSS Projects/blackjack game/game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/blackjack game/game.css -------------------------------------------------------------------------------- /HTML and CSS Projects/blackjack game/game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/blackjack game/game.html -------------------------------------------------------------------------------- /HTML and CSS Projects/blackjack game/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/blackjack game/game.js -------------------------------------------------------------------------------- /HTML and CSS Projects/grocery cart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/grocery cart/README.md -------------------------------------------------------------------------------- /HTML and CSS Projects/grocery cart/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML and CSS Projects/grocery cart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/grocery cart/index.html -------------------------------------------------------------------------------- /HTML and CSS Projects/grocery cart/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/grocery cart/styles.css -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/README.md -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/img/Apple-logo-black-and-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/img/Apple-logo-black-and-white.png -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/img/akar-icons_arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/img/akar-icons_arrow-down.png -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/img/akar-icons_battery-charging (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/img/akar-icons_battery-charging (1).png -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/img/akar-icons_battery-charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/img/akar-icons_battery-charging.png -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/img/bi_arrow-down-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/img/bi_arrow-down-short.png -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/img/bi_camera (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/img/bi_camera (1).png -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/img/bi_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/img/bi_camera.png -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/img/bi_phone (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/img/bi_phone (1).png -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/img/bi_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/img/bi_phone.png -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/img/ion_hardware-chip-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/img/ion_hardware-chip-outline.png -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/img/png-clipart-iphone-x-front-view-apple__-iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/img/png-clipart-iphone-x-front-view-apple__-iphone.png -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/index.html -------------------------------------------------------------------------------- /HTML and CSS Projects/html css js/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/html css js/style.css -------------------------------------------------------------------------------- /HTML and CSS Projects/navbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/navbar/README.md -------------------------------------------------------------------------------- /HTML and CSS Projects/navbar/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/navbar/app.js -------------------------------------------------------------------------------- /HTML and CSS Projects/navbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/navbar/index.html -------------------------------------------------------------------------------- /HTML and CSS Projects/navbar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/navbar/style.css -------------------------------------------------------------------------------- /HTML and CSS Projects/portfolio/Images/andy-vult-t-WkBEOQngs-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/portfolio/Images/andy-vult-t-WkBEOQngs-unsplash.jpg -------------------------------------------------------------------------------- /HTML and CSS Projects/portfolio/Images/simplee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/portfolio/Images/simplee.jpg -------------------------------------------------------------------------------- /HTML and CSS Projects/portfolio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/portfolio/index.html -------------------------------------------------------------------------------- /HTML and CSS Projects/portfolio/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/portfolio/script.js -------------------------------------------------------------------------------- /HTML and CSS Projects/portfolio/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HTML and CSS Projects/portfolio/style.css -------------------------------------------------------------------------------- /Hacktoberfest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Hacktoberfest -------------------------------------------------------------------------------- /Hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Hello.cpp -------------------------------------------------------------------------------- /HprintSubsetOfArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HprintSubsetOfArray.cpp -------------------------------------------------------------------------------- /HreturnAllCodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HreturnAllCodes.cpp -------------------------------------------------------------------------------- /HreturnsubsetOfArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/HreturnsubsetOfArray.cpp -------------------------------------------------------------------------------- /IOT projects/Smoke Detector/CktDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/IOT projects/Smoke Detector/CktDiagram.png -------------------------------------------------------------------------------- /IOT projects/Smoke Detector/Code/Code.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/IOT projects/Smoke Detector/Code/Code.ino -------------------------------------------------------------------------------- /IOT projects/Smoke Detector/arduiniunojpeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/IOT projects/Smoke Detector/arduiniunojpeg.jpg -------------------------------------------------------------------------------- /IOT projects/Smoke Detector/breadboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/IOT projects/Smoke Detector/breadboard.jpg -------------------------------------------------------------------------------- /IOT projects/Smoke Detector/gasSensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/IOT projects/Smoke Detector/gasSensor.jpg -------------------------------------------------------------------------------- /IOT projects/Smoke Detector/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/IOT projects/Smoke Detector/readme.md -------------------------------------------------------------------------------- /IOT projects/Smoke Detector/temperatureSensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/IOT projects/Smoke Detector/temperatureSensor.jpg -------------------------------------------------------------------------------- /Leetcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Leetcode -------------------------------------------------------------------------------- /ML Projects/Minist/minist training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/ML Projects/Minist/minist training.ipynb -------------------------------------------------------------------------------- /ML Projects/Minist/mnist.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/ML Projects/Minist/mnist.h5 -------------------------------------------------------------------------------- /ML project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/ML project -------------------------------------------------------------------------------- /ML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/ML/README.md -------------------------------------------------------------------------------- /ML/Titanic predictions/kaggle_titanic_machine_learning_from_disaster (1).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/ML/Titanic predictions/kaggle_titanic_machine_learning_from_disaster (1).ipynb -------------------------------------------------------------------------------- /ML/Titanic predictions/sample_submission.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/ML/Titanic predictions/sample_submission.csv -------------------------------------------------------------------------------- /ML/Titanic predictions/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/ML/Titanic predictions/test.csv -------------------------------------------------------------------------------- /ML/Titanic predictions/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/ML/Titanic predictions/train.csv -------------------------------------------------------------------------------- /ML/heart_disease_predict.py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/ML/heart_disease_predict.py/README.md -------------------------------------------------------------------------------- /ML/heart_disease_predict.py/heart_imp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/ML/heart_disease_predict.py/heart_imp.ipynb -------------------------------------------------------------------------------- /ML/heart_disease_predict.py/heart_new.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/ML/heart_disease_predict.py/heart_new.csv -------------------------------------------------------------------------------- /PHP/Login/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/PHP/Login/Readme.md -------------------------------------------------------------------------------- /PHP/Login/change-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/PHP/Login/change-password.php -------------------------------------------------------------------------------- /PHP/Login/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/PHP/Login/config.php -------------------------------------------------------------------------------- /PHP/Login/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/PHP/Login/index.php -------------------------------------------------------------------------------- /PHP/Login/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/PHP/Login/login.php -------------------------------------------------------------------------------- /PHP/Login/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/PHP/Login/logout.php -------------------------------------------------------------------------------- /PHP/Login/signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/PHP/Login/signup.php -------------------------------------------------------------------------------- /PHP/Login/sql/create-database.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE demo; -------------------------------------------------------------------------------- /PHP/Login/sql/create-user-table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/PHP/Login/sql/create-user-table.sql -------------------------------------------------------------------------------- /Profile card/Profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Profile card/Profile.html -------------------------------------------------------------------------------- /Profile card/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Profile card/img.jpg -------------------------------------------------------------------------------- /Profile card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Profile card/style.css -------------------------------------------------------------------------------- /Python/MaxHeap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Python/MaxHeap.py -------------------------------------------------------------------------------- /Python/km_to_m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Python/km_to_m.py -------------------------------------------------------------------------------- /Python/rock_paper_scissors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Python/rock_paper_scissors.py -------------------------------------------------------------------------------- /Python/shannon_fano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Python/shannon_fano.py -------------------------------------------------------------------------------- /Python/snake-water-gun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Python/snake-water-gun.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/README.md -------------------------------------------------------------------------------- /Recursion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Recursion.cpp -------------------------------------------------------------------------------- /Searching-Algo/binary_Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Searching-Algo/binary_Search.py -------------------------------------------------------------------------------- /Searching-Algo/binarysearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Searching-Algo/binarysearch.cpp -------------------------------------------------------------------------------- /Searching-Algo/linearsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Searching-Algo/linearsearch.cpp -------------------------------------------------------------------------------- /SolveBoggle/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/SolveBoggle/Main.java -------------------------------------------------------------------------------- /Sorting/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Sorting/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/.vscode/launch.json -------------------------------------------------------------------------------- /Sorting/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/.vscode/settings.json -------------------------------------------------------------------------------- /Sorting/HeapSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/HeapSort.cpp -------------------------------------------------------------------------------- /Sorting/HeapSort.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/HeapSort.exe -------------------------------------------------------------------------------- /Sorting/binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/binary_search.py -------------------------------------------------------------------------------- /Sorting/bubblesort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/bubblesort.c -------------------------------------------------------------------------------- /Sorting/bubblesort.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/bubblesort.exe -------------------------------------------------------------------------------- /Sorting/insertionsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/insertionsort.c -------------------------------------------------------------------------------- /Sorting/insertionsort.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/insertionsort.exe -------------------------------------------------------------------------------- /Sorting/mergesort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/mergesort.c -------------------------------------------------------------------------------- /Sorting/mergesort.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/mergesort.exe -------------------------------------------------------------------------------- /Sorting/quicksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/quicksort.c -------------------------------------------------------------------------------- /Sorting/quicksort.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/quicksort.exe -------------------------------------------------------------------------------- /Sorting/selectionsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/selectionsort.c -------------------------------------------------------------------------------- /Sorting/selectionsort.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/selectionsort.exe -------------------------------------------------------------------------------- /Sorting/shell_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/Sorting/shell_sort.py -------------------------------------------------------------------------------- /carrental reservecar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/carrental reservecar.cpp -------------------------------------------------------------------------------- /countgoodtriplet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/countgoodtriplet.cpp -------------------------------------------------------------------------------- /eyedoodle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/eyedoodle.html -------------------------------------------------------------------------------- /hacktoberfest technical blogs.: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/hacktoberfest technical blogs. -------------------------------------------------------------------------------- /html and css learners/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /html and css learners/images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img1.jpg -------------------------------------------------------------------------------- /html and css learners/images/img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img10.png -------------------------------------------------------------------------------- /html and css learners/images/img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img11.png -------------------------------------------------------------------------------- /html and css learners/images/img12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img12.png -------------------------------------------------------------------------------- /html and css learners/images/img13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img13.png -------------------------------------------------------------------------------- /html and css learners/images/img14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img14.png -------------------------------------------------------------------------------- /html and css learners/images/img15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img15.png -------------------------------------------------------------------------------- /html and css learners/images/img16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img16.png -------------------------------------------------------------------------------- /html and css learners/images/img17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img17.png -------------------------------------------------------------------------------- /html and css learners/images/img18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img18.png -------------------------------------------------------------------------------- /html and css learners/images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img2.png -------------------------------------------------------------------------------- /html and css learners/images/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img3.jpg -------------------------------------------------------------------------------- /html and css learners/images/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img4.jpg -------------------------------------------------------------------------------- /html and css learners/images/img5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img5.webp -------------------------------------------------------------------------------- /html and css learners/images/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img6.png -------------------------------------------------------------------------------- /html and css learners/images/img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img7.png -------------------------------------------------------------------------------- /html and css learners/images/img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img8.png -------------------------------------------------------------------------------- /html and css learners/images/img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/img9.png -------------------------------------------------------------------------------- /html and css learners/images/ss.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/images/ss.PNG -------------------------------------------------------------------------------- /html and css learners/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/index.html -------------------------------------------------------------------------------- /html and css learners/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/readme.md -------------------------------------------------------------------------------- /html and css learners/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/html and css learners/style.css -------------------------------------------------------------------------------- /java/HiddenNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/java/HiddenNumber.java -------------------------------------------------------------------------------- /java/tictactoe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/java/tictactoe.java -------------------------------------------------------------------------------- /javascript/palindrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/javascript/palindrome.js -------------------------------------------------------------------------------- /javascript/reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/javascript/reverse.js -------------------------------------------------------------------------------- /javascript/rock paper scissors/rps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/javascript/rock paper scissors/rps.css -------------------------------------------------------------------------------- /javascript/rock paper scissors/rps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/javascript/rock paper scissors/rps.html -------------------------------------------------------------------------------- /javascript/rock paper scissors/rps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/javascript/rock paper scissors/rps.js -------------------------------------------------------------------------------- /ml beginner learnings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/ml beginner learnings -------------------------------------------------------------------------------- /population.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/population.c -------------------------------------------------------------------------------- /postfix_evaluation/evaluate_postfix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/postfix_evaluation/evaluate_postfix.cpp -------------------------------------------------------------------------------- /postfix_evaluation/postfix_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/postfix_evaluation/postfix_evaluation.py -------------------------------------------------------------------------------- /studentrecordmanagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/studentrecordmanagement.cpp -------------------------------------------------------------------------------- /swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/swap.c -------------------------------------------------------------------------------- /voice assistant in python/jarnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Alisha/HACKTOBERFEST-22/HEAD/voice assistant in python/jarnet.py --------------------------------------------------------------------------------