├── 20211121_145218.jpeg.jpg ├── Basic_programs └── C++ │ ├── Factorial of a Given Number using c++ │ ├── Merge_Sort.cpp │ └── Odd_Divisor(codeforces).cpp ├── CONTRIBUTING.md ├── DSA Problems - Solutions ├── Graphs │ └── Dijkstra'sAlgorithm.cpp ├── Linked Lists │ ├── Delete middle of linked list.cpp │ ├── linked_list_insertion.py │ └── mrege_two_link_list.cpp └── Strings │ └── is_palindrome.py ├── LICENSE ├── LeetCodes - Solutions └── C++ │ ├── Leetcode 3Sum Problem - 15.py │ ├── best_time_to_buy_and_sell.cpp │ └── find-median-from-data-stream.cpp ├── Projects ├── Abc │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── bin │ │ └── com │ │ │ └── apps │ │ │ ├── beans │ │ │ └── Student.class │ │ │ ├── config │ │ │ └── applicationContext.xml │ │ │ └── test │ │ │ └── Client.class │ └── src │ │ └── com │ │ └── apps │ │ ├── beans │ │ └── Student.java │ │ ├── config │ │ └── applicationContext.xml │ │ └── test │ │ └── Client.java ├── DynamicForm │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ └── org.eclipse.wst.jsdt.ui.superType.name │ ├── WebContent │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ └── WEB-INF │ │ │ └── web.xml │ ├── build │ │ └── classes │ │ │ └── com │ │ │ └── spiosys │ │ │ └── servlet │ │ │ ├── EditFormServlet.class │ │ │ └── UpdateServlet.class │ └── src │ │ └── com │ │ └── spiosys │ │ └── servlet │ │ ├── EditFormServlet.java │ │ └── UpdateServlet.java ├── Hotel Management System │ ├── README.md │ ├── add_guest.cpp │ ├── calculate_rent.cpp │ ├── customer.cpp │ ├── insertion_check.cpp │ ├── main.cpp │ ├── main.exe │ ├── query_exec.cpp │ ├── refresh_db.cpp │ ├── room.cpp │ ├── room_allotment.cpp │ └── update_checkout.cpp ├── Lbraray Management System │ └── LMS BY Krishnika │ │ ├── README.md │ │ ├── mainprogram.cpp │ │ └── output.exe ├── Rock_Paper_Scissors.cpp ├── Score Keeping Game │ ├── ScoreKeeping_Game │ ├── app.js │ └── index.html ├── Student Grading System │ ├── README.md │ ├── Student Grading System.py │ └── calculator.html ├── ege catcher │ └── egecatcher.py └── helmet.py ├── README.md ├── Remove duplicates from a sorted linked list.cpp ├── Subway Ride.java └── Subway Ride.java ├── armstrong.py ├── logo.png └── quickSort.java /20211121_145218.jpeg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/20211121_145218.jpeg.jpg -------------------------------------------------------------------------------- /Basic_programs/C++/Factorial of a Given Number using c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Basic_programs/C++/Factorial of a Given Number using c++ -------------------------------------------------------------------------------- /Basic_programs/C++/Merge_Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Basic_programs/C++/Merge_Sort.cpp -------------------------------------------------------------------------------- /Basic_programs/C++/Odd_Divisor(codeforces).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Basic_programs/C++/Odd_Divisor(codeforces).cpp -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DSA Problems - Solutions/Graphs/Dijkstra'sAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/DSA Problems - Solutions/Graphs/Dijkstra'sAlgorithm.cpp -------------------------------------------------------------------------------- /DSA Problems - Solutions/Linked Lists/Delete middle of linked list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/DSA Problems - Solutions/Linked Lists/Delete middle of linked list.cpp -------------------------------------------------------------------------------- /DSA Problems - Solutions/Linked Lists/linked_list_insertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/DSA Problems - Solutions/Linked Lists/linked_list_insertion.py -------------------------------------------------------------------------------- /DSA Problems - Solutions/Linked Lists/mrege_two_link_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/DSA Problems - Solutions/Linked Lists/mrege_two_link_list.cpp -------------------------------------------------------------------------------- /DSA Problems - Solutions/Strings/is_palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/DSA Problems - Solutions/Strings/is_palindrome.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/LICENSE -------------------------------------------------------------------------------- /LeetCodes - Solutions/C++/Leetcode 3Sum Problem - 15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/LeetCodes - Solutions/C++/Leetcode 3Sum Problem - 15.py -------------------------------------------------------------------------------- /LeetCodes - Solutions/C++/best_time_to_buy_and_sell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/LeetCodes - Solutions/C++/best_time_to_buy_and_sell.cpp -------------------------------------------------------------------------------- /LeetCodes - Solutions/C++/find-median-from-data-stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/LeetCodes - Solutions/C++/find-median-from-data-stream.cpp -------------------------------------------------------------------------------- /Projects/Abc/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Abc/.classpath -------------------------------------------------------------------------------- /Projects/Abc/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Abc/.project -------------------------------------------------------------------------------- /Projects/Abc/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Abc/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Projects/Abc/bin/com/apps/beans/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Abc/bin/com/apps/beans/Student.class -------------------------------------------------------------------------------- /Projects/Abc/bin/com/apps/config/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Abc/bin/com/apps/config/applicationContext.xml -------------------------------------------------------------------------------- /Projects/Abc/bin/com/apps/test/Client.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Abc/bin/com/apps/test/Client.class -------------------------------------------------------------------------------- /Projects/Abc/src/com/apps/beans/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Abc/src/com/apps/beans/Student.java -------------------------------------------------------------------------------- /Projects/Abc/src/com/apps/config/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Abc/src/com/apps/config/applicationContext.xml -------------------------------------------------------------------------------- /Projects/Abc/src/com/apps/test/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Abc/src/com/apps/test/Client.java -------------------------------------------------------------------------------- /Projects/DynamicForm/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/DynamicForm/.classpath -------------------------------------------------------------------------------- /Projects/DynamicForm/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/DynamicForm/.project -------------------------------------------------------------------------------- /Projects/DynamicForm/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/DynamicForm/.settings/.jsdtscope -------------------------------------------------------------------------------- /Projects/DynamicForm/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/DynamicForm/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Projects/DynamicForm/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/DynamicForm/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /Projects/DynamicForm/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/DynamicForm/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /Projects/DynamicForm/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /Projects/DynamicForm/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /Projects/DynamicForm/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /Projects/DynamicForm/WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/DynamicForm/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /Projects/DynamicForm/build/classes/com/spiosys/servlet/EditFormServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/DynamicForm/build/classes/com/spiosys/servlet/EditFormServlet.class -------------------------------------------------------------------------------- /Projects/DynamicForm/build/classes/com/spiosys/servlet/UpdateServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/DynamicForm/build/classes/com/spiosys/servlet/UpdateServlet.class -------------------------------------------------------------------------------- /Projects/DynamicForm/src/com/spiosys/servlet/EditFormServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/DynamicForm/src/com/spiosys/servlet/EditFormServlet.java -------------------------------------------------------------------------------- /Projects/DynamicForm/src/com/spiosys/servlet/UpdateServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/DynamicForm/src/com/spiosys/servlet/UpdateServlet.java -------------------------------------------------------------------------------- /Projects/Hotel Management System/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Hotel Management System/README.md -------------------------------------------------------------------------------- /Projects/Hotel Management System/add_guest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Hotel Management System/add_guest.cpp -------------------------------------------------------------------------------- /Projects/Hotel Management System/calculate_rent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Hotel Management System/calculate_rent.cpp -------------------------------------------------------------------------------- /Projects/Hotel Management System/customer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Hotel Management System/customer.cpp -------------------------------------------------------------------------------- /Projects/Hotel Management System/insertion_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Hotel Management System/insertion_check.cpp -------------------------------------------------------------------------------- /Projects/Hotel Management System/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Hotel Management System/main.cpp -------------------------------------------------------------------------------- /Projects/Hotel Management System/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Hotel Management System/main.exe -------------------------------------------------------------------------------- /Projects/Hotel Management System/query_exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Hotel Management System/query_exec.cpp -------------------------------------------------------------------------------- /Projects/Hotel Management System/refresh_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Hotel Management System/refresh_db.cpp -------------------------------------------------------------------------------- /Projects/Hotel Management System/room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Hotel Management System/room.cpp -------------------------------------------------------------------------------- /Projects/Hotel Management System/room_allotment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Hotel Management System/room_allotment.cpp -------------------------------------------------------------------------------- /Projects/Hotel Management System/update_checkout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Hotel Management System/update_checkout.cpp -------------------------------------------------------------------------------- /Projects/Lbraray Management System/LMS BY Krishnika/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Lbraray Management System/LMS BY Krishnika/README.md -------------------------------------------------------------------------------- /Projects/Lbraray Management System/LMS BY Krishnika/mainprogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Lbraray Management System/LMS BY Krishnika/mainprogram.cpp -------------------------------------------------------------------------------- /Projects/Lbraray Management System/LMS BY Krishnika/output.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Lbraray Management System/LMS BY Krishnika/output.exe -------------------------------------------------------------------------------- /Projects/Rock_Paper_Scissors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Rock_Paper_Scissors.cpp -------------------------------------------------------------------------------- /Projects/Score Keeping Game/ScoreKeeping_Game: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Projects/Score Keeping Game/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Score Keeping Game/app.js -------------------------------------------------------------------------------- /Projects/Score Keeping Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Score Keeping Game/index.html -------------------------------------------------------------------------------- /Projects/Student Grading System/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Student Grading System/README.md -------------------------------------------------------------------------------- /Projects/Student Grading System/Student Grading System.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Student Grading System/Student Grading System.py -------------------------------------------------------------------------------- /Projects/Student Grading System/calculator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/Student Grading System/calculator.html -------------------------------------------------------------------------------- /Projects/ege catcher/egecatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/ege catcher/egecatcher.py -------------------------------------------------------------------------------- /Projects/helmet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Projects/helmet.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/README.md -------------------------------------------------------------------------------- /Remove duplicates from a sorted linked list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Remove duplicates from a sorted linked list.cpp -------------------------------------------------------------------------------- /Subway Ride.java/Subway Ride.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/Subway Ride.java/Subway Ride.java -------------------------------------------------------------------------------- /armstrong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/armstrong.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/logo.png -------------------------------------------------------------------------------- /quickSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajkumarSony/HacktoberFest2022/HEAD/quickSort.java --------------------------------------------------------------------------------