├── 5.cpp ├── ArmstrongNumber.python ├── BMIindex.py ├── BT to BST.java ├── BinarySearch.java ├── BinarySearchTree.java ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CPP ├── 01_Helloworld.cpp ├── 02_anatomy.cpp ├── 03_variables.cpp ├── 04_pointer.cpp ├── 05_Arrays.cpp ├── 05_pointerArray.cpp ├── 06_structure.cpp ├── 07_union.cpp ├── 08_String.cpp ├── 09_function.cpp ├── 10_funcCall.cpp ├── 11_inlineFunction.cpp ├── 12_recursion.cpp ├── 13_FO_max.cpp ├── 13_FO_volume.cpp ├── 13_funcOverloading.cpp ├── 14_Class.cpp ├── 14_oops_Student.cpp ├── 15_Binary.cpp ├── 16_shop.cpp ├── 17_emp.cpp ├── 18_empObjArray.cpp ├── 18_objArray.cpp ├── 19_objPassing.cpp ├── 20_friendFunction.cpp ├── 21_friendClass.cpp ├── 22_friend2func.cpp ├── 23_friendFunction.cpp ├── 24_constructor.cpp ├── 25_parameterizedConstructor.cpp ├── 26_axis.cpp ├── 27_constuctorOverloading.cpp ├── 28_max3.cpp ├── 29_ConstructorDefaultArgc.cpp ├── 29_pr_complexDefaultConsturctor.cpp ├── 30_DynamicInitObjConsturctor.cpp ├── 31_copyConstructor.cpp ├── 32_Destructor.cpp ├── 33_Inheritance.cpp ├── 34_inheritance-new.cpp ├── 35_private.cpp ├── 35_singleInheritance.cpp ├── 36_Protected.cpp ├── 37_multilavel.cpp ├── 38_multipleINHERITANCE.cpp ├── 39_Calculactor.cpp ├── 40_FNameInheritance.cpp ├── 41_ambiguity.cpp ├── 42_ambiguity2.cpp ├── 43_VirtualBaseClass.cpp ├── 44_Calc.cpp ├── 45_ConstVirtual.cpp ├── 46_initList.cpp ├── 47_pointNewDel.cpp ├── 48_PointerObj.cpp ├── 49_arrPointerObj.cpp ├── 50_thisPointer.cpp ├── 51_polymorphism.cpp ├── 52_operatorOverloading.cpp ├── 53_incrementOverloading.cpp ├── 54_unaryOprator.cpp ├── 55_binaryOperator.cpp ├── 56_unaryOperator.cpp ├── 57_arrSubOp.cpp ├── 58_SteamInsertionOpOverloading.cpp ├── 59_AssignmentOperatorOverloading.cpp ├── 60_PointerDerived.cpp ├── 61_virtualFunc.cpp ├── 62_cwhVirtualFuction.cpp ├── 63_abstractClass.cpp ├── 64_fileHandling.cpp ├── 64_fileHandling.exe ├── 64_sample.txt ├── 65_errorHandling.cpp └── rectanglearea.cpp ├── CaseCheck.java ├── Clockwise_Rotate.java ├── CountNums.java ├── DISHA ├── Demands 5G and Wi-Fi.md ├── Dutch_National_flag_algorithm.java ├── Employee_SalarySlip.py ├── FactorialofaNumber.python ├── Gingerit python tutorial.md ├── Github repo.md ├── GnomeSort.cpp ├── Greeting.java ├── Hello.class ├── Hello.java ├── HelloWorld.cpp ├── HelloWorld.java ├── Hospital management ├── main.c └── readme.md ├── Import turtle ├── Kruskal.java ├── LCM.py ├── Largest.java ├── LeapYear.python ├── Login Form ├── Users.dat ├── login.cpp ├── login.exe └── readme.md ├── Longest_palindromic_substring.cpp ├── MergeSort.java ├── No_Idea.py ├── Palindrome.java ├── Palindrome.python ├── Password Generator.py ├── QuickSort.java ├── READ ME ├── README.md ├── Recursive_Sum_Num.java ├── Reverse.java ├── Stream.java ├── String3_Freq ├── StringPalindromeCheck.cpp ├── StudentAssistant-master ├── Backmenu.h ├── Calculator.c ├── ClassRoutine.c ├── DCalculator.c ├── DemoWallet.c ├── EasyMatrix.c ├── PeriodicTable.c ├── PersonalDiary.c ├── StudentAssistant.c ├── StudentAssistant.exe └── StudentAssistant.png ├── Sudoku Solver ├── Sudoku.class └── Sudoku.java ├── TraverseLinkedList.c ├── Unique_Paths.cpp ├── Valid_Palindrome.py ├── WildcardMatching.java ├── amazon-price-scraper ├── main.py ├── randomPassGen.py └── requirements.txt ├── armstrong number.md ├── binarySearch.cpp ├── binarysearchtree.py ├── c.md ├── calculator.java ├── celebrityprob.java ├── classmatrix.java ├── code.md ├── count.java ├── countallpossiblepaths.cpp ├── factorialusingrecursion ├── fibonacci series ├── fibonaccirecursion.c ├── findAllDuplicates.java ├── guiCalculator.java ├── hamiltonprob.java ├── hellloworld.c ├── hello.go ├── hello.java ├── hello_world_shubham.md ├── img_show.cpp ├── import_turtle.md ├── iplmatch.java ├── maths.cpp ├── minchara.java ├── new.md ├── occurances.java ├── printArray.java ├── quickSort.cpp ├── replaceleastgreater.java ├── rockpaperscissor.py ├── schedule.py ├── set_operations.py ├── shalu461975 ├── snakeWaterGunGame.js ├── spriallmatrix.cpp ├── sum.cpp ├── thanks.py ├── turtle.py ├── turtle_pattern.py └── tweepy.md /5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/5.cpp -------------------------------------------------------------------------------- /ArmstrongNumber.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/ArmstrongNumber.python -------------------------------------------------------------------------------- /BMIindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/BMIindex.py -------------------------------------------------------------------------------- /BT to BST.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/BT to BST.java -------------------------------------------------------------------------------- /BinarySearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/BinarySearch.java -------------------------------------------------------------------------------- /BinarySearchTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/BinarySearchTree.java -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CPP/01_Helloworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/01_Helloworld.cpp -------------------------------------------------------------------------------- /CPP/02_anatomy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/02_anatomy.cpp -------------------------------------------------------------------------------- /CPP/03_variables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/03_variables.cpp -------------------------------------------------------------------------------- /CPP/04_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/04_pointer.cpp -------------------------------------------------------------------------------- /CPP/05_Arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/05_Arrays.cpp -------------------------------------------------------------------------------- /CPP/05_pointerArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/05_pointerArray.cpp -------------------------------------------------------------------------------- /CPP/06_structure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/06_structure.cpp -------------------------------------------------------------------------------- /CPP/07_union.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/07_union.cpp -------------------------------------------------------------------------------- /CPP/08_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/08_String.cpp -------------------------------------------------------------------------------- /CPP/09_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/09_function.cpp -------------------------------------------------------------------------------- /CPP/10_funcCall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/10_funcCall.cpp -------------------------------------------------------------------------------- /CPP/11_inlineFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/11_inlineFunction.cpp -------------------------------------------------------------------------------- /CPP/12_recursion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/12_recursion.cpp -------------------------------------------------------------------------------- /CPP/13_FO_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/13_FO_max.cpp -------------------------------------------------------------------------------- /CPP/13_FO_volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/13_FO_volume.cpp -------------------------------------------------------------------------------- /CPP/13_funcOverloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/13_funcOverloading.cpp -------------------------------------------------------------------------------- /CPP/14_Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/14_Class.cpp -------------------------------------------------------------------------------- /CPP/14_oops_Student.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/14_oops_Student.cpp -------------------------------------------------------------------------------- /CPP/15_Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/15_Binary.cpp -------------------------------------------------------------------------------- /CPP/16_shop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/16_shop.cpp -------------------------------------------------------------------------------- /CPP/17_emp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/17_emp.cpp -------------------------------------------------------------------------------- /CPP/18_empObjArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/18_empObjArray.cpp -------------------------------------------------------------------------------- /CPP/18_objArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/18_objArray.cpp -------------------------------------------------------------------------------- /CPP/19_objPassing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/19_objPassing.cpp -------------------------------------------------------------------------------- /CPP/20_friendFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/20_friendFunction.cpp -------------------------------------------------------------------------------- /CPP/21_friendClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/21_friendClass.cpp -------------------------------------------------------------------------------- /CPP/22_friend2func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/22_friend2func.cpp -------------------------------------------------------------------------------- /CPP/23_friendFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/23_friendFunction.cpp -------------------------------------------------------------------------------- /CPP/24_constructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/24_constructor.cpp -------------------------------------------------------------------------------- /CPP/25_parameterizedConstructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/25_parameterizedConstructor.cpp -------------------------------------------------------------------------------- /CPP/26_axis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/26_axis.cpp -------------------------------------------------------------------------------- /CPP/27_constuctorOverloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/27_constuctorOverloading.cpp -------------------------------------------------------------------------------- /CPP/28_max3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/28_max3.cpp -------------------------------------------------------------------------------- /CPP/29_ConstructorDefaultArgc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/29_ConstructorDefaultArgc.cpp -------------------------------------------------------------------------------- /CPP/29_pr_complexDefaultConsturctor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/29_pr_complexDefaultConsturctor.cpp -------------------------------------------------------------------------------- /CPP/30_DynamicInitObjConsturctor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/30_DynamicInitObjConsturctor.cpp -------------------------------------------------------------------------------- /CPP/31_copyConstructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/31_copyConstructor.cpp -------------------------------------------------------------------------------- /CPP/32_Destructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/32_Destructor.cpp -------------------------------------------------------------------------------- /CPP/33_Inheritance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/33_Inheritance.cpp -------------------------------------------------------------------------------- /CPP/34_inheritance-new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/34_inheritance-new.cpp -------------------------------------------------------------------------------- /CPP/35_private.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/35_private.cpp -------------------------------------------------------------------------------- /CPP/35_singleInheritance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/35_singleInheritance.cpp -------------------------------------------------------------------------------- /CPP/36_Protected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/36_Protected.cpp -------------------------------------------------------------------------------- /CPP/37_multilavel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/37_multilavel.cpp -------------------------------------------------------------------------------- /CPP/38_multipleINHERITANCE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/38_multipleINHERITANCE.cpp -------------------------------------------------------------------------------- /CPP/39_Calculactor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/39_Calculactor.cpp -------------------------------------------------------------------------------- /CPP/40_FNameInheritance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/40_FNameInheritance.cpp -------------------------------------------------------------------------------- /CPP/41_ambiguity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/41_ambiguity.cpp -------------------------------------------------------------------------------- /CPP/42_ambiguity2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/42_ambiguity2.cpp -------------------------------------------------------------------------------- /CPP/43_VirtualBaseClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/43_VirtualBaseClass.cpp -------------------------------------------------------------------------------- /CPP/44_Calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/44_Calc.cpp -------------------------------------------------------------------------------- /CPP/45_ConstVirtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/45_ConstVirtual.cpp -------------------------------------------------------------------------------- /CPP/46_initList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/46_initList.cpp -------------------------------------------------------------------------------- /CPP/47_pointNewDel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/47_pointNewDel.cpp -------------------------------------------------------------------------------- /CPP/48_PointerObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/48_PointerObj.cpp -------------------------------------------------------------------------------- /CPP/49_arrPointerObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/49_arrPointerObj.cpp -------------------------------------------------------------------------------- /CPP/50_thisPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/50_thisPointer.cpp -------------------------------------------------------------------------------- /CPP/51_polymorphism.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/51_polymorphism.cpp -------------------------------------------------------------------------------- /CPP/52_operatorOverloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/52_operatorOverloading.cpp -------------------------------------------------------------------------------- /CPP/53_incrementOverloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/53_incrementOverloading.cpp -------------------------------------------------------------------------------- /CPP/54_unaryOprator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/54_unaryOprator.cpp -------------------------------------------------------------------------------- /CPP/55_binaryOperator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/55_binaryOperator.cpp -------------------------------------------------------------------------------- /CPP/56_unaryOperator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/56_unaryOperator.cpp -------------------------------------------------------------------------------- /CPP/57_arrSubOp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/57_arrSubOp.cpp -------------------------------------------------------------------------------- /CPP/58_SteamInsertionOpOverloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/58_SteamInsertionOpOverloading.cpp -------------------------------------------------------------------------------- /CPP/59_AssignmentOperatorOverloading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/59_AssignmentOperatorOverloading.cpp -------------------------------------------------------------------------------- /CPP/60_PointerDerived.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/60_PointerDerived.cpp -------------------------------------------------------------------------------- /CPP/61_virtualFunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/61_virtualFunc.cpp -------------------------------------------------------------------------------- /CPP/62_cwhVirtualFuction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/62_cwhVirtualFuction.cpp -------------------------------------------------------------------------------- /CPP/63_abstractClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/63_abstractClass.cpp -------------------------------------------------------------------------------- /CPP/64_fileHandling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/64_fileHandling.cpp -------------------------------------------------------------------------------- /CPP/64_fileHandling.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/64_fileHandling.exe -------------------------------------------------------------------------------- /CPP/64_sample.txt: -------------------------------------------------------------------------------- 1 | xyz abc aaa bbb zzz -------------------------------------------------------------------------------- /CPP/65_errorHandling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/65_errorHandling.cpp -------------------------------------------------------------------------------- /CPP/rectanglearea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CPP/rectanglearea.cpp -------------------------------------------------------------------------------- /CaseCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CaseCheck.java -------------------------------------------------------------------------------- /Clockwise_Rotate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Clockwise_Rotate.java -------------------------------------------------------------------------------- /CountNums.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/CountNums.java -------------------------------------------------------------------------------- /DISHA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/DISHA -------------------------------------------------------------------------------- /Demands 5G and Wi-Fi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Demands 5G and Wi-Fi.md -------------------------------------------------------------------------------- /Dutch_National_flag_algorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Dutch_National_flag_algorithm.java -------------------------------------------------------------------------------- /Employee_SalarySlip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Employee_SalarySlip.py -------------------------------------------------------------------------------- /FactorialofaNumber.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/FactorialofaNumber.python -------------------------------------------------------------------------------- /Gingerit python tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Gingerit python tutorial.md -------------------------------------------------------------------------------- /Github repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Github repo.md -------------------------------------------------------------------------------- /GnomeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/GnomeSort.cpp -------------------------------------------------------------------------------- /Greeting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Greeting.java -------------------------------------------------------------------------------- /Hello.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Hello.class -------------------------------------------------------------------------------- /Hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Hello.java -------------------------------------------------------------------------------- /HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/HelloWorld.cpp -------------------------------------------------------------------------------- /HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/HelloWorld.java -------------------------------------------------------------------------------- /Hospital management/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Hospital management/main.c -------------------------------------------------------------------------------- /Hospital management/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Import turtle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Import turtle -------------------------------------------------------------------------------- /Kruskal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Kruskal.java -------------------------------------------------------------------------------- /LCM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/LCM.py -------------------------------------------------------------------------------- /Largest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Largest.java -------------------------------------------------------------------------------- /LeapYear.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/LeapYear.python -------------------------------------------------------------------------------- /Login Form/Users.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Login Form/Users.dat -------------------------------------------------------------------------------- /Login Form/login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Login Form/login.cpp -------------------------------------------------------------------------------- /Login Form/login.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Login Form/login.exe -------------------------------------------------------------------------------- /Login Form/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Longest_palindromic_substring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Longest_palindromic_substring.cpp -------------------------------------------------------------------------------- /MergeSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/MergeSort.java -------------------------------------------------------------------------------- /No_Idea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/No_Idea.py -------------------------------------------------------------------------------- /Palindrome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Palindrome.java -------------------------------------------------------------------------------- /Palindrome.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Palindrome.python -------------------------------------------------------------------------------- /Password Generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Password Generator.py -------------------------------------------------------------------------------- /QuickSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/QuickSort.java -------------------------------------------------------------------------------- /READ ME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/READ ME -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/README.md -------------------------------------------------------------------------------- /Recursive_Sum_Num.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Recursive_Sum_Num.java -------------------------------------------------------------------------------- /Reverse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Reverse.java -------------------------------------------------------------------------------- /Stream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Stream.java -------------------------------------------------------------------------------- /String3_Freq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/String3_Freq -------------------------------------------------------------------------------- /StringPalindromeCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/StringPalindromeCheck.cpp -------------------------------------------------------------------------------- /StudentAssistant-master/Backmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/StudentAssistant-master/Backmenu.h -------------------------------------------------------------------------------- /StudentAssistant-master/Calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/StudentAssistant-master/Calculator.c -------------------------------------------------------------------------------- /StudentAssistant-master/ClassRoutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/StudentAssistant-master/ClassRoutine.c -------------------------------------------------------------------------------- /StudentAssistant-master/DCalculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/StudentAssistant-master/DCalculator.c -------------------------------------------------------------------------------- /StudentAssistant-master/DemoWallet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/StudentAssistant-master/DemoWallet.c -------------------------------------------------------------------------------- /StudentAssistant-master/EasyMatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/StudentAssistant-master/EasyMatrix.c -------------------------------------------------------------------------------- /StudentAssistant-master/PeriodicTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/StudentAssistant-master/PeriodicTable.c -------------------------------------------------------------------------------- /StudentAssistant-master/PersonalDiary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/StudentAssistant-master/PersonalDiary.c -------------------------------------------------------------------------------- /StudentAssistant-master/StudentAssistant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/StudentAssistant-master/StudentAssistant.c -------------------------------------------------------------------------------- /StudentAssistant-master/StudentAssistant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/StudentAssistant-master/StudentAssistant.exe -------------------------------------------------------------------------------- /StudentAssistant-master/StudentAssistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/StudentAssistant-master/StudentAssistant.png -------------------------------------------------------------------------------- /Sudoku Solver/Sudoku.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Sudoku Solver/Sudoku.class -------------------------------------------------------------------------------- /Sudoku Solver/Sudoku.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Sudoku Solver/Sudoku.java -------------------------------------------------------------------------------- /TraverseLinkedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/TraverseLinkedList.c -------------------------------------------------------------------------------- /Unique_Paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Unique_Paths.cpp -------------------------------------------------------------------------------- /Valid_Palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/Valid_Palindrome.py -------------------------------------------------------------------------------- /WildcardMatching.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/WildcardMatching.java -------------------------------------------------------------------------------- /amazon-price-scraper/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/amazon-price-scraper/main.py -------------------------------------------------------------------------------- /amazon-price-scraper/randomPassGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/amazon-price-scraper/randomPassGen.py -------------------------------------------------------------------------------- /amazon-price-scraper/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/amazon-price-scraper/requirements.txt -------------------------------------------------------------------------------- /armstrong number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/armstrong number.md -------------------------------------------------------------------------------- /binarySearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/binarySearch.cpp -------------------------------------------------------------------------------- /binarysearchtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/binarysearchtree.py -------------------------------------------------------------------------------- /c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/c.md -------------------------------------------------------------------------------- /calculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/calculator.java -------------------------------------------------------------------------------- /celebrityprob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/celebrityprob.java -------------------------------------------------------------------------------- /classmatrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/classmatrix.java -------------------------------------------------------------------------------- /code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/code.md -------------------------------------------------------------------------------- /count.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/count.java -------------------------------------------------------------------------------- /countallpossiblepaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/countallpossiblepaths.cpp -------------------------------------------------------------------------------- /factorialusingrecursion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/factorialusingrecursion -------------------------------------------------------------------------------- /fibonacci series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/fibonacci series -------------------------------------------------------------------------------- /fibonaccirecursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/fibonaccirecursion.c -------------------------------------------------------------------------------- /findAllDuplicates.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/findAllDuplicates.java -------------------------------------------------------------------------------- /guiCalculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/guiCalculator.java -------------------------------------------------------------------------------- /hamiltonprob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/hamiltonprob.java -------------------------------------------------------------------------------- /hellloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/hellloworld.c -------------------------------------------------------------------------------- /hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/hello.go -------------------------------------------------------------------------------- /hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/hello.java -------------------------------------------------------------------------------- /hello_world_shubham.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/hello_world_shubham.md -------------------------------------------------------------------------------- /img_show.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/img_show.cpp -------------------------------------------------------------------------------- /import_turtle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/import_turtle.md -------------------------------------------------------------------------------- /iplmatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/iplmatch.java -------------------------------------------------------------------------------- /maths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/maths.cpp -------------------------------------------------------------------------------- /minchara.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/minchara.java -------------------------------------------------------------------------------- /new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/new.md -------------------------------------------------------------------------------- /occurances.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/occurances.java -------------------------------------------------------------------------------- /printArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/printArray.java -------------------------------------------------------------------------------- /quickSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/quickSort.cpp -------------------------------------------------------------------------------- /replaceleastgreater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/replaceleastgreater.java -------------------------------------------------------------------------------- /rockpaperscissor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/rockpaperscissor.py -------------------------------------------------------------------------------- /schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/schedule.py -------------------------------------------------------------------------------- /set_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/set_operations.py -------------------------------------------------------------------------------- /shalu461975: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/shalu461975 -------------------------------------------------------------------------------- /snakeWaterGunGame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/snakeWaterGunGame.js -------------------------------------------------------------------------------- /spriallmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/spriallmatrix.cpp -------------------------------------------------------------------------------- /sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/sum.cpp -------------------------------------------------------------------------------- /thanks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/thanks.py -------------------------------------------------------------------------------- /turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/turtle.py -------------------------------------------------------------------------------- /turtle_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/turtle_pattern.py -------------------------------------------------------------------------------- /tweepy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/regression1607/HacktoberFest2022/HEAD/tweepy.md --------------------------------------------------------------------------------