├── 35-Solve_Question3.4.java ├── Basic Banking System ├── Bank.java └── Readme.md ├── CONTRIBUTING.md ├── Calculator-using-Java-and-Javafx ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs └── build.fxbuild ├── CodeforBanks ├── Criteria.txt ├── DSA ├── BuddyStrings.java ├── ChocolatePickup.java ├── FirstMissingPositive_LeetcodeHard.java ├── HareAndTortoise.java ├── LeafAndPath.java ├── MajorityElementII.java ├── MaxSumCircularArray.java ├── MethodOverriding.java ├── MinOperations.java ├── Overloading_1.java ├── Pattern132.java ├── Product Of All Except Self.java ├── QueueUsingStack.java ├── SlidingWindowMaximum.class ├── SlidingWindowMaximum.java ├── StackUsingQueue.java ├── TowerOfHanoi.java ├── TrappingRainWater.java ├── Trie.class ├── Trie.java ├── TrieNode.class ├── bfs.java ├── circualarqueue.java ├── dfs.java ├── dijkstra.java ├── dsa-recursion.java ├── fibonacciSeries.java ├── infixtopostfix.java ├── kadanesAlgo.java ├── kruskalExample.java ├── pattern.java └── primsAlgo.java ├── DiagonalSum.java ├── Java-Algorithm ├── Anagrammanipulatorr.java ├── ArrangingCoin.java ├── BellmanFordAlgorithm.java ├── CycleDetectionPrt.java ├── Depth_First_Search.java ├── KadaneAlgorithm.java ├── Longest common prefix.java ├── Palindrom.java ├── PasswordGenerator.java ├── Prims_Algorithm_mst.java ├── Search-algorithm.java ├── TopologicalSort.java └── UniqueFloydAlgorithmpo.java ├── Java-Area ├── Area-of-circle.java ├── Area.java └── PrintAreaOfShape.java ├── Java-OOPS └── Inheritance │ ├── Inheritance-Examples │ ├── HierarchicalInheritanceExample.java │ ├── HybridInheritanceExample.java │ ├── InheritanceExample.java │ ├── MultilevelInheritanceExample.java │ ├── MultipleInheritanceExample.java │ └── SingleInheritanceExample.java │ ├── ReadMe.md │ ├── SubclassAndSuperClass │ └── Readme.md │ └── diagrams │ └── inheritance.png ├── Java-searching ├── BinarySearch.java ├── LinearSearch.java └── binarySearch.class ├── Java-sorting ├── CycleSort.java ├── DDsort.java ├── HarmonicSort.java ├── InsertSortTest.java ├── ShellSort.java ├── TimSort.java ├── bubble_sort.java ├── mergesort.java ├── quick_sort.cpp └── tree_sort.java ├── JavaTaskManager.java ├── LeetCode Questions ├── LeetCode Easy │ ├── 108. Convert Sorted Array to Binary Search Tree │ │ ├── README.md │ │ ├── Solution.cpp │ │ └── Solution.java │ ├── 1337. K Weakest Rows in a Matrix │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 141. Linked List Cycle │ │ ├── explanantion.md │ │ ├── sol.cpp │ │ └── sol.java │ ├── 1512. Number of Good Pairs │ │ ├── NoOfGP.java │ │ ├── explanation.md.txt │ │ └── sol.cpp │ ├── 389. Find the Difference │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 392. Is Subsequence │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 58. Length of Last Word │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ └── 905. Sort Array by Parity │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md ├── LeetCode Hard │ ├── 1095. Find In Mountain Array │ │ ├── sol.java │ │ └── sol.md │ ├── 1203. Sort Items by Groups Respecting Dependencies │ │ ├── sol.java │ │ └── sol.md │ ├── 1326. Min no of Taps to Open to Water a Garden │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 1359. Count All Valid Pickup and Delivery Options │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 1489. Find Critical and Pseudo-Critical Edges in Min Spanning Tree │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 2141. Maximum Running Time │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 2366. Min Replacements to Sort an Array │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 239. Sliding Window Max │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 332. Reconstruct Itinerary │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 4. Median of Two Sorted Arrays │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 41. First Missing Positive │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 664. Strange Printer │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 68. Test Justification │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ ├── 847. Shortest Path Visiting all Nodes │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md │ └── 920. Number of Music Playlists │ │ ├── sol.cpp │ │ ├── sol.java │ │ └── sol.md └── Medium │ ├── 1048. Longest String Chain │ ├── sol.cpp │ ├── sol.java │ └── sol.md │ ├── 1081. Smallest SubSequence of Distinct Characters │ ├── sol.java │ └── sol.md │ ├── 11. Container With Most Water │ ├── README.md │ ├── Solution.cpp │ └── Solution.java │ ├── 142. LinkedList Cycle II │ ├── sol.cpp │ ├── sol.java │ └── sol.md │ ├── 1448. Count Good Nodes in Binary Tree │ ├── README.md │ └── Solution.java │ ├── 153. Find Minimum in Rotated Sorted Array │ ├── sol.cpp │ ├── sol.java │ └── sol.md │ ├── 1584. Min Cost to Connect All Dots │ ├── sol.java │ └── sol.md │ ├── 1631. Path With Minimum Effort │ ├── sol.java │ └── sol.md │ ├── 1647. Min Deletions to Make Char Frequencies Unique │ ├── sol.java │ └── sol.md │ ├── 1658. Minimum Operations to Reduce X to Zero │ ├── sol.cpp │ ├── sol.java │ └── sol.md │ ├── 179. Largest Number │ ├── sol.cpp │ ├── sol.java │ └── sol.md │ ├── 19. Remove nth Node From the End │ ├── sol.cpp │ ├── sol.java │ └── sol.md │ ├── 1996. The Number of Weak Characters in the Game │ ├── README.md │ ├── Solution.cpp │ ├── Solution.java │ └── Solution.py │ ├── 2. Add Two Numbers │ ├── sol.cpp │ ├── sol.java │ └── sol.md │ ├── 200. Number of Islands │ ├── README.md │ ├── Solution.cpp │ └── Solution.java │ ├── 2038. Remove Colored Pieces if │ ├── sol.cpp │ ├── sol.java │ └── sol.md │ ├── 2707. Extra Chars in a String │ ├── sol.java │ └── sol.md │ ├── 287. Find Duplicate Number │ ├── sol.cpp │ ├── sol.java │ └── sol.md │ ├── 316. Remove Duplicate Letters │ ├── sol.java │ └── sol.md │ ├── 34. First and Last Position of Element in an Array │ ├── sol.cpp │ ├── sol.java │ └── sol.md │ ├── 36. Valid Sudoku │ ├── README.md │ └── Solution.java │ ├── 429. N-ary Tree Level Order Traversal │ └── README.md │ ├── 48. Rotate Image │ ├── README.md │ ├── Solution.cpp │ └── Solution.java │ ├── 61. Rotate List │ ├── sol.cpp │ ├── sol.java │ └── sol.md │ ├── 62. Unique Paths │ ├── sol.java │ └── sol.md │ ├── 63. Unique Paths II │ ├── README.md │ └── Solution.java │ ├── 7. Reverse Integer │ ├── sol.cpp │ ├── sol.java │ └── sol.md │ ├── 725. Split List in Parts │ ├── sol.java │ └── sol.md │ ├── 8. String to Integer (atoi) │ └── Solution.js │ ├── 814. Binary Tree Pruning │ └── README.md │ ├── 967. Numbers With Same Consecutive Differences │ ├── README.md │ ├── Solution.cpp │ ├── Solution.java │ └── Solution.py │ ├── 974. Subarray Sums Divisible by K │ ├── README.md │ ├── Solution.cpp │ ├── Solution.java │ └── Solution.py │ └── README.md ├── Other-code ├── Armstrong.cpp ├── Calculator.java ├── EquilibriumPoint.java ├── SizeOfLargest_BST.java ├── addNum.java ├── binaryToDecimalAndViceversa.cpp ├── currency.java ├── gcd.cpp ├── package.java ├── quadratic_equation.cpp ├── test.java └── voting-check.java ├── Question ├── Q3.1.java ├── Q3.2.java ├── Q3.4.java ├── Q3.5.java └── Question_3.3 │ ├── School.class │ ├── School.java │ └── Student.class ├── README.md ├── Solution.java ├── Stock.java ├── Student-Admission ├── Main │ ├── Main.class │ └── Main.java └── Student │ ├── Student.class │ └── Student.java ├── java-sorthing └── CountingSort.java ├── java-sorting └── SelecgtionSort.java ├── pattern └── HollowDiamond.java └── simple calculator using java with guitar /35-Solve_Question3.4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/35-Solve_Question3.4.java -------------------------------------------------------------------------------- /Basic Banking System/Bank.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Basic Banking System/Bank.java -------------------------------------------------------------------------------- /Basic Banking System/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Basic Banking System/Readme.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Calculator-using-Java-and-Javafx/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Calculator-using-Java-and-Javafx/.classpath -------------------------------------------------------------------------------- /Calculator-using-Java-and-Javafx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Calculator-using-Java-and-Javafx/.project -------------------------------------------------------------------------------- /Calculator-using-Java-and-Javafx/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /Calculator-using-Java-and-Javafx/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Calculator-using-Java-and-Javafx/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Calculator-using-Java-and-Javafx/build.fxbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Calculator-using-Java-and-Javafx/build.fxbuild -------------------------------------------------------------------------------- /CodeforBanks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/CodeforBanks -------------------------------------------------------------------------------- /Criteria.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Criteria.txt -------------------------------------------------------------------------------- /DSA/BuddyStrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/BuddyStrings.java -------------------------------------------------------------------------------- /DSA/ChocolatePickup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/ChocolatePickup.java -------------------------------------------------------------------------------- /DSA/FirstMissingPositive_LeetcodeHard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/FirstMissingPositive_LeetcodeHard.java -------------------------------------------------------------------------------- /DSA/HareAndTortoise.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/HareAndTortoise.java -------------------------------------------------------------------------------- /DSA/LeafAndPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/LeafAndPath.java -------------------------------------------------------------------------------- /DSA/MajorityElementII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/MajorityElementII.java -------------------------------------------------------------------------------- /DSA/MaxSumCircularArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/MaxSumCircularArray.java -------------------------------------------------------------------------------- /DSA/MethodOverriding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/MethodOverriding.java -------------------------------------------------------------------------------- /DSA/MinOperations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/MinOperations.java -------------------------------------------------------------------------------- /DSA/Overloading_1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/Overloading_1.java -------------------------------------------------------------------------------- /DSA/Pattern132.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/Pattern132.java -------------------------------------------------------------------------------- /DSA/Product Of All Except Self.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/Product Of All Except Self.java -------------------------------------------------------------------------------- /DSA/QueueUsingStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/QueueUsingStack.java -------------------------------------------------------------------------------- /DSA/SlidingWindowMaximum.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/SlidingWindowMaximum.class -------------------------------------------------------------------------------- /DSA/SlidingWindowMaximum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/SlidingWindowMaximum.java -------------------------------------------------------------------------------- /DSA/StackUsingQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/StackUsingQueue.java -------------------------------------------------------------------------------- /DSA/TowerOfHanoi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/TowerOfHanoi.java -------------------------------------------------------------------------------- /DSA/TrappingRainWater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/TrappingRainWater.java -------------------------------------------------------------------------------- /DSA/Trie.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/Trie.class -------------------------------------------------------------------------------- /DSA/Trie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/Trie.java -------------------------------------------------------------------------------- /DSA/TrieNode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/TrieNode.class -------------------------------------------------------------------------------- /DSA/bfs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/bfs.java -------------------------------------------------------------------------------- /DSA/circualarqueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/circualarqueue.java -------------------------------------------------------------------------------- /DSA/dfs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/dfs.java -------------------------------------------------------------------------------- /DSA/dijkstra.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/dijkstra.java -------------------------------------------------------------------------------- /DSA/dsa-recursion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/dsa-recursion.java -------------------------------------------------------------------------------- /DSA/fibonacciSeries.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/fibonacciSeries.java -------------------------------------------------------------------------------- /DSA/infixtopostfix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/infixtopostfix.java -------------------------------------------------------------------------------- /DSA/kadanesAlgo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/kadanesAlgo.java -------------------------------------------------------------------------------- /DSA/kruskalExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/kruskalExample.java -------------------------------------------------------------------------------- /DSA/pattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/pattern.java -------------------------------------------------------------------------------- /DSA/primsAlgo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DSA/primsAlgo.java -------------------------------------------------------------------------------- /DiagonalSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/DiagonalSum.java -------------------------------------------------------------------------------- /Java-Algorithm/Anagrammanipulatorr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Algorithm/Anagrammanipulatorr.java -------------------------------------------------------------------------------- /Java-Algorithm/ArrangingCoin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Algorithm/ArrangingCoin.java -------------------------------------------------------------------------------- /Java-Algorithm/BellmanFordAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Algorithm/BellmanFordAlgorithm.java -------------------------------------------------------------------------------- /Java-Algorithm/CycleDetectionPrt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Algorithm/CycleDetectionPrt.java -------------------------------------------------------------------------------- /Java-Algorithm/Depth_First_Search.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Algorithm/Depth_First_Search.java -------------------------------------------------------------------------------- /Java-Algorithm/KadaneAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Algorithm/KadaneAlgorithm.java -------------------------------------------------------------------------------- /Java-Algorithm/Longest common prefix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Algorithm/Longest common prefix.java -------------------------------------------------------------------------------- /Java-Algorithm/Palindrom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Algorithm/Palindrom.java -------------------------------------------------------------------------------- /Java-Algorithm/PasswordGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Algorithm/PasswordGenerator.java -------------------------------------------------------------------------------- /Java-Algorithm/Prims_Algorithm_mst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Algorithm/Prims_Algorithm_mst.java -------------------------------------------------------------------------------- /Java-Algorithm/Search-algorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Algorithm/Search-algorithm.java -------------------------------------------------------------------------------- /Java-Algorithm/TopologicalSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Algorithm/TopologicalSort.java -------------------------------------------------------------------------------- /Java-Algorithm/UniqueFloydAlgorithmpo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Algorithm/UniqueFloydAlgorithmpo.java -------------------------------------------------------------------------------- /Java-Area/Area-of-circle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Area/Area-of-circle.java -------------------------------------------------------------------------------- /Java-Area/Area.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Area/Area.java -------------------------------------------------------------------------------- /Java-Area/PrintAreaOfShape.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-Area/PrintAreaOfShape.java -------------------------------------------------------------------------------- /Java-OOPS/Inheritance/Inheritance-Examples/HierarchicalInheritanceExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-OOPS/Inheritance/Inheritance-Examples/HierarchicalInheritanceExample.java -------------------------------------------------------------------------------- /Java-OOPS/Inheritance/Inheritance-Examples/HybridInheritanceExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-OOPS/Inheritance/Inheritance-Examples/HybridInheritanceExample.java -------------------------------------------------------------------------------- /Java-OOPS/Inheritance/Inheritance-Examples/InheritanceExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-OOPS/Inheritance/Inheritance-Examples/InheritanceExample.java -------------------------------------------------------------------------------- /Java-OOPS/Inheritance/Inheritance-Examples/MultilevelInheritanceExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-OOPS/Inheritance/Inheritance-Examples/MultilevelInheritanceExample.java -------------------------------------------------------------------------------- /Java-OOPS/Inheritance/Inheritance-Examples/MultipleInheritanceExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-OOPS/Inheritance/Inheritance-Examples/MultipleInheritanceExample.java -------------------------------------------------------------------------------- /Java-OOPS/Inheritance/Inheritance-Examples/SingleInheritanceExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-OOPS/Inheritance/Inheritance-Examples/SingleInheritanceExample.java -------------------------------------------------------------------------------- /Java-OOPS/Inheritance/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-OOPS/Inheritance/ReadMe.md -------------------------------------------------------------------------------- /Java-OOPS/Inheritance/SubclassAndSuperClass/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-OOPS/Inheritance/SubclassAndSuperClass/Readme.md -------------------------------------------------------------------------------- /Java-OOPS/Inheritance/diagrams/inheritance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-OOPS/Inheritance/diagrams/inheritance.png -------------------------------------------------------------------------------- /Java-searching/BinarySearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-searching/BinarySearch.java -------------------------------------------------------------------------------- /Java-searching/LinearSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-searching/LinearSearch.java -------------------------------------------------------------------------------- /Java-searching/binarySearch.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-searching/binarySearch.class -------------------------------------------------------------------------------- /Java-sorting/CycleSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-sorting/CycleSort.java -------------------------------------------------------------------------------- /Java-sorting/DDsort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-sorting/DDsort.java -------------------------------------------------------------------------------- /Java-sorting/HarmonicSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-sorting/HarmonicSort.java -------------------------------------------------------------------------------- /Java-sorting/InsertSortTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-sorting/InsertSortTest.java -------------------------------------------------------------------------------- /Java-sorting/ShellSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-sorting/ShellSort.java -------------------------------------------------------------------------------- /Java-sorting/TimSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-sorting/TimSort.java -------------------------------------------------------------------------------- /Java-sorting/bubble_sort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-sorting/bubble_sort.java -------------------------------------------------------------------------------- /Java-sorting/mergesort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-sorting/mergesort.java -------------------------------------------------------------------------------- /Java-sorting/quick_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-sorting/quick_sort.cpp -------------------------------------------------------------------------------- /Java-sorting/tree_sort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Java-sorting/tree_sort.java -------------------------------------------------------------------------------- /JavaTaskManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/JavaTaskManager.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/108. Convert Sorted Array to Binary Search Tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/108. Convert Sorted Array to Binary Search Tree/README.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/108. Convert Sorted Array to Binary Search Tree/Solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/108. Convert Sorted Array to Binary Search Tree/Solution.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/108. Convert Sorted Array to Binary Search Tree/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/108. Convert Sorted Array to Binary Search Tree/Solution.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/1337. K Weakest Rows in a Matrix/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/1337. K Weakest Rows in a Matrix/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/1337. K Weakest Rows in a Matrix/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/1337. K Weakest Rows in a Matrix/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/1337. K Weakest Rows in a Matrix/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/1337. K Weakest Rows in a Matrix/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/141. Linked List Cycle/explanantion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/141. Linked List Cycle/explanantion.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/141. Linked List Cycle/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/141. Linked List Cycle/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/141. Linked List Cycle/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/141. Linked List Cycle/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/1512. Number of Good Pairs/NoOfGP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/1512. Number of Good Pairs/NoOfGP.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/1512. Number of Good Pairs/explanation.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/1512. Number of Good Pairs/explanation.md.txt -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/1512. Number of Good Pairs/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/1512. Number of Good Pairs/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/389. Find the Difference/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/389. Find the Difference/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/389. Find the Difference/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/389. Find the Difference/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/389. Find the Difference/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/389. Find the Difference/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/392. Is Subsequence/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/392. Is Subsequence/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/392. Is Subsequence/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/392. Is Subsequence/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/392. Is Subsequence/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/392. Is Subsequence/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/58. Length of Last Word/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/58. Length of Last Word/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/58. Length of Last Word/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/58. Length of Last Word/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/58. Length of Last Word/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/58. Length of Last Word/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/905. Sort Array by Parity/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/905. Sort Array by Parity/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/905. Sort Array by Parity/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/905. Sort Array by Parity/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Easy/905. Sort Array by Parity/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Easy/905. Sort Array by Parity/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/1095. Find In Mountain Array/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/1095. Find In Mountain Array/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/1095. Find In Mountain Array/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/1095. Find In Mountain Array/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/1203. Sort Items by Groups Respecting Dependencies/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/1203. Sort Items by Groups Respecting Dependencies/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/1203. Sort Items by Groups Respecting Dependencies/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/1203. Sort Items by Groups Respecting Dependencies/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/1326. Min no of Taps to Open to Water a Garden/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/1326. Min no of Taps to Open to Water a Garden/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/1326. Min no of Taps to Open to Water a Garden/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/1326. Min no of Taps to Open to Water a Garden/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/1326. Min no of Taps to Open to Water a Garden/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/1326. Min no of Taps to Open to Water a Garden/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/1359. Count All Valid Pickup and Delivery Options/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/1359. Count All Valid Pickup and Delivery Options/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/1359. Count All Valid Pickup and Delivery Options/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/1359. Count All Valid Pickup and Delivery Options/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/1359. Count All Valid Pickup and Delivery Options/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/1359. Count All Valid Pickup and Delivery Options/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/1489. Find Critical and Pseudo-Critical Edges in Min Spanning Tree/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/1489. Find Critical and Pseudo-Critical Edges in Min Spanning Tree/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/1489. Find Critical and Pseudo-Critical Edges in Min Spanning Tree/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/1489. Find Critical and Pseudo-Critical Edges in Min Spanning Tree/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/1489. Find Critical and Pseudo-Critical Edges in Min Spanning Tree/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/1489. Find Critical and Pseudo-Critical Edges in Min Spanning Tree/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/2141. Maximum Running Time/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/2141. Maximum Running Time/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/2141. Maximum Running Time/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/2141. Maximum Running Time/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/2141. Maximum Running Time/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/2141. Maximum Running Time/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/2366. Min Replacements to Sort an Array/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/2366. Min Replacements to Sort an Array/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/2366. Min Replacements to Sort an Array/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/2366. Min Replacements to Sort an Array/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/2366. Min Replacements to Sort an Array/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/2366. Min Replacements to Sort an Array/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/239. Sliding Window Max/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/239. Sliding Window Max/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/239. Sliding Window Max/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/239. Sliding Window Max/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/239. Sliding Window Max/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/239. Sliding Window Max/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/332. Reconstruct Itinerary/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/332. Reconstruct Itinerary/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/332. Reconstruct Itinerary/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/332. Reconstruct Itinerary/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/332. Reconstruct Itinerary/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/332. Reconstruct Itinerary/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/4. Median of Two Sorted Arrays/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/4. Median of Two Sorted Arrays/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/4. Median of Two Sorted Arrays/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/4. Median of Two Sorted Arrays/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/4. Median of Two Sorted Arrays/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/4. Median of Two Sorted Arrays/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/41. First Missing Positive/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/41. First Missing Positive/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/41. First Missing Positive/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/41. First Missing Positive/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/41. First Missing Positive/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/41. First Missing Positive/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/664. Strange Printer/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/664. Strange Printer/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/664. Strange Printer/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/664. Strange Printer/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/664. Strange Printer/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/664. Strange Printer/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/68. Test Justification/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/68. Test Justification/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/68. Test Justification/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/68. Test Justification/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/68. Test Justification/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/68. Test Justification/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/847. Shortest Path Visiting all Nodes/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/847. Shortest Path Visiting all Nodes/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/847. Shortest Path Visiting all Nodes/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/847. Shortest Path Visiting all Nodes/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/847. Shortest Path Visiting all Nodes/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/847. Shortest Path Visiting all Nodes/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/920. Number of Music Playlists/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/920. Number of Music Playlists/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/920. Number of Music Playlists/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/920. Number of Music Playlists/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/LeetCode Hard/920. Number of Music Playlists/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/LeetCode Hard/920. Number of Music Playlists/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1048. Longest String Chain/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1048. Longest String Chain/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1048. Longest String Chain/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1048. Longest String Chain/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1048. Longest String Chain/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1048. Longest String Chain/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1081. Smallest SubSequence of Distinct Characters/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1081. Smallest SubSequence of Distinct Characters/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1081. Smallest SubSequence of Distinct Characters/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1081. Smallest SubSequence of Distinct Characters/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/11. Container With Most Water/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/11. Container With Most Water/README.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/11. Container With Most Water/Solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/11. Container With Most Water/Solution.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/11. Container With Most Water/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/11. Container With Most Water/Solution.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/142. LinkedList Cycle II/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/142. LinkedList Cycle II/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/142. LinkedList Cycle II/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/142. LinkedList Cycle II/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/142. LinkedList Cycle II/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/142. LinkedList Cycle II/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1448. Count Good Nodes in Binary Tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1448. Count Good Nodes in Binary Tree/README.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1448. Count Good Nodes in Binary Tree/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1448. Count Good Nodes in Binary Tree/Solution.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/153. Find Minimum in Rotated Sorted Array/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/153. Find Minimum in Rotated Sorted Array/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/153. Find Minimum in Rotated Sorted Array/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/153. Find Minimum in Rotated Sorted Array/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/153. Find Minimum in Rotated Sorted Array/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/153. Find Minimum in Rotated Sorted Array/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1584. Min Cost to Connect All Dots/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1584. Min Cost to Connect All Dots/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1584. Min Cost to Connect All Dots/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1584. Min Cost to Connect All Dots/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1631. Path With Minimum Effort/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1631. Path With Minimum Effort/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1631. Path With Minimum Effort/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1631. Path With Minimum Effort/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1647. Min Deletions to Make Char Frequencies Unique/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1647. Min Deletions to Make Char Frequencies Unique/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1647. Min Deletions to Make Char Frequencies Unique/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1647. Min Deletions to Make Char Frequencies Unique/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1658. Minimum Operations to Reduce X to Zero/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1658. Minimum Operations to Reduce X to Zero/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1658. Minimum Operations to Reduce X to Zero/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1658. Minimum Operations to Reduce X to Zero/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1658. Minimum Operations to Reduce X to Zero/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1658. Minimum Operations to Reduce X to Zero/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/179. Largest Number/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/179. Largest Number/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/179. Largest Number/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/179. Largest Number/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/179. Largest Number/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/179. Largest Number/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/19. Remove nth Node From the End/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/19. Remove nth Node From the End/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/19. Remove nth Node From the End/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/19. Remove nth Node From the End/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/19. Remove nth Node From the End/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/19. Remove nth Node From the End/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1996. The Number of Weak Characters in the Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1996. The Number of Weak Characters in the Game/README.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1996. The Number of Weak Characters in the Game/Solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1996. The Number of Weak Characters in the Game/Solution.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1996. The Number of Weak Characters in the Game/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1996. The Number of Weak Characters in the Game/Solution.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/1996. The Number of Weak Characters in the Game/Solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/1996. The Number of Weak Characters in the Game/Solution.py -------------------------------------------------------------------------------- /LeetCode Questions/Medium/2. Add Two Numbers/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/2. Add Two Numbers/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/2. Add Two Numbers/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/2. Add Two Numbers/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/2. Add Two Numbers/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/2. Add Two Numbers/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/200. Number of Islands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/200. Number of Islands/README.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/200. Number of Islands/Solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/200. Number of Islands/Solution.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/200. Number of Islands/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/200. Number of Islands/Solution.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/2038. Remove Colored Pieces if/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/2038. Remove Colored Pieces if/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/2038. Remove Colored Pieces if/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/2038. Remove Colored Pieces if/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/2038. Remove Colored Pieces if/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/2038. Remove Colored Pieces if/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/2707. Extra Chars in a String/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/2707. Extra Chars in a String/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/2707. Extra Chars in a String/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/2707. Extra Chars in a String/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/287. Find Duplicate Number/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/287. Find Duplicate Number/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/287. Find Duplicate Number/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/287. Find Duplicate Number/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/287. Find Duplicate Number/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/287. Find Duplicate Number/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/316. Remove Duplicate Letters/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/316. Remove Duplicate Letters/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/316. Remove Duplicate Letters/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/316. Remove Duplicate Letters/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/34. First and Last Position of Element in an Array/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/34. First and Last Position of Element in an Array/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/34. First and Last Position of Element in an Array/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/34. First and Last Position of Element in an Array/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/34. First and Last Position of Element in an Array/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/34. First and Last Position of Element in an Array/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/36. Valid Sudoku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/36. Valid Sudoku/README.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/36. Valid Sudoku/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/36. Valid Sudoku/Solution.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/429. N-ary Tree Level Order Traversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/429. N-ary Tree Level Order Traversal/README.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/48. Rotate Image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/48. Rotate Image/README.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/48. Rotate Image/Solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/48. Rotate Image/Solution.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/48. Rotate Image/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/48. Rotate Image/Solution.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/61. Rotate List/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/61. Rotate List/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/61. Rotate List/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/61. Rotate List/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/61. Rotate List/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/61. Rotate List/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/62. Unique Paths/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/62. Unique Paths/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/62. Unique Paths/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/62. Unique Paths/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/63. Unique Paths II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/63. Unique Paths II/README.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/63. Unique Paths II/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/63. Unique Paths II/Solution.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/7. Reverse Integer/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/7. Reverse Integer/sol.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/7. Reverse Integer/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/7. Reverse Integer/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/7. Reverse Integer/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/7. Reverse Integer/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/725. Split List in Parts/sol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/725. Split List in Parts/sol.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/725. Split List in Parts/sol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/725. Split List in Parts/sol.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/8. String to Integer (atoi)/Solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/8. String to Integer (atoi)/Solution.js -------------------------------------------------------------------------------- /LeetCode Questions/Medium/814. Binary Tree Pruning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/814. Binary Tree Pruning/README.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/967. Numbers With Same Consecutive Differences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/967. Numbers With Same Consecutive Differences/README.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/967. Numbers With Same Consecutive Differences/Solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/967. Numbers With Same Consecutive Differences/Solution.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/967. Numbers With Same Consecutive Differences/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/967. Numbers With Same Consecutive Differences/Solution.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/967. Numbers With Same Consecutive Differences/Solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/967. Numbers With Same Consecutive Differences/Solution.py -------------------------------------------------------------------------------- /LeetCode Questions/Medium/974. Subarray Sums Divisible by K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/974. Subarray Sums Divisible by K/README.md -------------------------------------------------------------------------------- /LeetCode Questions/Medium/974. Subarray Sums Divisible by K/Solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/974. Subarray Sums Divisible by K/Solution.cpp -------------------------------------------------------------------------------- /LeetCode Questions/Medium/974. Subarray Sums Divisible by K/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/974. Subarray Sums Divisible by K/Solution.java -------------------------------------------------------------------------------- /LeetCode Questions/Medium/974. Subarray Sums Divisible by K/Solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/974. Subarray Sums Divisible by K/Solution.py -------------------------------------------------------------------------------- /LeetCode Questions/Medium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/LeetCode Questions/Medium/README.md -------------------------------------------------------------------------------- /Other-code/Armstrong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Other-code/Armstrong.cpp -------------------------------------------------------------------------------- /Other-code/Calculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Other-code/Calculator.java -------------------------------------------------------------------------------- /Other-code/EquilibriumPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Other-code/EquilibriumPoint.java -------------------------------------------------------------------------------- /Other-code/SizeOfLargest_BST.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Other-code/SizeOfLargest_BST.java -------------------------------------------------------------------------------- /Other-code/addNum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Other-code/addNum.java -------------------------------------------------------------------------------- /Other-code/binaryToDecimalAndViceversa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Other-code/binaryToDecimalAndViceversa.cpp -------------------------------------------------------------------------------- /Other-code/currency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Other-code/currency.java -------------------------------------------------------------------------------- /Other-code/gcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Other-code/gcd.cpp -------------------------------------------------------------------------------- /Other-code/package.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Other-code/package.java -------------------------------------------------------------------------------- /Other-code/quadratic_equation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Other-code/quadratic_equation.cpp -------------------------------------------------------------------------------- /Other-code/test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Other-code/test.java -------------------------------------------------------------------------------- /Other-code/voting-check.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Other-code/voting-check.java -------------------------------------------------------------------------------- /Question/Q3.1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Question/Q3.1.java -------------------------------------------------------------------------------- /Question/Q3.2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Question/Q3.2.java -------------------------------------------------------------------------------- /Question/Q3.4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Question/Q3.4.java -------------------------------------------------------------------------------- /Question/Q3.5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Question/Q3.5.java -------------------------------------------------------------------------------- /Question/Question_3.3/School.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Question/Question_3.3/School.class -------------------------------------------------------------------------------- /Question/Question_3.3/School.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Question/Question_3.3/School.java -------------------------------------------------------------------------------- /Question/Question_3.3/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Question/Question_3.3/Student.class -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/README.md -------------------------------------------------------------------------------- /Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Solution.java -------------------------------------------------------------------------------- /Stock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Stock.java -------------------------------------------------------------------------------- /Student-Admission/Main/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Student-Admission/Main/Main.class -------------------------------------------------------------------------------- /Student-Admission/Main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Student-Admission/Main/Main.java -------------------------------------------------------------------------------- /Student-Admission/Student/Student.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Student-Admission/Student/Student.class -------------------------------------------------------------------------------- /Student-Admission/Student/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/Student-Admission/Student/Student.java -------------------------------------------------------------------------------- /java-sorthing/CountingSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/java-sorthing/CountingSort.java -------------------------------------------------------------------------------- /java-sorting/SelecgtionSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/java-sorting/SelecgtionSort.java -------------------------------------------------------------------------------- /pattern/HollowDiamond.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/pattern/HollowDiamond.java -------------------------------------------------------------------------------- /simple calculator using java with guitar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetannihith/Java-hacktoberfest25/HEAD/simple calculator using java with guitar --------------------------------------------------------------------------------