├── .DS_Store ├── .github └── workflows │ └── greetings.yml ├── .vscode ├── c_cpp_properties.json ├── launch.json └── settings.json ├── Advance Tic-Tac-Toe.py ├── BubbleSortAlgorithmEx.java ├── CONTRIBUTING.md ├── Calculate Standard Deviation ├── CatalanNumber.java ├── Check Alphabet using if else ├── Check birthday and return Happy Birthday message ├── Check whether an alphabet is vowel or consonant using if..else statement ├── Code_Of_Conduct.md ├── Coin change using Memorization.txt ├── Container-with-most-water ├── Count the number of even and odd elements in an array ├── DailyTemperatures.class ├── DailyTemperatures.java ├── DateTimeString.java ├── Display Fibonacci Series Using for Loop ├── File Version Control Using Hashing.py ├── Find G.C.D Using Recursion ├── Find all Roots of a Quadratic Equation ├── Find equilibrium index of an array ├── Find the Factors of a Number ├── FindDuplicates.java ├── Get Current date and time in default format ├── HCF.java ├── HangmanGame.class ├── HangmanGame.java ├── Hostel_Accomodation_System ├── Hostel.txt ├── Hostel_Accomodation_System.cpp ├── Hostel_Accomodation_System.exe └── Student.txt ├── How to Print an Integer entered by an user ├── Jarvis_game ├── Java Program to Convert int to string using valueOf() ├── Java Program to Create an Immutable Class ├── Java Program to convert boolean variables into string ├── Java program to create a private constructor ├── Java program to print the object ├── Koko_Eating_Banans.java ├── LCM using while Loop and if Statement ├── Largest Sum Contiguous Subarray (Kadane’s Algorithm) ├── LevenshteinDistance.java ├── Missing_Repeatingno.java ├── MonteCarloTreeSearch.java ├── Multiply Two Floating-Point Numbers.txt ├── N-Queens.py ├── NumberGuessingGame.class ├── Operators.java ├── PasswordGenerator.class ├── PasswordGenerator.java ├── Program to Add Two Matrices ├── Program to Calculate Average Using Arrays ├── Program to Display Calendar ├── Program to Remove All Whitespaces ├── Program to print integers ├── QRCode-Generator.py ├── README.md ├── RSA.java ├── Readme ├── Remove_Nth_Element_From_The_LinkedList_In_Reverse.java ├── Represent a number as Sum of Two Prime Numbers ├── Reverse a Number using a while loop in Java ├── Reverse a number using a for loop in Java ├── RndomNumberGuess.java ├── Rubix game.html ├── Shuffle an array using Fisher-Yates shuffle algorithm ├── SingleNonDuplicateElement.java ├── SpiralMatrix.java ├── Store Information in Structure and Display it ├── Temperature_prob ├── TestNotes.java ├── Travelling Salesman Problem.py ├── Using a flag variable ├── Word-Counter-Application ├── README.md ├── Word-Counter-Application.jar └── src │ ├── Assets │ └── computer.png │ ├── Back_end │ ├── CountWords.class │ └── CountWords.java │ ├── Gui │ ├── Window$1.class │ ├── Window$2.class │ ├── Window.class │ └── Window.java │ ├── Launcher$1.class │ ├── Launcher.class │ └── Launcher.java ├── facereco.py ├── fizzbuzz_solution.py ├── floyd.cpp ├── getwifiinfo.py ├── insertionSortAlgorithm.java ├── ironman.py ├── isAnagram ├── oddeven.java ├── prgm to check leap year ├── program to create custom checked exception ├── program to swap two number ├── py_tts.py ├── random_dice.py ├── reverse-linled-list ├── segment.cpp ├── selectionSortAlgorithm.java ├── spiral-matrix-java ├── trapping-water └── wordBreak /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Advance Tic-Tac-Toe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Advance Tic-Tac-Toe.py -------------------------------------------------------------------------------- /BubbleSortAlgorithmEx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/BubbleSortAlgorithmEx.java -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Calculate Standard Deviation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Calculate Standard Deviation -------------------------------------------------------------------------------- /CatalanNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/CatalanNumber.java -------------------------------------------------------------------------------- /Check Alphabet using if else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Check Alphabet using if else -------------------------------------------------------------------------------- /Check birthday and return Happy Birthday message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Check birthday and return Happy Birthday message -------------------------------------------------------------------------------- /Check whether an alphabet is vowel or consonant using if..else statement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Check whether an alphabet is vowel or consonant using if..else statement -------------------------------------------------------------------------------- /Code_Of_Conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Code_Of_Conduct.md -------------------------------------------------------------------------------- /Coin change using Memorization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Coin change using Memorization.txt -------------------------------------------------------------------------------- /Container-with-most-water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Container-with-most-water -------------------------------------------------------------------------------- /Count the number of even and odd elements in an array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Count the number of even and odd elements in an array -------------------------------------------------------------------------------- /DailyTemperatures.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/DailyTemperatures.class -------------------------------------------------------------------------------- /DailyTemperatures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/DailyTemperatures.java -------------------------------------------------------------------------------- /DateTimeString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/DateTimeString.java -------------------------------------------------------------------------------- /Display Fibonacci Series Using for Loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Display Fibonacci Series Using for Loop -------------------------------------------------------------------------------- /File Version Control Using Hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/File Version Control Using Hashing.py -------------------------------------------------------------------------------- /Find G.C.D Using Recursion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Find G.C.D Using Recursion -------------------------------------------------------------------------------- /Find all Roots of a Quadratic Equation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Find all Roots of a Quadratic Equation -------------------------------------------------------------------------------- /Find equilibrium index of an array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Find equilibrium index of an array -------------------------------------------------------------------------------- /Find the Factors of a Number: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Find the Factors of a Number -------------------------------------------------------------------------------- /FindDuplicates.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/FindDuplicates.java -------------------------------------------------------------------------------- /Get Current date and time in default format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Get Current date and time in default format -------------------------------------------------------------------------------- /HCF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/HCF.java -------------------------------------------------------------------------------- /HangmanGame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/HangmanGame.class -------------------------------------------------------------------------------- /HangmanGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/HangmanGame.java -------------------------------------------------------------------------------- /Hostel_Accomodation_System/Hostel.txt: -------------------------------------------------------------------------------- 1 | Gomukh Hostel : 16500 :2 2 | -------------------------------------------------------------------------------- /Hostel_Accomodation_System/Hostel_Accomodation_System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Hostel_Accomodation_System/Hostel_Accomodation_System.cpp -------------------------------------------------------------------------------- /Hostel_Accomodation_System/Hostel_Accomodation_System.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Hostel_Accomodation_System/Hostel_Accomodation_System.exe -------------------------------------------------------------------------------- /Hostel_Accomodation_System/Student.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /How to Print an Integer entered by an user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/How to Print an Integer entered by an user -------------------------------------------------------------------------------- /Jarvis_game: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Jarvis_game -------------------------------------------------------------------------------- /Java Program to Convert int to string using valueOf(): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Java Program to Convert int to string using valueOf() -------------------------------------------------------------------------------- /Java Program to Create an Immutable Class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Java Program to Create an Immutable Class -------------------------------------------------------------------------------- /Java Program to convert boolean variables into string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Java Program to convert boolean variables into string -------------------------------------------------------------------------------- /Java program to create a private constructor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Java program to create a private constructor -------------------------------------------------------------------------------- /Java program to print the object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Java program to print the object -------------------------------------------------------------------------------- /Koko_Eating_Banans.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Koko_Eating_Banans.java -------------------------------------------------------------------------------- /LCM using while Loop and if Statement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/LCM using while Loop and if Statement -------------------------------------------------------------------------------- /Largest Sum Contiguous Subarray (Kadane’s Algorithm): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Largest Sum Contiguous Subarray (Kadane’s Algorithm) -------------------------------------------------------------------------------- /LevenshteinDistance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/LevenshteinDistance.java -------------------------------------------------------------------------------- /Missing_Repeatingno.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Missing_Repeatingno.java -------------------------------------------------------------------------------- /MonteCarloTreeSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/MonteCarloTreeSearch.java -------------------------------------------------------------------------------- /Multiply Two Floating-Point Numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Multiply Two Floating-Point Numbers.txt -------------------------------------------------------------------------------- /N-Queens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/N-Queens.py -------------------------------------------------------------------------------- /NumberGuessingGame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/NumberGuessingGame.class -------------------------------------------------------------------------------- /Operators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Operators.java -------------------------------------------------------------------------------- /PasswordGenerator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/PasswordGenerator.class -------------------------------------------------------------------------------- /PasswordGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/PasswordGenerator.java -------------------------------------------------------------------------------- /Program to Add Two Matrices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Program to Add Two Matrices -------------------------------------------------------------------------------- /Program to Calculate Average Using Arrays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Program to Calculate Average Using Arrays -------------------------------------------------------------------------------- /Program to Display Calendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Program to Display Calendar -------------------------------------------------------------------------------- /Program to Remove All Whitespaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Program to Remove All Whitespaces -------------------------------------------------------------------------------- /Program to print integers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Program to print integers -------------------------------------------------------------------------------- /QRCode-Generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/QRCode-Generator.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/README.md -------------------------------------------------------------------------------- /RSA.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/RSA.java -------------------------------------------------------------------------------- /Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Readme -------------------------------------------------------------------------------- /Remove_Nth_Element_From_The_LinkedList_In_Reverse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Remove_Nth_Element_From_The_LinkedList_In_Reverse.java -------------------------------------------------------------------------------- /Represent a number as Sum of Two Prime Numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Represent a number as Sum of Two Prime Numbers -------------------------------------------------------------------------------- /Reverse a Number using a while loop in Java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Reverse a Number using a while loop in Java -------------------------------------------------------------------------------- /Reverse a number using a for loop in Java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Reverse a number using a for loop in Java -------------------------------------------------------------------------------- /RndomNumberGuess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/RndomNumberGuess.java -------------------------------------------------------------------------------- /Rubix game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Rubix game.html -------------------------------------------------------------------------------- /Shuffle an array using Fisher-Yates shuffle algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Shuffle an array using Fisher-Yates shuffle algorithm -------------------------------------------------------------------------------- /SingleNonDuplicateElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/SingleNonDuplicateElement.java -------------------------------------------------------------------------------- /SpiralMatrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/SpiralMatrix.java -------------------------------------------------------------------------------- /Store Information in Structure and Display it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Store Information in Structure and Display it -------------------------------------------------------------------------------- /Temperature_prob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Temperature_prob -------------------------------------------------------------------------------- /TestNotes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/TestNotes.java -------------------------------------------------------------------------------- /Travelling Salesman Problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Travelling Salesman Problem.py -------------------------------------------------------------------------------- /Using a flag variable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Using a flag variable -------------------------------------------------------------------------------- /Word-Counter-Application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Word-Counter-Application/README.md -------------------------------------------------------------------------------- /Word-Counter-Application/Word-Counter-Application.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Word-Counter-Application/Word-Counter-Application.jar -------------------------------------------------------------------------------- /Word-Counter-Application/src/Assets/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Word-Counter-Application/src/Assets/computer.png -------------------------------------------------------------------------------- /Word-Counter-Application/src/Back_end/CountWords.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Word-Counter-Application/src/Back_end/CountWords.class -------------------------------------------------------------------------------- /Word-Counter-Application/src/Back_end/CountWords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Word-Counter-Application/src/Back_end/CountWords.java -------------------------------------------------------------------------------- /Word-Counter-Application/src/Gui/Window$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Word-Counter-Application/src/Gui/Window$1.class -------------------------------------------------------------------------------- /Word-Counter-Application/src/Gui/Window$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Word-Counter-Application/src/Gui/Window$2.class -------------------------------------------------------------------------------- /Word-Counter-Application/src/Gui/Window.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Word-Counter-Application/src/Gui/Window.class -------------------------------------------------------------------------------- /Word-Counter-Application/src/Gui/Window.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Word-Counter-Application/src/Gui/Window.java -------------------------------------------------------------------------------- /Word-Counter-Application/src/Launcher$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Word-Counter-Application/src/Launcher$1.class -------------------------------------------------------------------------------- /Word-Counter-Application/src/Launcher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Word-Counter-Application/src/Launcher.class -------------------------------------------------------------------------------- /Word-Counter-Application/src/Launcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/Word-Counter-Application/src/Launcher.java -------------------------------------------------------------------------------- /facereco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/facereco.py -------------------------------------------------------------------------------- /fizzbuzz_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/fizzbuzz_solution.py -------------------------------------------------------------------------------- /floyd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/floyd.cpp -------------------------------------------------------------------------------- /getwifiinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/getwifiinfo.py -------------------------------------------------------------------------------- /insertionSortAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/insertionSortAlgorithm.java -------------------------------------------------------------------------------- /ironman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/ironman.py -------------------------------------------------------------------------------- /isAnagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/isAnagram -------------------------------------------------------------------------------- /oddeven.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/oddeven.java -------------------------------------------------------------------------------- /prgm to check leap year: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/prgm to check leap year -------------------------------------------------------------------------------- /program to create custom checked exception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/program to create custom checked exception -------------------------------------------------------------------------------- /program to swap two number: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/program to swap two number -------------------------------------------------------------------------------- /py_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/py_tts.py -------------------------------------------------------------------------------- /random_dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/random_dice.py -------------------------------------------------------------------------------- /reverse-linled-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/reverse-linled-list -------------------------------------------------------------------------------- /segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/segment.cpp -------------------------------------------------------------------------------- /selectionSortAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/selectionSortAlgorithm.java -------------------------------------------------------------------------------- /spiral-matrix-java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/spiral-matrix-java -------------------------------------------------------------------------------- /trapping-water: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/trapping-water -------------------------------------------------------------------------------- /wordBreak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ayu-hack/Hacktoberfest-Contributions/HEAD/wordBreak --------------------------------------------------------------------------------