├── .gitattributes ├── .gitignore ├── 30-Days-Of-JavaScript ├── Easy │ ├── AddTwoPromises.js │ ├── AllowOneFunctionCall.js │ ├── ApplyTransformOverEachElementInArray.js │ ├── ArrayPrototypeLast.js │ ├── ArrayReduceTransformation.js │ ├── ChunkArray.js │ ├── Counter.js │ ├── CounterII.js │ ├── CreateHelloWorldFunction.js │ ├── FilterElementsFromArray.js │ ├── FunctionComposition.js │ ├── Memoize.js │ ├── ObjectIsEmpty.js │ ├── ReturnLengthOfArguementPassed.js │ ├── Sleep.js │ ├── SortBy.js │ ├── TimeoutCancellation.js │ └── ToBeOrNotToBe.js └── Medium │ ├── GroupBy.js │ ├── JoinTwoArraysById.js │ └── PromiseTimeLimit.js ├── 450+ DSA-Questions ├── Arrays │ ├── MaxAndMinOfArrayUsingMinComparisons.java │ └── ReverseArray.java ├── Context.md └── String │ ├── PalindromeString.java │ └── ReverseString.java ├── Contributing.md ├── Cpp-Solutions ├── Hard │ └── TrappingRainWaterII.cpp └── Medium │ └── FirstCompletelyPaintedRowOrColumn.cpp ├── Introduction-To-Pandas └── Easy │ ├── ChangeDataType.py │ ├── CreateAdataframeFromList.py │ ├── CreateAnewColumn.py │ ├── DisplayTheFirstThreeRows.py │ ├── DropDuplicateRows.py │ ├── DropMissingData.py │ ├── FillMissingData.py │ ├── GetTheSizeOfAdataFrame.py │ ├── ModifyColumns.py │ ├── RenameColumns.py │ ├── ReshapeDataConcatenate.py │ ├── ReshapeDataMelt.py │ ├── ReshapeDataPivot.py │ └── SelectData.py ├── Java-Solutions ├── Easy │ ├── 350 │ │ └── IntersectionOfTwoArraysII.java │ ├── 506 │ │ └── RelativeRanks.java │ ├── 1051 │ │ └── HeightChecker.java │ ├── 1122 │ │ └── RelativeSortArray.java │ ├── 1550 │ │ └── ThreeConsecutiveOdds.java │ ├── 1608 │ │ └── SpecialArrayWithXElementsGreaterThanOrEqualX.java │ ├── 1863 │ │ └── SumOfAllSubsetXORTotals.java │ ├── 2037 │ │ └── MinimumNumberOfMovesToSeatEveryone.java │ ├── 2357 │ │ └── MakeArrayZeroBySubtractingEqualAmmounts.java │ ├── 2373 │ │ └── LargestLocalValuesInMatrix.java │ ├── 3314 │ │ └── ConstructTheMinimumBitwiseArray.java │ ├── AssignCookies │ │ ├── AssignCookies.class │ │ └── AssignCookies.java │ ├── BackspaceStringCompare │ │ └── BackspaceStringCompare.java │ ├── BestTimeToBuyAndSellStock │ │ └── BestTimeToBuyAndSellStock.java │ ├── BinarySearch │ │ └── BinarySearch.java │ ├── BinaryTreeInorderTraversal │ │ └── BTInorderTraversal.java │ ├── BinaryTreePostOrderTraversal │ │ ├── BinaryTreePostOrderTraversal.class │ │ ├── BinaryTreePostOrderTraversal.java │ │ ├── TreeNode.class │ │ └── tempCodeRunnerFile.java │ ├── BuddyStrings │ │ ├── BuddyStrings.class │ │ └── BuddyStrings.java │ ├── BuyTwoChocolates │ │ └── BuyTwoChocolates.java │ ├── CalculateMoneyInLeetcodeBank │ │ └── CalculateMoneyInLeetcodeBank.java │ ├── CanPlaceFlowers │ │ └── CanPlaceFlowers.java │ ├── CheckIfNandItsDoubleExists │ │ ├── CheckIfNandItsDoubleExists.class │ │ └── CheckIfNandItsDoubleExists.java │ ├── CheckIfTwoStringArraysAreEquivalent │ │ └── CheckIfTwoStringArraysAreEquivalent.java │ ├── CheckIfaWordOccursAsaPrefixofAnyWordinaSentence │ │ └── CheckIfaWordOccursAsaPrefixofAnyWordinaSentence.java │ ├── CircularSentence │ │ └── CircularSentence.java │ ├── ConstructStringFromBinaryTree │ │ └── ConstructStringFromBinaryTree.java │ ├── CountElementsWithMaximumFrequency │ │ └── CountElementsWithMaximumFrequency.java │ ├── CountNegativeNumIn │ │ └── CountNegNumInSortedMatrix.java │ ├── CountOfMatchesInTournament │ │ └── CountOfMatchesInTournament.java │ ├── CountPrefixAndSuffixPairsI │ │ └── CountPrefixAndSuffixPairsI.java │ ├── CountingBits │ │ └── CountingBits.java │ ├── CountingWordsWithGivenPrefix │ │ └── CountingWordsWithGivenPrefix.java │ ├── DefuseTheBomb │ │ └── DefuseTheBomb.java │ ├── DeleteCharactersToMakeFancyString │ │ └── DeleteCharactersToMakeFancyString.java │ ├── DestinationCity │ │ └── DestinationCity.java │ ├── DetectCapital │ │ ├── DetectCapital.class │ │ └── DetectCapital.java │ ├── DiameterOfBinaryTree │ │ └── DiameterOfBinaryTree.java │ ├── DifferenceBetweenElementSum_DigitSumInArray │ │ ├── DiffElementSumAndDigitSum.class │ │ └── DiffElementSumAndDigitSum.java │ ├── DivisibleAndNonDivisibleSumsDifference │ │ └── DivisibleAndNonDivisibleSumsDifference.java │ ├── DivisorGame │ │ ├── DivisorGame.class │ │ └── DivisorGame.java │ ├── DuplicateZeroes │ │ └── DuplicateZeroes.java │ ├── ElementsAppearingMoreThanTwentyFivePercentSortedArray │ │ └── ElementsAppearingMoreThanTwentyFivePercentSortedArray.java │ ├── FaultyKeyboard │ │ ├── FaultyKeyboard.class │ │ └── FaultyKeyboard.java │ ├── FinalArrayStateAfterKmultiplicationOperationsI │ │ └── FinalArrayStateAfterKmultiplicationOperationsI.java │ ├── FinalPricesWithSpecialDiscountInShop │ │ └── FinalPricesWithSpecialDiscountInShop.java │ ├── FindFirstPalindromicStringInTheArray │ │ └── FindFirstPalindromicStringInTheArray.java │ ├── FindIfPathExistsInGraph │ │ └── FindIfPathExistsInGraph.java │ ├── FindModeInBinarySearchTree │ │ └── FindModeInBinarySearchTree.java │ ├── FindPivotIndex │ │ └── FindPivotIndex.java │ ├── FindTheDifferenceOfTwoArrays │ │ └── FindTheDifferenceOfTwoArrays.java │ ├── FindTheHighestAltitude │ │ └── FindTheHighestAltitude.java │ ├── FindTheTownJudge │ │ └── FIndTheTownJudge.java │ ├── FindWordsThatCanBeFormedByTheCharacters │ │ └── FindWordsThatCanBeFormedByTheCharacters.java │ ├── FirstUniqueCharacterInString │ │ └── FirstUniqueCharacterInString.java │ ├── FlippingTheImage │ │ └── FlippingTheImage.java │ ├── GreatestCommanDivisorOfStrings │ │ └── GreatestCommanDivisorOfStrings.java │ ├── GuessNumberHigherOrLower │ │ └── GuessNumberHigherOrLower.java │ ├── HammingDistance │ │ └── HammingDistance.java │ ├── HeightChecker │ │ └── HeightChecker.java │ ├── ImageSmoother │ │ └── ImageSmoother.java │ ├── ImplementQueueUsingStacks │ │ └── ImplementQueueUsingStacks.java │ ├── IntersectionOfTwoLinkedLists │ │ └── IntersectionOfTwoLinkedLists.java │ ├── IntersectionsOfTwoArrays │ │ └── IntersectionsOfTwoArrays.java │ ├── IsSubsequence │ │ └── IsSubsequence.java │ ├── IslandPerimeter │ │ └── IslandPerimeter.java │ ├── IsomorphicStrings │ │ ├── IsomorphicStrings.class │ │ └── IsomorphicStrings.java │ ├── KidsWithTheGreatestNumberOfCandies │ │ └── KidsWithTheGreatestNumberOfCandies.java │ ├── LargestSubstringBetweenTwoEqualCharacters │ │ └── LargestSubstringBetweenTwoEqualCharacters.java │ ├── LargestThreeSameDigitNumber │ │ └── LargestThreeSameDigitNumber.java │ ├── LeafSimilarTrees │ │ └── LeafSimilarTrees.java │ ├── LinkedListCycle │ │ └── LinkedListCycle.java │ ├── LongestOddNumberInString │ │ └── LongestOddNumberInString.java │ ├── LongestStrictlyIncreasingOrStrictlyDecreasingSubarray │ │ └── LongestStrictlyIncreasingOrStrictlyDecreasingSubarray.java │ ├── MakeTheStringGreat │ │ └── MakeTheStringGreat.java │ ├── MaximumAscendingSubarraySum │ │ └── MaximumAscendingSubarraySum.java │ ├── MaximumAverageSubArrayI │ │ └── MaximumAverageSubArrayI.java │ ├── MaximumDepthOfBinaryTree │ │ └── MaximumDepthOfBinaryTree.java │ ├── MaximumNestingDepthOfTheParentheses │ │ └── MaximumNestingDepthOfTheParentheses.java │ ├── MaximumOddBinaryNumber │ │ └── MaximumOddBinaryNumber.java │ ├── MaximumProductDifferenceBetweenTwoPairs │ │ └── MaximumProductDifferenceBetweenTwoPairs.java │ ├── MaximumProductOfTwoElementsOfTheArray │ │ └── MaximumProductOfTwoElementsOfTheArray.java │ ├── MaximumScoreAfterSplittingString │ │ ├── MaximumScoreAfterSplittingString.class │ │ └── MaximumScoreAfterSplittingString.java │ ├── MergeSimilarItems │ │ └── MergeSimilarItems.java │ ├── MergeStringsAlternately │ │ └── MergeStringsAlternately.java │ ├── MiddleOfTheLinkedList │ │ └── MiddleOfTheLinkedList.java │ ├── MinCostClimbingStairs │ │ └── MinCostClimbingStairs.java │ ├── MinimumChangesToMakeAlternatingBinaryString │ │ └── MinimumChangesToMakeAlternatingBinaryString.java │ ├── MinimumCommonValue │ │ └── MinimumCommanValue.java │ ├── MinimumStringLengthAfterRemovingSubstrings │ │ └── MinimumStringLengthAfterRemovingSubstrings.java │ ├── MinimumTimeVisitingAllPoints │ │ └── MinimumTimeVisitingAllPoints.java │ ├── MissingNumber │ │ └── MissingNumber.java │ ├── MonotonicArray │ │ ├── MonotonicArray.class │ │ └── MonotonicArray.java │ ├── MoveZeroes │ │ └── MoveZeroes.java │ ├── NthTribonnaciNumber │ │ └── NthTribonnaciNumber.java │ ├── NumberOf1Bits │ │ ├── NumberOf1Bits.class │ │ └── NumberOf1Bits.java │ ├── NumberOfEmployeesWhoMetTheTarget │ │ ├── NumberOfEmployeesWhoMetTheTarget.class │ │ └── NumberOfEmployeesWhoMetTheTarget.java │ ├── NumberOfGoodPairs │ │ └── NumberOfGoodPairs.java │ ├── NumberOfStringCalls │ │ └── NumberOfStringCalls.java │ ├── NumberOfStudentsUnableToEatLunch │ │ └── NumberOfStudentsUnableToEatLunch.java │ ├── PalindromeLinkedList │ │ └── PalindromeLinkedList.java │ ├── Pascal'sTriangleII │ │ └── PascalsTriangleII.java │ ├── PathCrossing │ │ ├── PathCrossing.class │ │ └── PathCrossing.java │ ├── PowerOfFour │ │ └── PowerOfFour.java │ ├── PowersOfTwo │ │ └── PowersOfTwo.java │ ├── RangeSumOfBST │ │ └── RangeSumOfBST.java │ ├── RankTransformOfAnArray │ │ └── RankTransformOfAnArray.java │ ├── RedistributeCharactersToMakeAllStringsEqual │ │ └── RedistributeCharactersToMakeAllStringsEqual.java │ ├── RelativeSortArray │ │ └── RelativeSortArray.java │ ├── ReverseOnlyLetters │ │ ├── ReverseOnlyLetters.class │ │ └── ReverseOnlyLetters.java │ ├── ReversePrefixOfWord │ │ └── ReversePrefixOfWord.java │ ├── ReverseVowelOfaString │ │ └── ReverseVowelOfaString.java │ ├── ReverseWordsInAStringIII │ │ └── ReverseWordsInAStringIII.java │ ├── ReversedLinkedList │ │ ├── ListNode.java │ │ └── ReversedLinkedList.java │ ├── RichestCustomerWealth │ │ └── RichestCustomerWealth.java │ ├── RomanToInteger │ │ ├── RomanToInteger.class │ │ └── RomanToInteger.java │ ├── SameTree │ │ └── SameTree.java │ ├── SearchInBinarySearchTree │ │ └── SearchInBinarySearchTree.java │ ├── SearchInsertPosition │ │ └── SearchInsertPosition.java │ ├── SetMismatch │ │ └── SetMismatch.java │ ├── SignOfTheProductOfAnArray │ │ └── SignOfTheProductOfAnArray.java │ ├── SingleNumber │ │ └── SingleNumber.java │ ├── SortArray │ │ └── SortArrayByParity.java │ ├── SortIntegersByTheNumberOf1Bits │ │ └── SortIntegersByTheNumberOf1Bits.java │ ├── SplitAStringIntoBalancedStrings │ │ └── SplitAStringIntoBalancedStrings.java │ ├── SquaresOfSortedArray │ │ └── SquaresOfSortedArray.java │ ├── StringMatchingInAnArray │ │ └── StringMatchingInAnArray.java │ ├── SumOfLeftLeaves │ │ └── SumOfLeftLeaves.java │ ├── SymmetricTree │ │ └── SymmetricTree.java │ ├── TakeGiftsFromTheRichestPile │ │ └── TakeGiftsFromTheRichestPile.java │ ├── TimeNeededToBuyTickets │ │ └── TimeNeededToBuyTickets.java │ ├── TransposeMatrix │ │ └── TransposeMatrix.java │ ├── TwoSum │ │ ├── TwoSum.class │ │ └── TwoSum.java │ ├── UniqueNumberOfOccurences │ │ └── UniqueNumberOfOccurences.java │ ├── ValidPalindrome2 │ │ ├── ValidPalindrome2.class │ │ └── ValidPalindrome2.java │ └── ValidPerfectSquare │ │ ├── ValidPerfectSquare.class │ │ └── ValidPerfectSquare.java ├── Hard │ ├── 330 │ │ └── PatchingArray.java │ ├── 857 │ │ └── MinimumCostToHireKworkers.java │ ├── 995 │ │ └── MinimumNumberOfKconsecutiveBitFlips.java │ ├── 1255 │ │ └── MaximumScoreWordsFormedByLetters.java │ ├── ArithmeticSlicesII-Subsequence │ │ └── ArithmeticSliceII.java │ ├── BasicCalculator │ │ ├── BasicCalculator.class │ │ └── BasicCalculator.java │ ├── BinaryTreeMaximumPathSum │ │ └── BinaryTreeMaximumPathSum.java │ ├── BuildArrayWhereKcomparisons │ │ └── BuildArrayWhereKcomparisons.java │ ├── BusRoutes │ │ └── BusRoutes.java │ ├── CherryPickupII │ │ └── CherryPickupII.java │ ├── ConstrainedSubsequenceSum │ │ └── ConstrainedSubsequenceSum.java │ ├── CountSubarraysWithFixedBounds │ │ └── CountSubarraysWithFixedBounds.java │ ├── CountVowelsPermutation │ │ └── CountVowelsPermutation.java │ ├── DesignGraphWithShortestPathCalculator │ │ └── DesignGraphWithShortestPathCalculator.java │ ├── FindInMountainArray │ │ └── FindInMountainArray.java │ ├── FindMedianFromDataStream │ │ └── FindMedianFromDataStream.java │ ├── FindMinimumDiameterAfterMergingTwoTrees │ │ └── FindMinimumDiameterAfterMergingTwoTrees.java │ ├── FirstMissingPositive │ │ └── FIrstMissingPositive.java │ ├── FreedomTrail │ │ └── FreedomTrail.java │ ├── GreatestCommonDivisorTraversal │ │ └── GreatestCommonDivisorTraversal.java │ ├── HeightOfBinaryTreeAfterSubtreeRemovalQueries │ │ └── HeightOfBinaryTreeAfterSubtreeRemovalQueries.java │ ├── LargestRectangleInHistogram │ │ └── LargestRectangleInHistogram.java │ ├── LongestValidParenthesis │ │ └── LongestValidParenthesis.java │ ├── MaxDotProductOfTwoSubsequences │ │ └── MaxDotProductOfTwoSubsequences.java │ ├── MaximalRectangle │ │ └── MaximalRectangle.java │ ├── MaximumNumberOfKDivisibleComponents │ │ └── MaximumNumberOfKDivisibleComponents.java │ ├── MaximumProfitInJobScheduling │ │ └── MaximumProfitInJobScheduling.java │ ├── MaximumScoreOfaGoodSubarray │ │ └── MaximumScoreOfaGoodSubarray.java │ ├── MedianOfTwoSortedArrays │ │ └── MedianOfTwoSortedArrays.java │ ├── MeetingRoomsIII │ │ └── MeetingRoomsIII.java │ ├── MergeKSortedLists │ │ └── MergeKSortedLists.java │ ├── MinNumberOfOperationsToMakeArrayContinuous │ │ └── MinNumberOfOperationsToMakeArrayContinuous.java │ ├── MinimumCostToMakeAtLeastOneValidPathInGrid │ │ └── MinimumCostToMakeAtLeastOneValidPathInGrid.java │ ├── MinimumDifficultyOfJobSchedule │ │ └── MinimumDifficultyOfJobSchedule.java │ ├── MinimumFallingPathSumII │ │ └── MinimumFallingPathSumII.java │ ├── MinimumNumberOfRemovalsToMakeMountainArray │ │ └── MinimumNumberOfRemovalsToMakeMountainArray.java │ ├── MinimumObstacleRemovalToReachCorner │ │ └── MinimumObstacleRemovalToReachCorner.java │ ├── MinimumOneBitOperationsToMakeIntegersZero │ │ └── MinimumOneBitOperationsToMakeIntegersZero.java │ ├── MinimumTimeToVisitACellInAGrid │ │ └── MinimumTimeToVisitACellInAGrid.java │ ├── MinimumTotalDistanceTraveled │ │ └── MinimumTotalDistanceTraveled.java │ ├── MinimumWindowSubstring │ │ └── MinimumWindowSubstring.java │ ├── NQueens │ │ └── NQueens.java │ ├── NoOfFlowersInFullBloom │ │ └── NoOfFlowersInFullBloom.java │ ├── NoOfWaysToStayInTheSamePlaceAfterSomeSteps │ │ └── NoOfWaysToStayInTheSamePlaceAfterSomeSteps.java │ ├── NumberOfSubmatricesThatSumToTarget │ │ └── NumberOfSubmatricesThatSumToTarget.java │ ├── NumberOfWaysToDivideAlongCorridor │ │ └── NumberOfWaysToDivideAlongCorridor.java │ ├── PaintingTheWalls │ │ └── PaintingTheWalls.java │ ├── ParallelCourseIII │ │ └── ParallelCourseIII.java │ ├── ParsingAbooleanExpression │ │ └── ParsingAbooleanExpression.java │ ├── PoorPigs │ │ └── PoorPigs.java │ ├── ReverseNodesInKGroup │ │ └── ReverseNodesInKGroup.java │ ├── ShortestSubarrayWithSumAtLeastK │ │ └── ShortestSubarrayWithSumAtLeastK.java │ ├── SlidingPuzzle │ │ └── SlidingPuzzle.java │ ├── SlidingWindowMaximum │ │ └── SlidingWindowMaximum.java │ ├── SmallestRangeCoveringElementsFromKLists │ │ └── Solution.java │ ├── StringCompressionII │ │ └── StringCompressionII.java │ ├── SubarraysWithKdifferentIntegers │ │ └── SubarraysWithKdifferentIntegers.java │ ├── SumOfDistancesInTrees │ │ └── SumOfDistancesInTrees.java │ ├── TrappingRainWater │ │ └── TrappingRainWater.java │ ├── ValidArrangementOfPairs │ │ └── ValidArrangementOfPairs.java │ └── kInversePairsAway │ │ └── kInversePairsAway.java └── Medium │ ├── 17 │ └── LetterCobinationOfPhoneNumber.java │ ├── 50 │ └── Pow(x,n).java │ ├── 75 │ └── SortColors.java │ ├── 165 │ └── CompareVersionNumbers.java │ ├── 237 │ └── DeleteNodeInLinkedList.java │ ├── 260 │ └── SingleNumberIII.java │ ├── 523 │ └── ContinuousSubarraySum.java │ ├── 648 │ └── ReplaceWords.java │ ├── 786 │ └── KthSmallestPrimeFraction.java │ ├── 846 │ └── HandsOfStraights.java │ ├── 881 │ └── BoatToSavePeople.java │ ├── 945 │ └── MinimumIncrementToMakeArrayUnique.java │ ├── 974 │ └── SubarraySumsDivisibleByK.java │ ├── 979 │ └── DistributeCoinsInBinaryTree.java │ ├── 1208 │ └── GetEqualSubstringsWithinBudget.java │ ├── 1325 │ └── DeleteLeavesWithGivenValue.java │ ├── 1404 │ └── NumberOfStepsToReduceNumberInBinaryRepresentationToOne.java │ ├── 1405 │ ├── Question.md │ └── Solution.java │ ├── 1509 │ └── MinimumDifferenceBetweenLargestAndSmallestValueInThreeMoves.java │ ├── 1552 │ └── MagneticForceBetweenTwoBalls.java │ ├── 2487 │ └── RemoveNodesFromLinkedList.java │ ├── 2812 │ └── FindTheSafestPathInGrid.java │ ├── 2816 │ └── DoubleNumberRepresentedAsLinkedList.java │ ├── 3075 │ └── MaximizeHappinessOfSelectedChildren.java │ ├── 132Pattern │ └── OneThreeTwoPattern.java │ ├── 3Sum │ └── ThreeSum.java │ ├── AddOneRowToTree │ └── AddOneRowToTree.java │ ├── AddTwoNumber │ └── AddTwoNumber.java │ ├── AddingSpacesToString │ └── AddingSpacesToString.java │ ├── AmountOfTimeForBinaryTreeToBeInfected │ └── AmountOfTimeForBinaryTreeToBeInfected.java │ ├── ArithmeticSubarrays │ └── ArithmeticSubarrays.java │ ├── AsteroidCollision │ └── AsteroidCollision.java │ ├── BagOfTokens │ └── BagOfTokens.java │ ├── BasicCalculatorII │ ├── BasicCalculatorII.class │ └── BasicCalculatorII.java │ ├── BestTimeToBuyAndSellStockWithTransactionFee │ └── BestTimeToBuyAndSellStockWithTransactionFee.java │ ├── BinarySubarraysWithSum │ └── BinarySubarraysWithSum.java │ ├── BinaryTreeLevelOrderTraversal │ └── BinaryTreeLevelOrderTraversal.java │ ├── BinaryTreeRightSideView │ └── BinaryTreeRightSideView.java │ ├── BinaryTreesWithFactors │ └── BinaryTreesWithFactors.java │ ├── BitwiseANDofNumbersRange │ └── BitwiseANDofNumbersRange.java │ ├── BitwiseXORofAllPairings │ └── BitwiseXORofAllPairings.java │ ├── BuildAnArrayWithStackOperations │ └── BuildAnArrayWithStackOperations.java │ ├── CheapestFlightsWithinKStops │ └── CheapestFlightsWithinKStops.java │ ├── CheckIfArrayPairsAreDivisibleByK │ └── CheckIfArrayPairsAreDivisibleByK.java │ ├── CoinChange │ └── CoinChange.java │ ├── CombinationSum │ └── CombinationSum.java │ ├── CombinationSumII │ └── CombinationSumII.java │ ├── CombinationSumIII │ └── CombinationSumIII.java │ ├── ComplexNumberMultiplication │ └── ComplexNumberMultiplication.java │ ├── ConstructBinaryTreeFromPreorderAndInorderTraversal │ └── ConstructBinaryTreeFromPreorderAndInorderTraversal.java │ ├── ConstructKPalindromeStrings │ └── ConstructKPalindromeStrings.java │ ├── ConstructStringWithRepeatLimit │ └── ConstructStringWithRepeatLimit.java │ ├── ContainerWithMostWater │ └── ContainerWithMostWater.java │ ├── ContiguousArray │ └── ContiguousArray.java │ ├── ContinuousSubarrays │ └── ContinuousSubarrays.java │ ├── ConvertArrayInto2DArrayWithConditions │ └── ConvertArrayInto2DArrayWithConditions.java │ ├── CopyListWithRandomPointer │ └── CopyListWithRandomPointer.java │ ├── CountGoodNodesInBinaryTree │ └── CountGoodNodesInBinaryTree.java │ ├── CountNicePairsInAnArray │ └── CountNicePairsInAnArray.java │ ├── CountNodesEqualToAverageOfSubtree │ └── CountNodesEqualToAverageOfSubtree.java │ ├── CountNumberOfHomogeneousSubstrings │ └── CountNumberOfHomogeneousSubstrings.java │ ├── CountNumberOfMaximumBitwiseORsubsets │ └── CountNumberOfMaximumBitwiseORsubsets.java │ ├── CountNumbersWithUniqueDigits │ └── CountNumbersWithUniqueDigits.java │ ├── CountSquareSubmatricesWithAllOnes │ └── CountSquareSubmatricesWithAllOnes.java │ ├── CountSubarraysWhereMaxElementAppearsAtLeastKTimes │ └── CountSubarraysWhereMaxElementAppearsAtLeastKTimes.java │ ├── CountTheNumberOfFairPairs │ └── CountTheNumberOfFairPairs.java │ ├── CountUnguardedCellsInTheGrid │ └── CountUnguardedCellsInTheGrid.java │ ├── CourseSchedule │ └── CourseSchedule.java │ ├── CousinsInBinaryTreeII │ └── CousinsInBinaryTreeII.java │ ├── CustomSortString │ └── CustomSortString.java │ ├── DailyTemperatures │ └── DailyTemperatures.java │ ├── DecodeString │ └── DecodeString.java │ ├── DecodingWays │ └── DecodingWays.java │ ├── DeleteNodeInBST │ └── DeleteNodeInBST.java │ ├── DeleteTheMiddleNodeOfTheLinkedList │ └── DeleteTheMiddleNodeOfTheLinkedList.java │ ├── DesignFoodRatingSystem │ └── DesignFoodRatingSystem.java │ ├── DetermineIfTwoStringsAreClose │ └── DetermineIfTwoStringsAreClose.java │ ├── DetermineIfaCellIsReachableataGivenTime │ └── DetermineIfACellIsReachableAtAGivenTime.java │ ├── DiagonalTraverse │ └── DiagonalTraverse.java │ ├── DiagonalTraverseII │ └── DiagonalTraverseII.java │ ├── DifferenceBetweenOnesAndZerosInRowAndColumn │ └── DifferenceBetweenOnesAndZerosInRowAndColumn.java │ ├── DivideArrayIntoArraysWithMaxDifference │ └── DivideArrayIntoArraysWithMaxDifference.java │ ├── DivideIntervalsIntoMinimumNumberOfGroups │ └── DivideIntervalsIntoMinimumNumberOfGroups.java │ ├── DividePlayersIntoTeamsOfEqualSkills │ └── DividePlayersIntoTeamsOfEqualSkills.java │ ├── DominoAndTrominoTiling │ └── DominoAndTrominoTiling.java │ ├── Dota2Senate │ └── Dota2Senate.java │ ├── EditDistance │ └── EditDistance.java │ ├── EliminateMaximumNumberOfMonsters │ └── EliminateMaximumNumberOfMonsters.java │ ├── EqualRowAndColumnsPairs │ └── EqualRowAndColumnsPairs.java │ ├── EvaluateDivision │ └── EvaluateDivision.java │ ├── EvaluateReversePolishNotation │ └── EvaluateReversePolishNotation.java │ ├── EvenOddTree │ └── EvenOddTree.java │ ├── FIndScoreOfAnArrayAfterMarkingAllElements │ └── FIndScoreOfAnArrayAfterMarkingAllElements.java │ ├── FIndTheDuplicateNumber │ └── FindTheDuplicateNumber.java │ ├── FactorialTrailingZeroes │ ├── FactorialTrailingZeroes.class │ └── FactorialTrailingZeroes.java │ ├── FindAllAnagramsInString │ └── FindAllAnagramsInString.java │ ├── FindAllDuplicatesInArray │ └── FindAllDuplicatesInArray.java │ ├── FindAllGroupsOfFarmland │ └── FindAllGroupsOfFarmland.java │ ├── FindBottomLeftTreeValue │ └── FindBottomLeftTreeValue.java │ ├── FindChampionII │ └── FindChampionII.java │ ├── FindIfArrayCanBeSorted │ └── FindIfArrayCanBeSorted.java │ ├── FindKthBit │ └── FindKthBit.java │ ├── FindLargestValueInEachTreeRow │ └── FindLargestValueInEachTreeRow.java │ ├── FindLongestSpecialSubstringThatOccursThriceI │ └── FindLongestSpecialSubstringThatOccursThriceI.java │ ├── FindMinimumInRotatedSortedArray │ └── FindMinimumInRotatedSortedArray.java │ ├── FindPeakElement │ └── FindPeakElement.java │ ├── FindPlayersWithZeroOrOneLosses │ └── FindPlayersWithZeroOrOneLosses.java │ ├── FindPolygonWithLargestPerimeter │ └── FindPolygonWithLargestPerimeter.java │ ├── FindTheOriginalArrayOfPrefixXOR │ └── FindTheOriginalArrayOfPrefixXOR.java │ ├── FindThePowerOfKSizeSubarraysI │ └── FindThePowerOfKSizeSubarraysI.java │ ├── FindTheWinnerOfAnArrayGame │ └── FindTheWinnerOfAnArrayGame.java │ ├── FindUniqueBinaryString │ └── FindUniqueBinaryString.java │ ├── FirstAndLastPositionOfElementInSortedArray │ └── FirstAndLastElement.java │ ├── FirstCompletelyPaintedRowOrColumn │ └── FirstCompletelyPaintedRowOrColumn.java │ ├── FlattenBinaryTreeToLinkedList │ └── FlattenBinaryTreeToLinkedList.java │ ├── FlattenNestedListIterator │ └── FlatternNestedListIterator.java │ ├── FlipColumnsForMaximumNumberOfEqualRows │ └── FlipColumnsForMaximumNumberOfEqualRows.java │ ├── FlipEquivalentBinaryTrees │ └── FlipEquivalentBinaryTrees.java │ ├── FrequencyOfTheMostFrequentElement │ └── FrequencyOfTheMostFrequentElement.java │ ├── FurthestBuildingYouCanReach │ └── FurthestBuildingYouCanReach.java │ ├── GenerateParentheses │ └── GenerateParentheses.java │ ├── GridGame │ └── GridGame.java │ ├── GroupAnagrams │ └── GroupAnagrams.java │ ├── HouseRobber │ └── HouseRobber.java │ ├── IncreasingTripletSubsequence │ └── IncreasingTripletSubsequence.java │ ├── InsertDeleteGetRandomO(1) │ └── InsertDeleteGetRandom.java │ ├── InsertInterval │ └── InsertInterval.java │ ├── IntegerBreak │ └── IntegerBreak.java │ ├── IntegerToRoman │ └── IntegerToRoman.java │ ├── InterleavingString │ └── InterleavingString.java │ ├── JumpGame │ └── JumpGame.java │ ├── JumpGameII │ └── JumpGame2.java │ ├── KeysAndRooms │ └── KeysAndRooms.java │ ├── KnightDialer │ └── KnightDialer.java │ ├── KokoEatingBananas │ └── KokoEatingBananas.java │ ├── KthLargestElementInAnArray │ └── KthLargestElementInAnArray.java │ ├── KthLargestSumInaBinaryTree │ └── KthLargestSumInaBinaryTree.java │ ├── KthSmallestElementInBST │ └── KthSmallestElementInBST.java │ ├── KthSymbolInGrammer │ └── KthSymbolInGrammer.java │ ├── LRUCache │ └── LRUCache.java │ ├── LargestCombinationWithBitwiseANDgreaterThanZero │ └── LargestCombinationWithBitwiseANDgreaterThanZero.java │ ├── LargestDivisibleSubset │ └── LargestDivisibleSubset.java │ ├── LargestSubmatrixWithRearrangements │ └── LargestSubmatrixWithRearrangements.java │ ├── LastMomentBeforeAllAntsFallOutOfAPlank │ └── LastMomentBeforeAllAntsFallOutOfAPlank.java │ ├── LeastNumberOfUniqueIntegersAfterKremovals │ └── LeastNumberOfUniqueIntegersAfterKremovals.java │ ├── LengthOfLongestSubarrayWithAtmostKfrequency │ └── LengthOfLongestSubarrayWithAtmostKfrequency.java │ ├── LetterCombinationsOfAphoneNumber │ └── LetterCombinationsOfAPhoneNumber.java │ ├── LinkedListCycleII │ └── LinkedListCycleII.java │ ├── LongestCommanSubsequence │ └── LongestCommanSubsequence.java │ ├── LongestConsecutiveSequence │ └── LongestConsecutiveSequence.java │ ├── LongestHappyString │ └── LongestHappyString.java │ ├── LongestIdealSubsequence │ └── LongestIdealSubsequence.java │ ├── LongestIncreasingSubsequence │ └── LongestIncreasingSubsequence.java │ ├── LongestPalindromicSubstring │ └── LongestPalindromicSubstring.java │ ├── LongestSquareStreakInAnArray │ └── LongestSquareStreakInAnArray.java │ ├── LongestSubarrayof1'sAfterDeletingOneElement │ └── LongestSubarrayofOnesAfterDeletingOneElement.java │ ├── LongestSubstringWithoutRepeatingCharacters │ └── LongestSubstringWithoutRepeatingCharacters.java │ ├── LongestZigZagPathInBinaryTree │ └── LongestZigZagPathInBinaryTree.java │ ├── LowestCommanAncestorOfBinaryTree │ └── LowestCommanAncestorOfBinaryTree.java │ ├── MInimumLengthOfStringAfterOperations │ └── MinimumLengthOfStringAfterOperations.java │ ├── MagicalString │ └── MagicalString.java │ ├── MajorityElementII │ └── MajorityElementII.java │ ├── MakeStringSubsequenceUsingCyclicIncrements │ └── MakeStringSubsequenceUsingCyclicIncrements.java │ ├── MakeSumDivisibleByP │ └── MakeSumDivisibleByP.java │ ├── MapOfHighestPeak │ └── MapOfHighestPeak.java │ ├── MaxChunksToMakeSorted │ └── MaxChunksToMakeSorted.java │ ├── MaxConsecutiveOnesIII │ └── MaxConsecutiveOnesIII.java │ ├── MaxNumberOfKSumPairs │ └── MaxNumberOfKSumPairs.java │ ├── MaximalScoreAfterApplyingKOperations │ └── MaximalScoreAfterApplyingKOperations.java │ ├── MaximumBeautyOfAnArrayAfterApplyingOperation │ └── MaximumBeautyOfAnArrayAfterApplyingOperation.java │ ├── MaximumDifferenceBetweenNodeAndAncestor │ └── MaximumDifferenceBetweenNodeAndAncestor.java │ ├── MaximumLengthOfConcatenatedStringWithUniqueCharacters │ └── MaximumLengthOfConcatenatedStringWithUniqueCharacters.java │ ├── MaximumLevelSumOfBinaryTree │ └── MaximumLevelSumOfBinaryTree.java │ ├── MaximumMatrixSum │ └── MaximumMatrixSum.java │ ├── MaximumNumberAfterDecreasingAndRearranging │ └── MaxNumAfterDecAndRearranging.java │ ├── MaximumNumberOfCoinsYouCanGet │ └── MaximumNumberOfCoinsYouCanGet.java │ ├── MaximumNumberOfIntegersToChooseFromRangeI │ └── MaximumNumberOfIntegersToChooseFromRangeI.java │ ├── MaximumNumberOfMovesInGrid │ └── MaximumNumberOfMovesInGrid.java │ ├── MaximumNumberOfVowelsInaSubstringOfAgivenLength │ └── MaximumNumberOfVowelsInaSubstringOfAgivenLength.java │ ├── MaximumProductSubarray │ └── MaximumProductSubarray.java │ ├── MaximumSubarray │ └── MaximumSubarray.java │ ├── MaximumSubsequenceScore │ └── MaximumSubsequenceScore.java │ ├── MaximumSumOfDistinctSubarraysWithLengthK │ └── MaximumSumOfDistinctSubarraysWithLengthK.java │ ├── MaximumSwap │ └── MaximumSwap.java │ ├── MaximumTwinSumOfaLinkedList │ └── MaximumTwinSumOfaLinkedList.java │ ├── MaximumWidthRamp │ └── MaximumWidthRamp.java │ ├── MaximumXORforEachQuery │ └── MaximumXORforEachQuery.java │ ├── MergeInBetweenLinkedList │ └── MergeInBetweenLinkedList.java │ ├── MergeIntervals │ └── MergeIntervals.java │ ├── MinStack │ └── MinStack.java │ ├── MinimizeMaximumPairSumInArray │ └── MinimizeMaximumPairSumInArray.java │ ├── MinimizeXOR │ └── MinimizeXOR.java │ ├── MinimizedMaximumOfProductsDistributedToAnyStore │ └── MinimizedMaximumOfProductsDistributedToAnyStore.java │ ├── MinimumAddToMakeParenthesesValid │ └── MinimumAddToMakeParenthesesValid.java │ ├── MinimumAmountOfTimeToCollectGarbage │ └── MinimumAmountOfTimeToCollectGarbage.java │ ├── MinimumArrayEnd │ └── MinimumArrayEnd.java │ ├── MinimumFallingPathSum │ └── MinimumFallingPathSum.java │ ├── MinimumFlipsToMakeA-OR-b-Equal-to-c │ └── MinimumFlipsToMakeAORbEqualtoc.java │ ├── MinimumHeightTrees │ └── MinimumHeightTrees.java │ ├── MinimumLengthOfStringAfterDeletingSimilarEnds │ └── MinimumLengthOfStringAfterDeletingSimilarEnds.java │ ├── MinimumLimitOfBallsInBag │ └── MinimumLimitOfBallsInBag.java │ ├── MinimumNumberOfArrowsToBurstBallons │ └── MinimumNumberOfArrowsToBurstBallons.java │ ├── MinimumNumberOfChangesToMakeBinaryStringBeautiful │ └── MinimumNumberOfChangesToMakeBinaryStringBeautiful.java │ ├── MinimumNumberOfOperationsToMakeArrayEmpty │ └── MinimumNumberOfOperationsToMakeArrayEmpty.java │ ├── MinimumNumberOfOperationsToMakeArrayXOREqualToK │ └── MinimumNumberOfOperationsToMakeArrayXOREqualToK.java │ ├── MinimumNumberOfOperationsToMoveAllBallsToEachBox │ └── MinimumNumberOfOperationsToMoveAllBallsToEachBox.java │ ├── MinimumNumberOfOperationsToSortBinaryTreeByLevel │ └── MinimumNumberOfOperationsToSortBinaryTreeByLevel.java │ ├── MinimumNumberOfStepsToMakeTwoStringsAnagram │ └── MinimumNumberOfStepsToMakeTwoStringsAnagram.java │ ├── MinimumNumberOfSwapsToMakeTheStringBalanced │ └── MinimumNumberOfSwapsToMakeTheStringBalanced.java │ ├── MinimumPathSum │ └── MinimumPathSum.java │ ├── MinimumProcessingTime │ └── MinimumProcessingTime.java │ ├── MinimumRemoveToMakeValidParenthesis │ └── MinimumRemoveToMakeValidParenthesis.java │ ├── MinimumTimeToMakeRopeColorful │ └── MinimumTimeToMakeRopeColorful.java │ ├── MostBeautifulItemForEachQuery │ └── MostBeautifulItemForEachQuery.java │ ├── MovePiecesToObtainaString │ └── MovePiecesToObtainaString.java │ ├── MultiplyStrings │ └── MultiplyStrings.java │ ├── NearestExitFromEntranceInMaze │ └── NearestExitFromEntranceInMaze.java │ ├── NeighboringBitwiseXOR │ └── NeighboringBitwiseXOR.java │ ├── NextPermutation │ └── NextPermutation.java │ ├── NonOverlappingIntervals │ └── NonOverlappingIntervals.java │ ├── NumberOfDiceRollsWithTargetSum │ └── NumberOfDiceRollsWithTargetSum.java │ ├── NumberOfIslands │ └── NumberOfIslands.java │ ├── NumberOfLaserBeamsInBank │ └── NumberOfLaserBeamsInBank.java │ ├── NumberOfProvinces │ └── NumberOfProvinces.java │ ├── NumberOfWaysToSplitArray │ └── NumberOfWaysToSplitArray.java │ ├── NumberOfWonderFulSubstrings │ └── NumberOfWonderfulSubstrings.java │ ├── OddEvenLinkedList │ └── OddEvenLinkedList.java │ ├── OnlineStockSpan │ └── OnlineStockSpan.java │ ├── OpentTheLock │ └── OpenTheLock.java │ ├── OutOfBoundaryPaths │ └── OutOfBoundaryPaths.java │ ├── PalindromePartitioning │ └── PalindromePartitioning.java │ ├── PalindromicSubstrings │ └── PalindromicSubstrings.java │ ├── PartitionArrayForMaximumSum │ └── PartitionArrayForMaximumSum.java │ ├── PartitionEqualSubsetSum │ └── PartitionEqualSubsetSum.java │ ├── PartitionLabels │ └── PartitionLabels.java │ ├── PathSumIII │ └── PathSumIII.java │ ├── PerfectSquares │ └── PerfectSquares.java │ ├── PermutationInString │ └── PermutationInString.java │ ├── Permutations │ └── Permutations.java │ ├── PrimeSubtractionOperation │ └── PrimeSubtractionOperation.java │ ├── ProductOfArrayExceptItself │ └── ProductOfArrayExceptItself.java │ ├── PseudoPalindromicPathsInBinaryTree │ └── PseudoPalindromicPathInBinaryTree.java │ ├── RandomPickIndex │ └── RandomPickIndex.java │ ├── RearrangeArrayElementsBySign │ └── RearrangeArrayElementsBySign.java │ ├── ReductionOperationsToMakeTheArrayElementsEqual │ └── ReductionOperationsToMakeTheArrayElementsEqual.java │ ├── RemoveColoredPiecesIfBothNeighboursAreTheSameColour │ └── RemoveColouredPieces.java │ ├── RemoveKdigits │ └── RemoveKdigits.java │ ├── RemoveNthNodeFromEndOfList │ └── RemoveNthNodeFromEndOfList.java │ ├── RemoveSubFoldersFromTheFileSystem │ └── RemoveSubFoldersFromTheFileSystem.java │ ├── RemoveZeroSumConsecutiveNodesFromLinkedList │ └── RemoveZeroSumConsecutiveNodesFromLinkedList.java │ ├── RemovingStarsFromAString │ └── RemovingStarsFromAString.java │ ├── ReorderList │ └── ReorderList.java │ ├── ReorderRoutesToMakeAllPathsLeadToTheCityZero │ └── ReorderRoutesToMakeAllPathsLeadToTheCityZero.java │ ├── ReorganizeString │ └── ReorganizeString.java │ ├── RestoreTheArrayFromAdjacentPairs │ └── RestoreTheArrayFromAdjacentPairs.java │ ├── RevealCardsInIncreasingOrder │ └── RevealCardsInIncreasingOrder.java │ ├── ReverseOddLevelsOfBinaryTree │ └── TreeNode.java │ ├── ReverseWordsInAString │ └── ReverseWordsInAString.java │ ├── RotateArray │ └── RotateArray.java │ ├── RotateImage │ └── RotateImage.java │ ├── RotatedDigits │ └── RotatedDigits.java │ ├── RottingOranges │ └── RottingOranges.java │ ├── Search2DMatrixII │ └── Search2DMatrixII.java │ ├── Search2Dmatrix │ └── Search2Dmatrix.java │ ├── SearchInRotatedSortedArray │ └── SearchInRotatedSortedArray.java │ ├── SeatReservationManager │ └── SeatReservationManager.java │ ├── SentenceSimilarityIII │ └── SentenceSimilarityIII.java │ ├── SeparateBlackAndWhiteBalls │ └── SeparateBlackAndWhiteBalls.java │ ├── SequentialDigits │ └── SequentialDigits.java │ ├── SetMatrixZeroes │ └── SetMatrixZeroes.java │ ├── ShortestDistanceAfterRoadAdditionQueriesI │ └── ShortestDistanceAfterRoadAdditionQueriesI.java │ ├── ShortestSubarrayToBeRemovedToMakeArraySorted │ └── ShortestSubarrayToBeRemovedToMakeArraySorted.java │ ├── ShortestSubarrayWithORatLeastKii │ └── ShortestSubarrayWithORatLeastKii.java │ ├── SingleNumberII │ └── SingleNumberII.java │ ├── SmallestNumberInInfiniteSet │ └── SmallestNumberInInfiniteSet.java │ ├── SmallestStringStartingFromLeaf │ └── SmallestStringStartingFromLeaf.java │ ├── SortAnArray │ └── SortAnArray.java │ ├── SortCharactersByFrequency │ └── SortCharactersByFrequency.java │ ├── SortColors │ └── SortColors.java │ ├── SortList │ └── SortList.java │ ├── SortVowelsInAstring │ └── SortVowelsInAString.java │ ├── SpecialArrayII │ └── SpecialArrayII.java │ ├── SpiralMatrix │ └── SpiralMatrix.java │ ├── SplitStringIntoMaxNumberOfUniqueSubstrings │ └── SplitStringIntoMaxNumberOfUniqueSubstrings.java │ ├── StringCompression │ └── StringCompression.java │ ├── StringCompressionIII │ └── StringCompressionIII.java │ ├── SubarrayProductLessThanK │ └── SubarrayProductLessThanK.java │ ├── SubarraySumEqualsK │ └── SubarraySumEqualsK.java │ ├── Subsets │ └── Subsets.java │ ├── SuccessfulPairsOfSpellsAndPotions │ └── SuccessfulPairsOfSpellsAndPotions.java │ ├── SumOfAbsoluteDifferencesInSortedArray │ └── SumOfAbsoluteDifferencesInSortedArray.java │ ├── SumOfSquareNumbers │ └── SumOfSquareNumbers.java │ ├── SumOfSubarrayMinimums │ └── SumOfSubarrayMinimums.java │ ├── SumRootToLeafNumbers │ └── SumRootToLeafNumbers.java │ ├── SwapNodesInPairs │ └── SwapNodesInPairs.java │ ├── TakeKofEachCharacterFromLeftAndRight │ └── TakeKofEachCharacterFromLeftAndRight.java │ ├── TaskScheduler │ └── TaskScheduler.java │ ├── TheNumberOfTheSmallestUnoccupiedChair │ └── TheNumberOfTheSmallestUnoccupiedChair.java │ ├── TopKfrequentElements │ └── TopK_FrequentElements.java │ ├── TotalCostToHireKworkers │ └── TotalCostToHireKworkers.java │ ├── TupleWithSameProduct │ └── TupleWithSameProduct.java │ ├── TwoBestNonOverlappingEvents │ └── TwoBestNonOverlappingEvents.java │ ├── TwoSumII │ └── TwoSumII.java │ ├── UglyNumberII │ └── UglyNumberII.java │ ├── UniqueLength3PalindromicSubsequences │ └── UniqueLength3PalindromicSubsequences.java │ ├── UniquePaths │ └── UniquePaths.java │ ├── UniquePathsII │ └── UglyNumberII.java │ ├── ValidParenthesisString │ └── ValidParenthesisString.java │ ├── ValidateBinarySearchTree │ └── ValidateBinarySearchTree.java │ ├── ValidateBinaryTreeNodes │ └── ValidateBinaryTreeNodes.java │ ├── VowelSpellChecker │ └── VowelSpellChecker.java │ ├── WidestVerticalAreaBetweenTwoPointsContainingNoPoints │ └── WidestVerticalAreaBetweenTwoPointsContainingNoPoints.java │ ├── WordBreak │ └── WordBreak.java │ ├── WordSearch │ └── WordSearch.java │ ├── WordSubsets │ └── WordSubsets.java │ └── ZigZagConversion │ └── ZigZagConversion.java ├── MySQL ├── Easy │ ├── ArticleViewsI.sql │ ├── BigCountries.sql │ ├── CountOrdersandAmount.sql │ ├── EmployeeBonus.sql │ ├── FindCustomerReferee.sql │ ├── InvalidTweets.sql │ ├── RecyclableAndLowFatProducts.sql │ ├── RisingTemperature.sql │ └── StudentsAndExaminations.sql └── Medium │ └── ConfirmationRate.sql ├── Python-Solutions ├── AddBinary.py ├── ArrayPartition.py ├── AssignCookies.py ├── ClimbingStairs.py ├── Find-the-Difference.py ├── HappyNumber.py ├── HeightChecker.py ├── MissingNumber.py ├── PalindromeNumber.py ├── Palindrome_linked_list.py ├── PlusOne.py ├── PowerOfFour.py ├── RomanToInteger.py ├── SameTree.py ├── Two_Sum.py └── ValidAnagram.py ├── README.md ├── Rust-Solutions ├── Happy_Number │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── Multiply_Strings │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── Pascal_Triangle │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── Pascal_Triangle2 │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── Plus_One │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── Remove_duplicate_from_sorted_array │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── Rotate_Array │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── Two_sum │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── Valid_Palindrome │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── best_time_to_buy_and_sell │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── contains_duplicate │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── remove_element │ ├── Cargo.toml │ └── src │ │ └── main.rs └── search_insert │ ├── Cargo.toml │ └── src │ └── main.rs ├── Swift-Solutions ├── Easy │ ├── MajorityElement │ │ └── MajorityElement.swift │ ├── MergeSortedArray │ │ └── MergeSortedArray.swift │ ├── RemoveDuplicatesfromSortedArray │ │ └── RemoveDuplicatesfromSortedArray.swift │ └── RemoveElement │ │ └── RemoveElement.swift └── Medium │ ├── 80 │ └── RemoveDuplicatesFromSortedArrayII.swift │ ├── 151 │ └── ReverseWordsInString.swift │ └── 189 │ └── RotateArray.swift └── Typescript-Solutions ├── .gitignore ├── package-lock.json ├── package.json ├── src ├── 01.ts ├── 09.ts ├── 100.ts ├── 1014.ts ├── 1072.ts ├── 118.ts ├── 119.ts ├── 121.ts ├── 125.ts ├── 13.ts ├── 1346.ts ├── 1358.ts ├── 136.ts ├── 1368.ts ├── 14.ts ├── 1400.ts ├── 1408.ts ├── 1455.ts ├── 1475.ts ├── 1524.ts ├── 1574.ts ├── 1639.ts ├── 1652.ts ├── 1726.ts ├── 1749.ts ├── 1752.ts ├── 1760.ts ├── 1765.ts ├── 1769.ts ├── 1780.ts ├── 1800.ts ├── 1861.ts ├── 1910.ts ├── 1930.ts ├── 1975.ts ├── 1976.ts ├── 20.ts ├── 2017.ts ├── 202.ts ├── 205.ts ├── 2054.ts ├── 2064.ts ├── 2070.ts ├── 2097.ts ├── 21.ts ├── 2109.ts ├── 2115.ts ├── 2116.ts ├── 2127.ts ├── 2161.ts ├── 217.ts ├── 2182.ts ├── 2185.ts ├── 2206.ts ├── 2226.ts ├── 2257.ts ├── 2270.ts ├── 2290.ts ├── 2337.ts ├── 2342.ts ├── 2349.ts ├── 2364.ts ├── 2379.ts ├── 2381.ts ├── 2401.ts ├── 2425.ts ├── 2429.ts ├── 2461.ts ├── 2466.ts ├── 2493.ts ├── 2516.ts ├── 2523.ts ├── 2529.ts ├── 2554.ts ├── 2558.ts ├── 2559.ts ├── 2560.ts ├── 2570.ts ├── 2577.ts ├── 2593.ts ├── 2594.ts ├── 26.ts ├── 2601.ts ├── 2657.ts ├── 2658.ts ├── 2661.ts ├── 2683.ts ├── 2685.ts ├── 27.ts ├── 2762.ts ├── 2779.ts ├── 28.ts ├── 2825.ts ├── 2924.ts ├── 2940.ts ├── 2948.ts ├── 2965.ts ├── 2981.ts ├── 3042.ts ├── 3105.ts ├── 3108.ts ├── 3151.ts ├── 3152.ts ├── 3169.ts ├── 3174.ts ├── 3191.ts ├── 3208.ts ├── 3223.ts ├── 3243.ts ├── 3254.ts ├── 3264.ts ├── 3306.ts ├── 3356.ts ├── 3394.ts ├── 35.ts ├── 494.ts ├── 58.ts ├── 66.ts ├── 67.ts ├── 684.ts ├── 689.ts ├── 69.ts ├── 70.ts ├── 769.ts ├── 773.ts ├── 802.ts ├── 83.ts ├── 862.ts ├── 873.ts ├── 88.ts ├── 916.ts ├── 94.ts └── 983.ts ├── tsconfig.json └── tsconfig.tsbuildinfo /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/.gitignore -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/AddTwoPromises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/AddTwoPromises.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/AllowOneFunctionCall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/AllowOneFunctionCall.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/ApplyTransformOverEachElementInArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/ApplyTransformOverEachElementInArray.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/ArrayPrototypeLast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/ArrayPrototypeLast.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/ArrayReduceTransformation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/ArrayReduceTransformation.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/ChunkArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/ChunkArray.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/Counter.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/CounterII.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/CounterII.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/CreateHelloWorldFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/CreateHelloWorldFunction.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/FilterElementsFromArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/FilterElementsFromArray.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/FunctionComposition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/FunctionComposition.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/Memoize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/Memoize.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/ObjectIsEmpty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/ObjectIsEmpty.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/ReturnLengthOfArguementPassed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/ReturnLengthOfArguementPassed.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/Sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/Sleep.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/SortBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/SortBy.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/TimeoutCancellation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/TimeoutCancellation.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Easy/ToBeOrNotToBe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Easy/ToBeOrNotToBe.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Medium/GroupBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Medium/GroupBy.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Medium/JoinTwoArraysById.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Medium/JoinTwoArraysById.js -------------------------------------------------------------------------------- /30-Days-Of-JavaScript/Medium/PromiseTimeLimit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/30-Days-Of-JavaScript/Medium/PromiseTimeLimit.js -------------------------------------------------------------------------------- /450+ DSA-Questions/Arrays/MaxAndMinOfArrayUsingMinComparisons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/450+ DSA-Questions/Arrays/MaxAndMinOfArrayUsingMinComparisons.java -------------------------------------------------------------------------------- /450+ DSA-Questions/Arrays/ReverseArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/450+ DSA-Questions/Arrays/ReverseArray.java -------------------------------------------------------------------------------- /450+ DSA-Questions/Context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/450+ DSA-Questions/Context.md -------------------------------------------------------------------------------- /450+ DSA-Questions/String/PalindromeString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/450+ DSA-Questions/String/PalindromeString.java -------------------------------------------------------------------------------- /450+ DSA-Questions/String/ReverseString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/450+ DSA-Questions/String/ReverseString.java -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Contributing.md -------------------------------------------------------------------------------- /Cpp-Solutions/Hard/TrappingRainWaterII.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Cpp-Solutions/Hard/TrappingRainWaterII.cpp -------------------------------------------------------------------------------- /Cpp-Solutions/Medium/FirstCompletelyPaintedRowOrColumn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Cpp-Solutions/Medium/FirstCompletelyPaintedRowOrColumn.cpp -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/ChangeDataType.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/ChangeDataType.py -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/CreateAdataframeFromList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/CreateAdataframeFromList.py -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/CreateAnewColumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/CreateAnewColumn.py -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/DisplayTheFirstThreeRows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/DisplayTheFirstThreeRows.py -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/DropDuplicateRows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/DropDuplicateRows.py -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/DropMissingData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/DropMissingData.py -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/FillMissingData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/FillMissingData.py -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/GetTheSizeOfAdataFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/GetTheSizeOfAdataFrame.py -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/ModifyColumns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/ModifyColumns.py -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/RenameColumns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/RenameColumns.py -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/ReshapeDataConcatenate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/ReshapeDataConcatenate.py -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/ReshapeDataMelt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/ReshapeDataMelt.py -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/ReshapeDataPivot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/ReshapeDataPivot.py -------------------------------------------------------------------------------- /Introduction-To-Pandas/Easy/SelectData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Introduction-To-Pandas/Easy/SelectData.py -------------------------------------------------------------------------------- /Java-Solutions/Easy/1051/HeightChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/1051/HeightChecker.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/1122/RelativeSortArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/1122/RelativeSortArray.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/1550/ThreeConsecutiveOdds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/1550/ThreeConsecutiveOdds.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/1608/SpecialArrayWithXElementsGreaterThanOrEqualX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/1608/SpecialArrayWithXElementsGreaterThanOrEqualX.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/1863/SumOfAllSubsetXORTotals.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/1863/SumOfAllSubsetXORTotals.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/2037/MinimumNumberOfMovesToSeatEveryone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/2037/MinimumNumberOfMovesToSeatEveryone.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/2357/MakeArrayZeroBySubtractingEqualAmmounts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/2357/MakeArrayZeroBySubtractingEqualAmmounts.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/2373/LargestLocalValuesInMatrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/2373/LargestLocalValuesInMatrix.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/3314/ConstructTheMinimumBitwiseArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/3314/ConstructTheMinimumBitwiseArray.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/350/IntersectionOfTwoArraysII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/350/IntersectionOfTwoArraysII.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/506/RelativeRanks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/506/RelativeRanks.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/AssignCookies/AssignCookies.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/AssignCookies/AssignCookies.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/AssignCookies/AssignCookies.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/AssignCookies/AssignCookies.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/BackspaceStringCompare/BackspaceStringCompare.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/BackspaceStringCompare/BackspaceStringCompare.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/BestTimeToBuyAndSellStock/BestTimeToBuyAndSellStock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/BestTimeToBuyAndSellStock/BestTimeToBuyAndSellStock.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/BinarySearch/BinarySearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/BinarySearch/BinarySearch.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/BinaryTreeInorderTraversal/BTInorderTraversal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/BinaryTreeInorderTraversal/BTInorderTraversal.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/BinaryTreePostOrderTraversal/BinaryTreePostOrderTraversal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/BinaryTreePostOrderTraversal/BinaryTreePostOrderTraversal.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/BinaryTreePostOrderTraversal/BinaryTreePostOrderTraversal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/BinaryTreePostOrderTraversal/BinaryTreePostOrderTraversal.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/BinaryTreePostOrderTraversal/TreeNode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/BinaryTreePostOrderTraversal/TreeNode.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/BinaryTreePostOrderTraversal/tempCodeRunnerFile.java: -------------------------------------------------------------------------------- 1 | node.left = new TreeNode(null); -------------------------------------------------------------------------------- /Java-Solutions/Easy/BuddyStrings/BuddyStrings.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/BuddyStrings/BuddyStrings.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/BuddyStrings/BuddyStrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/BuddyStrings/BuddyStrings.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/BuyTwoChocolates/BuyTwoChocolates.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/BuyTwoChocolates/BuyTwoChocolates.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/CalculateMoneyInLeetcodeBank/CalculateMoneyInLeetcodeBank.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/CalculateMoneyInLeetcodeBank/CalculateMoneyInLeetcodeBank.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/CanPlaceFlowers/CanPlaceFlowers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/CanPlaceFlowers/CanPlaceFlowers.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/CheckIfNandItsDoubleExists/CheckIfNandItsDoubleExists.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/CheckIfNandItsDoubleExists/CheckIfNandItsDoubleExists.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/CheckIfNandItsDoubleExists/CheckIfNandItsDoubleExists.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/CheckIfNandItsDoubleExists/CheckIfNandItsDoubleExists.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/CheckIfTwoStringArraysAreEquivalent/CheckIfTwoStringArraysAreEquivalent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/CheckIfTwoStringArraysAreEquivalent/CheckIfTwoStringArraysAreEquivalent.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/CircularSentence/CircularSentence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/CircularSentence/CircularSentence.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/ConstructStringFromBinaryTree/ConstructStringFromBinaryTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ConstructStringFromBinaryTree/ConstructStringFromBinaryTree.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/CountElementsWithMaximumFrequency/CountElementsWithMaximumFrequency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/CountElementsWithMaximumFrequency/CountElementsWithMaximumFrequency.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/CountNegativeNumIn/CountNegNumInSortedMatrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/CountNegativeNumIn/CountNegNumInSortedMatrix.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/CountOfMatchesInTournament/CountOfMatchesInTournament.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/CountOfMatchesInTournament/CountOfMatchesInTournament.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/CountPrefixAndSuffixPairsI/CountPrefixAndSuffixPairsI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/CountPrefixAndSuffixPairsI/CountPrefixAndSuffixPairsI.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/CountingBits/CountingBits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/CountingBits/CountingBits.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/CountingWordsWithGivenPrefix/CountingWordsWithGivenPrefix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/CountingWordsWithGivenPrefix/CountingWordsWithGivenPrefix.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/DefuseTheBomb/DefuseTheBomb.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/DefuseTheBomb/DefuseTheBomb.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/DeleteCharactersToMakeFancyString/DeleteCharactersToMakeFancyString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/DeleteCharactersToMakeFancyString/DeleteCharactersToMakeFancyString.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/DestinationCity/DestinationCity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/DestinationCity/DestinationCity.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/DetectCapital/DetectCapital.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/DetectCapital/DetectCapital.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/DetectCapital/DetectCapital.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/DetectCapital/DetectCapital.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/DiameterOfBinaryTree/DiameterOfBinaryTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/DiameterOfBinaryTree/DiameterOfBinaryTree.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/DifferenceBetweenElementSum_DigitSumInArray/DiffElementSumAndDigitSum.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/DifferenceBetweenElementSum_DigitSumInArray/DiffElementSumAndDigitSum.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/DifferenceBetweenElementSum_DigitSumInArray/DiffElementSumAndDigitSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/DifferenceBetweenElementSum_DigitSumInArray/DiffElementSumAndDigitSum.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/DivisorGame/DivisorGame.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/DivisorGame/DivisorGame.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/DivisorGame/DivisorGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/DivisorGame/DivisorGame.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/DuplicateZeroes/DuplicateZeroes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/DuplicateZeroes/DuplicateZeroes.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/FaultyKeyboard/FaultyKeyboard.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/FaultyKeyboard/FaultyKeyboard.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/FaultyKeyboard/FaultyKeyboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/FaultyKeyboard/FaultyKeyboard.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/FinalPricesWithSpecialDiscountInShop/FinalPricesWithSpecialDiscountInShop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/FinalPricesWithSpecialDiscountInShop/FinalPricesWithSpecialDiscountInShop.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/FindFirstPalindromicStringInTheArray/FindFirstPalindromicStringInTheArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/FindFirstPalindromicStringInTheArray/FindFirstPalindromicStringInTheArray.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/FindIfPathExistsInGraph/FindIfPathExistsInGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/FindIfPathExistsInGraph/FindIfPathExistsInGraph.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/FindModeInBinarySearchTree/FindModeInBinarySearchTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/FindModeInBinarySearchTree/FindModeInBinarySearchTree.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/FindPivotIndex/FindPivotIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/FindPivotIndex/FindPivotIndex.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/FindTheDifferenceOfTwoArrays/FindTheDifferenceOfTwoArrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/FindTheDifferenceOfTwoArrays/FindTheDifferenceOfTwoArrays.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/FindTheHighestAltitude/FindTheHighestAltitude.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/FindTheHighestAltitude/FindTheHighestAltitude.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/FindTheTownJudge/FIndTheTownJudge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/FindTheTownJudge/FIndTheTownJudge.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/FirstUniqueCharacterInString/FirstUniqueCharacterInString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/FirstUniqueCharacterInString/FirstUniqueCharacterInString.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/FlippingTheImage/FlippingTheImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/FlippingTheImage/FlippingTheImage.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/GreatestCommanDivisorOfStrings/GreatestCommanDivisorOfStrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/GreatestCommanDivisorOfStrings/GreatestCommanDivisorOfStrings.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/GuessNumberHigherOrLower/GuessNumberHigherOrLower.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/GuessNumberHigherOrLower/GuessNumberHigherOrLower.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/HammingDistance/HammingDistance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/HammingDistance/HammingDistance.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/HeightChecker/HeightChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/HeightChecker/HeightChecker.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/ImageSmoother/ImageSmoother.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ImageSmoother/ImageSmoother.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/ImplementQueueUsingStacks/ImplementQueueUsingStacks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ImplementQueueUsingStacks/ImplementQueueUsingStacks.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/IntersectionOfTwoLinkedLists/IntersectionOfTwoLinkedLists.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/IntersectionOfTwoLinkedLists/IntersectionOfTwoLinkedLists.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/IntersectionsOfTwoArrays/IntersectionsOfTwoArrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/IntersectionsOfTwoArrays/IntersectionsOfTwoArrays.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/IsSubsequence/IsSubsequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/IsSubsequence/IsSubsequence.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/IslandPerimeter/IslandPerimeter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/IslandPerimeter/IslandPerimeter.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/IsomorphicStrings/IsomorphicStrings.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/IsomorphicStrings/IsomorphicStrings.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/IsomorphicStrings/IsomorphicStrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/IsomorphicStrings/IsomorphicStrings.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/KidsWithTheGreatestNumberOfCandies/KidsWithTheGreatestNumberOfCandies.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/KidsWithTheGreatestNumberOfCandies/KidsWithTheGreatestNumberOfCandies.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/LargestThreeSameDigitNumber/LargestThreeSameDigitNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/LargestThreeSameDigitNumber/LargestThreeSameDigitNumber.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/LeafSimilarTrees/LeafSimilarTrees.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/LeafSimilarTrees/LeafSimilarTrees.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/LinkedListCycle/LinkedListCycle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/LinkedListCycle/LinkedListCycle.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/LongestOddNumberInString/LongestOddNumberInString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/LongestOddNumberInString/LongestOddNumberInString.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MakeTheStringGreat/MakeTheStringGreat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MakeTheStringGreat/MakeTheStringGreat.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MaximumAscendingSubarraySum/MaximumAscendingSubarraySum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MaximumAscendingSubarraySum/MaximumAscendingSubarraySum.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MaximumAverageSubArrayI/MaximumAverageSubArrayI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MaximumAverageSubArrayI/MaximumAverageSubArrayI.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MaximumDepthOfBinaryTree/MaximumDepthOfBinaryTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MaximumDepthOfBinaryTree/MaximumDepthOfBinaryTree.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MaximumNestingDepthOfTheParentheses/MaximumNestingDepthOfTheParentheses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MaximumNestingDepthOfTheParentheses/MaximumNestingDepthOfTheParentheses.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MaximumOddBinaryNumber/MaximumOddBinaryNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MaximumOddBinaryNumber/MaximumOddBinaryNumber.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MaximumProductOfTwoElementsOfTheArray/MaximumProductOfTwoElementsOfTheArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MaximumProductOfTwoElementsOfTheArray/MaximumProductOfTwoElementsOfTheArray.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MaximumScoreAfterSplittingString/MaximumScoreAfterSplittingString.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MaximumScoreAfterSplittingString/MaximumScoreAfterSplittingString.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/MaximumScoreAfterSplittingString/MaximumScoreAfterSplittingString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MaximumScoreAfterSplittingString/MaximumScoreAfterSplittingString.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MergeSimilarItems/MergeSimilarItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MergeSimilarItems/MergeSimilarItems.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MergeStringsAlternately/MergeStringsAlternately.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MergeStringsAlternately/MergeStringsAlternately.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MiddleOfTheLinkedList/MiddleOfTheLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MiddleOfTheLinkedList/MiddleOfTheLinkedList.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MinCostClimbingStairs/MinCostClimbingStairs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MinCostClimbingStairs/MinCostClimbingStairs.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MinimumCommonValue/MinimumCommanValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MinimumCommonValue/MinimumCommanValue.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MinimumTimeVisitingAllPoints/MinimumTimeVisitingAllPoints.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MinimumTimeVisitingAllPoints/MinimumTimeVisitingAllPoints.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MissingNumber/MissingNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MissingNumber/MissingNumber.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MonotonicArray/MonotonicArray.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MonotonicArray/MonotonicArray.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/MonotonicArray/MonotonicArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MonotonicArray/MonotonicArray.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/MoveZeroes/MoveZeroes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/MoveZeroes/MoveZeroes.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/NthTribonnaciNumber/NthTribonnaciNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/NthTribonnaciNumber/NthTribonnaciNumber.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/NumberOf1Bits/NumberOf1Bits.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/NumberOf1Bits/NumberOf1Bits.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/NumberOf1Bits/NumberOf1Bits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/NumberOf1Bits/NumberOf1Bits.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/NumberOfEmployeesWhoMetTheTarget/NumberOfEmployeesWhoMetTheTarget.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/NumberOfEmployeesWhoMetTheTarget/NumberOfEmployeesWhoMetTheTarget.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/NumberOfEmployeesWhoMetTheTarget/NumberOfEmployeesWhoMetTheTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/NumberOfEmployeesWhoMetTheTarget/NumberOfEmployeesWhoMetTheTarget.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/NumberOfGoodPairs/NumberOfGoodPairs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/NumberOfGoodPairs/NumberOfGoodPairs.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/NumberOfStringCalls/NumberOfStringCalls.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/NumberOfStringCalls/NumberOfStringCalls.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/NumberOfStudentsUnableToEatLunch/NumberOfStudentsUnableToEatLunch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/NumberOfStudentsUnableToEatLunch/NumberOfStudentsUnableToEatLunch.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/PalindromeLinkedList/PalindromeLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/PalindromeLinkedList/PalindromeLinkedList.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/Pascal'sTriangleII/PascalsTriangleII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/Pascal'sTriangleII/PascalsTriangleII.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/PathCrossing/PathCrossing.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/PathCrossing/PathCrossing.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/PathCrossing/PathCrossing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/PathCrossing/PathCrossing.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/PowerOfFour/PowerOfFour.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/PowerOfFour/PowerOfFour.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/PowersOfTwo/PowersOfTwo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/PowersOfTwo/PowersOfTwo.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/RangeSumOfBST/RangeSumOfBST.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/RangeSumOfBST/RangeSumOfBST.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/RankTransformOfAnArray/RankTransformOfAnArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/RankTransformOfAnArray/RankTransformOfAnArray.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/RelativeSortArray/RelativeSortArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/RelativeSortArray/RelativeSortArray.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/ReverseOnlyLetters/ReverseOnlyLetters.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ReverseOnlyLetters/ReverseOnlyLetters.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/ReverseOnlyLetters/ReverseOnlyLetters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ReverseOnlyLetters/ReverseOnlyLetters.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/ReversePrefixOfWord/ReversePrefixOfWord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ReversePrefixOfWord/ReversePrefixOfWord.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/ReverseVowelOfaString/ReverseVowelOfaString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ReverseVowelOfaString/ReverseVowelOfaString.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/ReverseWordsInAStringIII/ReverseWordsInAStringIII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ReverseWordsInAStringIII/ReverseWordsInAStringIII.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/ReversedLinkedList/ListNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ReversedLinkedList/ListNode.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/ReversedLinkedList/ReversedLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ReversedLinkedList/ReversedLinkedList.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/RichestCustomerWealth/RichestCustomerWealth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/RichestCustomerWealth/RichestCustomerWealth.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/RomanToInteger/RomanToInteger.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/RomanToInteger/RomanToInteger.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/RomanToInteger/RomanToInteger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/RomanToInteger/RomanToInteger.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/SameTree/SameTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/SameTree/SameTree.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/SearchInBinarySearchTree/SearchInBinarySearchTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/SearchInBinarySearchTree/SearchInBinarySearchTree.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/SearchInsertPosition/SearchInsertPosition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/SearchInsertPosition/SearchInsertPosition.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/SetMismatch/SetMismatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/SetMismatch/SetMismatch.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/SignOfTheProductOfAnArray/SignOfTheProductOfAnArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/SignOfTheProductOfAnArray/SignOfTheProductOfAnArray.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/SingleNumber/SingleNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/SingleNumber/SingleNumber.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/SortArray/SortArrayByParity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/SortArray/SortArrayByParity.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/SortIntegersByTheNumberOf1Bits/SortIntegersByTheNumberOf1Bits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/SortIntegersByTheNumberOf1Bits/SortIntegersByTheNumberOf1Bits.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/SplitAStringIntoBalancedStrings/SplitAStringIntoBalancedStrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/SplitAStringIntoBalancedStrings/SplitAStringIntoBalancedStrings.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/SquaresOfSortedArray/SquaresOfSortedArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/SquaresOfSortedArray/SquaresOfSortedArray.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/StringMatchingInAnArray/StringMatchingInAnArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/StringMatchingInAnArray/StringMatchingInAnArray.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/SumOfLeftLeaves/SumOfLeftLeaves.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/SumOfLeftLeaves/SumOfLeftLeaves.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/SymmetricTree/SymmetricTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/SymmetricTree/SymmetricTree.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/TakeGiftsFromTheRichestPile/TakeGiftsFromTheRichestPile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/TakeGiftsFromTheRichestPile/TakeGiftsFromTheRichestPile.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/TimeNeededToBuyTickets/TimeNeededToBuyTickets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/TimeNeededToBuyTickets/TimeNeededToBuyTickets.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/TransposeMatrix/TransposeMatrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/TransposeMatrix/TransposeMatrix.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/TwoSum/TwoSum.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/TwoSum/TwoSum.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/TwoSum/TwoSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/TwoSum/TwoSum.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/UniqueNumberOfOccurences/UniqueNumberOfOccurences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/UniqueNumberOfOccurences/UniqueNumberOfOccurences.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/ValidPalindrome2/ValidPalindrome2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ValidPalindrome2/ValidPalindrome2.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/ValidPalindrome2/ValidPalindrome2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ValidPalindrome2/ValidPalindrome2.java -------------------------------------------------------------------------------- /Java-Solutions/Easy/ValidPerfectSquare/ValidPerfectSquare.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ValidPerfectSquare/ValidPerfectSquare.class -------------------------------------------------------------------------------- /Java-Solutions/Easy/ValidPerfectSquare/ValidPerfectSquare.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Easy/ValidPerfectSquare/ValidPerfectSquare.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/1255/MaximumScoreWordsFormedByLetters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/1255/MaximumScoreWordsFormedByLetters.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/330/PatchingArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/330/PatchingArray.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/857/MinimumCostToHireKworkers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/857/MinimumCostToHireKworkers.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/995/MinimumNumberOfKconsecutiveBitFlips.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/995/MinimumNumberOfKconsecutiveBitFlips.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/ArithmeticSlicesII-Subsequence/ArithmeticSliceII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/ArithmeticSlicesII-Subsequence/ArithmeticSliceII.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/BasicCalculator/BasicCalculator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/BasicCalculator/BasicCalculator.class -------------------------------------------------------------------------------- /Java-Solutions/Hard/BasicCalculator/BasicCalculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/BasicCalculator/BasicCalculator.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/BinaryTreeMaximumPathSum/BinaryTreeMaximumPathSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/BinaryTreeMaximumPathSum/BinaryTreeMaximumPathSum.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/BuildArrayWhereKcomparisons/BuildArrayWhereKcomparisons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/BuildArrayWhereKcomparisons/BuildArrayWhereKcomparisons.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/BusRoutes/BusRoutes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/BusRoutes/BusRoutes.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/CherryPickupII/CherryPickupII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/CherryPickupII/CherryPickupII.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/ConstrainedSubsequenceSum/ConstrainedSubsequenceSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/ConstrainedSubsequenceSum/ConstrainedSubsequenceSum.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/CountSubarraysWithFixedBounds/CountSubarraysWithFixedBounds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/CountSubarraysWithFixedBounds/CountSubarraysWithFixedBounds.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/CountVowelsPermutation/CountVowelsPermutation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/CountVowelsPermutation/CountVowelsPermutation.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/DesignGraphWithShortestPathCalculator/DesignGraphWithShortestPathCalculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/DesignGraphWithShortestPathCalculator/DesignGraphWithShortestPathCalculator.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/FindInMountainArray/FindInMountainArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/FindInMountainArray/FindInMountainArray.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/FindMedianFromDataStream/FindMedianFromDataStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/FindMedianFromDataStream/FindMedianFromDataStream.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/FirstMissingPositive/FIrstMissingPositive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/FirstMissingPositive/FIrstMissingPositive.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/FreedomTrail/FreedomTrail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/FreedomTrail/FreedomTrail.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/GreatestCommonDivisorTraversal/GreatestCommonDivisorTraversal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/GreatestCommonDivisorTraversal/GreatestCommonDivisorTraversal.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/LargestRectangleInHistogram/LargestRectangleInHistogram.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/LargestRectangleInHistogram/LargestRectangleInHistogram.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/LongestValidParenthesis/LongestValidParenthesis.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/LongestValidParenthesis/LongestValidParenthesis.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MaxDotProductOfTwoSubsequences/MaxDotProductOfTwoSubsequences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MaxDotProductOfTwoSubsequences/MaxDotProductOfTwoSubsequences.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MaximalRectangle/MaximalRectangle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MaximalRectangle/MaximalRectangle.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MaximumNumberOfKDivisibleComponents/MaximumNumberOfKDivisibleComponents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MaximumNumberOfKDivisibleComponents/MaximumNumberOfKDivisibleComponents.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MaximumProfitInJobScheduling/MaximumProfitInJobScheduling.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MaximumProfitInJobScheduling/MaximumProfitInJobScheduling.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MaximumScoreOfaGoodSubarray/MaximumScoreOfaGoodSubarray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MaximumScoreOfaGoodSubarray/MaximumScoreOfaGoodSubarray.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MedianOfTwoSortedArrays/MedianOfTwoSortedArrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MedianOfTwoSortedArrays/MedianOfTwoSortedArrays.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MeetingRoomsIII/MeetingRoomsIII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MeetingRoomsIII/MeetingRoomsIII.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MergeKSortedLists/MergeKSortedLists.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MergeKSortedLists/MergeKSortedLists.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MinimumDifficultyOfJobSchedule/MinimumDifficultyOfJobSchedule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MinimumDifficultyOfJobSchedule/MinimumDifficultyOfJobSchedule.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MinimumFallingPathSumII/MinimumFallingPathSumII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MinimumFallingPathSumII/MinimumFallingPathSumII.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MinimumObstacleRemovalToReachCorner/MinimumObstacleRemovalToReachCorner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MinimumObstacleRemovalToReachCorner/MinimumObstacleRemovalToReachCorner.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MinimumTimeToVisitACellInAGrid/MinimumTimeToVisitACellInAGrid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MinimumTimeToVisitACellInAGrid/MinimumTimeToVisitACellInAGrid.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MinimumTotalDistanceTraveled/MinimumTotalDistanceTraveled.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MinimumTotalDistanceTraveled/MinimumTotalDistanceTraveled.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/MinimumWindowSubstring/MinimumWindowSubstring.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/MinimumWindowSubstring/MinimumWindowSubstring.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/NQueens/NQueens.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/NQueens/NQueens.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/NoOfFlowersInFullBloom/NoOfFlowersInFullBloom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/NoOfFlowersInFullBloom/NoOfFlowersInFullBloom.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/NumberOfSubmatricesThatSumToTarget/NumberOfSubmatricesThatSumToTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/NumberOfSubmatricesThatSumToTarget/NumberOfSubmatricesThatSumToTarget.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/NumberOfWaysToDivideAlongCorridor/NumberOfWaysToDivideAlongCorridor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/NumberOfWaysToDivideAlongCorridor/NumberOfWaysToDivideAlongCorridor.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/PaintingTheWalls/PaintingTheWalls.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/PaintingTheWalls/PaintingTheWalls.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/ParallelCourseIII/ParallelCourseIII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/ParallelCourseIII/ParallelCourseIII.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/ParsingAbooleanExpression/ParsingAbooleanExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/ParsingAbooleanExpression/ParsingAbooleanExpression.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/PoorPigs/PoorPigs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/PoorPigs/PoorPigs.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/ReverseNodesInKGroup/ReverseNodesInKGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/ReverseNodesInKGroup/ReverseNodesInKGroup.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/ShortestSubarrayWithSumAtLeastK/ShortestSubarrayWithSumAtLeastK.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/ShortestSubarrayWithSumAtLeastK/ShortestSubarrayWithSumAtLeastK.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/SlidingPuzzle/SlidingPuzzle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/SlidingPuzzle/SlidingPuzzle.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/SlidingWindowMaximum/SlidingWindowMaximum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/SlidingWindowMaximum/SlidingWindowMaximum.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/SmallestRangeCoveringElementsFromKLists/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/SmallestRangeCoveringElementsFromKLists/Solution.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/StringCompressionII/StringCompressionII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/StringCompressionII/StringCompressionII.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/SubarraysWithKdifferentIntegers/SubarraysWithKdifferentIntegers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/SubarraysWithKdifferentIntegers/SubarraysWithKdifferentIntegers.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/SumOfDistancesInTrees/SumOfDistancesInTrees.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/SumOfDistancesInTrees/SumOfDistancesInTrees.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/TrappingRainWater/TrappingRainWater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/TrappingRainWater/TrappingRainWater.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/ValidArrangementOfPairs/ValidArrangementOfPairs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/ValidArrangementOfPairs/ValidArrangementOfPairs.java -------------------------------------------------------------------------------- /Java-Solutions/Hard/kInversePairsAway/kInversePairsAway.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Hard/kInversePairsAway/kInversePairsAway.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/1208/GetEqualSubstringsWithinBudget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/1208/GetEqualSubstringsWithinBudget.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/1325/DeleteLeavesWithGivenValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/1325/DeleteLeavesWithGivenValue.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/132Pattern/OneThreeTwoPattern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/132Pattern/OneThreeTwoPattern.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/1404/NumberOfStepsToReduceNumberInBinaryRepresentationToOne.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/1404/NumberOfStepsToReduceNumberInBinaryRepresentationToOne.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/1405/Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/1405/Question.md -------------------------------------------------------------------------------- /Java-Solutions/Medium/1405/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/1405/Solution.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/1509/MinimumDifferenceBetweenLargestAndSmallestValueInThreeMoves.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/1509/MinimumDifferenceBetweenLargestAndSmallestValueInThreeMoves.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/1552/MagneticForceBetweenTwoBalls.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/1552/MagneticForceBetweenTwoBalls.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/165/CompareVersionNumbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/165/CompareVersionNumbers.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/17/LetterCobinationOfPhoneNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/17/LetterCobinationOfPhoneNumber.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/237/DeleteNodeInLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/237/DeleteNodeInLinkedList.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/2487/RemoveNodesFromLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/2487/RemoveNodesFromLinkedList.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/260/SingleNumberIII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/260/SingleNumberIII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/2812/FindTheSafestPathInGrid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/2812/FindTheSafestPathInGrid.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/2816/DoubleNumberRepresentedAsLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/2816/DoubleNumberRepresentedAsLinkedList.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/3075/MaximizeHappinessOfSelectedChildren.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/3075/MaximizeHappinessOfSelectedChildren.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/3Sum/ThreeSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/3Sum/ThreeSum.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/50/Pow(x,n).java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/50/Pow(x,n).java -------------------------------------------------------------------------------- /Java-Solutions/Medium/523/ContinuousSubarraySum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/523/ContinuousSubarraySum.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/648/ReplaceWords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/648/ReplaceWords.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/75/SortColors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/75/SortColors.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/786/KthSmallestPrimeFraction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/786/KthSmallestPrimeFraction.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/846/HandsOfStraights.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/846/HandsOfStraights.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/881/BoatToSavePeople.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/881/BoatToSavePeople.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/945/MinimumIncrementToMakeArrayUnique.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/945/MinimumIncrementToMakeArrayUnique.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/974/SubarraySumsDivisibleByK.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/974/SubarraySumsDivisibleByK.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/979/DistributeCoinsInBinaryTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/979/DistributeCoinsInBinaryTree.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/AddOneRowToTree/AddOneRowToTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/AddOneRowToTree/AddOneRowToTree.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/AddTwoNumber/AddTwoNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/AddTwoNumber/AddTwoNumber.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/AddingSpacesToString/AddingSpacesToString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/AddingSpacesToString/AddingSpacesToString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ArithmeticSubarrays/ArithmeticSubarrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ArithmeticSubarrays/ArithmeticSubarrays.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/AsteroidCollision/AsteroidCollision.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/AsteroidCollision/AsteroidCollision.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/BagOfTokens/BagOfTokens.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/BagOfTokens/BagOfTokens.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/BasicCalculatorII/BasicCalculatorII.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/BasicCalculatorII/BasicCalculatorII.class -------------------------------------------------------------------------------- /Java-Solutions/Medium/BasicCalculatorII/BasicCalculatorII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/BasicCalculatorII/BasicCalculatorII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/BinarySubarraysWithSum/BinarySubarraysWithSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/BinarySubarraysWithSum/BinarySubarraysWithSum.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/BinaryTreeLevelOrderTraversal/BinaryTreeLevelOrderTraversal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/BinaryTreeLevelOrderTraversal/BinaryTreeLevelOrderTraversal.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/BinaryTreeRightSideView/BinaryTreeRightSideView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/BinaryTreeRightSideView/BinaryTreeRightSideView.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/BinaryTreesWithFactors/BinaryTreesWithFactors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/BinaryTreesWithFactors/BinaryTreesWithFactors.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/BitwiseANDofNumbersRange/BitwiseANDofNumbersRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/BitwiseANDofNumbersRange/BitwiseANDofNumbersRange.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/BitwiseXORofAllPairings/BitwiseXORofAllPairings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/BitwiseXORofAllPairings/BitwiseXORofAllPairings.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/BuildAnArrayWithStackOperations/BuildAnArrayWithStackOperations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/BuildAnArrayWithStackOperations/BuildAnArrayWithStackOperations.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CheapestFlightsWithinKStops/CheapestFlightsWithinKStops.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CheapestFlightsWithinKStops/CheapestFlightsWithinKStops.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CheckIfArrayPairsAreDivisibleByK/CheckIfArrayPairsAreDivisibleByK.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CheckIfArrayPairsAreDivisibleByK/CheckIfArrayPairsAreDivisibleByK.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CoinChange/CoinChange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CoinChange/CoinChange.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CombinationSum/CombinationSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CombinationSum/CombinationSum.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CombinationSumII/CombinationSumII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CombinationSumII/CombinationSumII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CombinationSumIII/CombinationSumIII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CombinationSumIII/CombinationSumIII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ComplexNumberMultiplication/ComplexNumberMultiplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ComplexNumberMultiplication/ComplexNumberMultiplication.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ConstructKPalindromeStrings/ConstructKPalindromeStrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ConstructKPalindromeStrings/ConstructKPalindromeStrings.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ConstructStringWithRepeatLimit/ConstructStringWithRepeatLimit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ConstructStringWithRepeatLimit/ConstructStringWithRepeatLimit.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ContainerWithMostWater/ContainerWithMostWater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ContainerWithMostWater/ContainerWithMostWater.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ContiguousArray/ContiguousArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ContiguousArray/ContiguousArray.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ContinuousSubarrays/ContinuousSubarrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ContinuousSubarrays/ContinuousSubarrays.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CopyListWithRandomPointer/CopyListWithRandomPointer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CopyListWithRandomPointer/CopyListWithRandomPointer.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CountGoodNodesInBinaryTree/CountGoodNodesInBinaryTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CountGoodNodesInBinaryTree/CountGoodNodesInBinaryTree.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CountNicePairsInAnArray/CountNicePairsInAnArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CountNicePairsInAnArray/CountNicePairsInAnArray.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CountNodesEqualToAverageOfSubtree/CountNodesEqualToAverageOfSubtree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CountNodesEqualToAverageOfSubtree/CountNodesEqualToAverageOfSubtree.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CountNumberOfHomogeneousSubstrings/CountNumberOfHomogeneousSubstrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CountNumberOfHomogeneousSubstrings/CountNumberOfHomogeneousSubstrings.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CountNumbersWithUniqueDigits/CountNumbersWithUniqueDigits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CountNumbersWithUniqueDigits/CountNumbersWithUniqueDigits.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CountSquareSubmatricesWithAllOnes/CountSquareSubmatricesWithAllOnes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CountSquareSubmatricesWithAllOnes/CountSquareSubmatricesWithAllOnes.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CountTheNumberOfFairPairs/CountTheNumberOfFairPairs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CountTheNumberOfFairPairs/CountTheNumberOfFairPairs.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CountUnguardedCellsInTheGrid/CountUnguardedCellsInTheGrid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CountUnguardedCellsInTheGrid/CountUnguardedCellsInTheGrid.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CourseSchedule/CourseSchedule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CourseSchedule/CourseSchedule.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CousinsInBinaryTreeII/CousinsInBinaryTreeII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CousinsInBinaryTreeII/CousinsInBinaryTreeII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/CustomSortString/CustomSortString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/CustomSortString/CustomSortString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/DailyTemperatures/DailyTemperatures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/DailyTemperatures/DailyTemperatures.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/DecodeString/DecodeString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/DecodeString/DecodeString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/DecodingWays/DecodingWays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/DecodingWays/DecodingWays.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/DeleteNodeInBST/DeleteNodeInBST.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/DeleteNodeInBST/DeleteNodeInBST.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/DeleteTheMiddleNodeOfTheLinkedList/DeleteTheMiddleNodeOfTheLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/DeleteTheMiddleNodeOfTheLinkedList/DeleteTheMiddleNodeOfTheLinkedList.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/DesignFoodRatingSystem/DesignFoodRatingSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/DesignFoodRatingSystem/DesignFoodRatingSystem.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/DetermineIfTwoStringsAreClose/DetermineIfTwoStringsAreClose.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/DetermineIfTwoStringsAreClose/DetermineIfTwoStringsAreClose.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/DiagonalTraverse/DiagonalTraverse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/DiagonalTraverse/DiagonalTraverse.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/DiagonalTraverseII/DiagonalTraverseII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/DiagonalTraverseII/DiagonalTraverseII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/DividePlayersIntoTeamsOfEqualSkills/DividePlayersIntoTeamsOfEqualSkills.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/DividePlayersIntoTeamsOfEqualSkills/DividePlayersIntoTeamsOfEqualSkills.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/DominoAndTrominoTiling/DominoAndTrominoTiling.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/DominoAndTrominoTiling/DominoAndTrominoTiling.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/Dota2Senate/Dota2Senate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/Dota2Senate/Dota2Senate.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/EditDistance/EditDistance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/EditDistance/EditDistance.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/EliminateMaximumNumberOfMonsters/EliminateMaximumNumberOfMonsters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/EliminateMaximumNumberOfMonsters/EliminateMaximumNumberOfMonsters.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/EqualRowAndColumnsPairs/EqualRowAndColumnsPairs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/EqualRowAndColumnsPairs/EqualRowAndColumnsPairs.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/EvaluateDivision/EvaluateDivision.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/EvaluateDivision/EvaluateDivision.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/EvaluateReversePolishNotation/EvaluateReversePolishNotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/EvaluateReversePolishNotation/EvaluateReversePolishNotation.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/EvenOddTree/EvenOddTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/EvenOddTree/EvenOddTree.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FIndTheDuplicateNumber/FindTheDuplicateNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FIndTheDuplicateNumber/FindTheDuplicateNumber.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FactorialTrailingZeroes/FactorialTrailingZeroes.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FactorialTrailingZeroes/FactorialTrailingZeroes.class -------------------------------------------------------------------------------- /Java-Solutions/Medium/FactorialTrailingZeroes/FactorialTrailingZeroes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FactorialTrailingZeroes/FactorialTrailingZeroes.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindAllAnagramsInString/FindAllAnagramsInString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindAllAnagramsInString/FindAllAnagramsInString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindAllDuplicatesInArray/FindAllDuplicatesInArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindAllDuplicatesInArray/FindAllDuplicatesInArray.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindAllGroupsOfFarmland/FindAllGroupsOfFarmland.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindAllGroupsOfFarmland/FindAllGroupsOfFarmland.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindBottomLeftTreeValue/FindBottomLeftTreeValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindBottomLeftTreeValue/FindBottomLeftTreeValue.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindChampionII/FindChampionII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindChampionII/FindChampionII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindIfArrayCanBeSorted/FindIfArrayCanBeSorted.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindIfArrayCanBeSorted/FindIfArrayCanBeSorted.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindKthBit/FindKthBit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindKthBit/FindKthBit.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindLargestValueInEachTreeRow/FindLargestValueInEachTreeRow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindLargestValueInEachTreeRow/FindLargestValueInEachTreeRow.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindMinimumInRotatedSortedArray/FindMinimumInRotatedSortedArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindMinimumInRotatedSortedArray/FindMinimumInRotatedSortedArray.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindPeakElement/FindPeakElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindPeakElement/FindPeakElement.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindPlayersWithZeroOrOneLosses/FindPlayersWithZeroOrOneLosses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindPlayersWithZeroOrOneLosses/FindPlayersWithZeroOrOneLosses.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindPolygonWithLargestPerimeter/FindPolygonWithLargestPerimeter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindPolygonWithLargestPerimeter/FindPolygonWithLargestPerimeter.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindTheOriginalArrayOfPrefixXOR/FindTheOriginalArrayOfPrefixXOR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindTheOriginalArrayOfPrefixXOR/FindTheOriginalArrayOfPrefixXOR.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindThePowerOfKSizeSubarraysI/FindThePowerOfKSizeSubarraysI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindThePowerOfKSizeSubarraysI/FindThePowerOfKSizeSubarraysI.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindTheWinnerOfAnArrayGame/FindTheWinnerOfAnArrayGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindTheWinnerOfAnArrayGame/FindTheWinnerOfAnArrayGame.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FindUniqueBinaryString/FindUniqueBinaryString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FindUniqueBinaryString/FindUniqueBinaryString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FirstAndLastPositionOfElementInSortedArray/FirstAndLastElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FirstAndLastPositionOfElementInSortedArray/FirstAndLastElement.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FirstCompletelyPaintedRowOrColumn/FirstCompletelyPaintedRowOrColumn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FirstCompletelyPaintedRowOrColumn/FirstCompletelyPaintedRowOrColumn.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FlattenBinaryTreeToLinkedList/FlattenBinaryTreeToLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FlattenBinaryTreeToLinkedList/FlattenBinaryTreeToLinkedList.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FlattenNestedListIterator/FlatternNestedListIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FlattenNestedListIterator/FlatternNestedListIterator.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FlipEquivalentBinaryTrees/FlipEquivalentBinaryTrees.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FlipEquivalentBinaryTrees/FlipEquivalentBinaryTrees.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FrequencyOfTheMostFrequentElement/FrequencyOfTheMostFrequentElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FrequencyOfTheMostFrequentElement/FrequencyOfTheMostFrequentElement.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/FurthestBuildingYouCanReach/FurthestBuildingYouCanReach.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/FurthestBuildingYouCanReach/FurthestBuildingYouCanReach.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/GenerateParentheses/GenerateParentheses.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/GenerateParentheses/GenerateParentheses.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/GridGame/GridGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/GridGame/GridGame.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/GroupAnagrams/GroupAnagrams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/GroupAnagrams/GroupAnagrams.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/HouseRobber/HouseRobber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/HouseRobber/HouseRobber.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/IncreasingTripletSubsequence/IncreasingTripletSubsequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/IncreasingTripletSubsequence/IncreasingTripletSubsequence.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/InsertDeleteGetRandomO(1)/InsertDeleteGetRandom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/InsertDeleteGetRandomO(1)/InsertDeleteGetRandom.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/InsertInterval/InsertInterval.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/InsertInterval/InsertInterval.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/IntegerBreak/IntegerBreak.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/IntegerBreak/IntegerBreak.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/IntegerToRoman/IntegerToRoman.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/IntegerToRoman/IntegerToRoman.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/InterleavingString/InterleavingString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/InterleavingString/InterleavingString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/JumpGame/JumpGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/JumpGame/JumpGame.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/JumpGameII/JumpGame2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/JumpGameII/JumpGame2.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/KeysAndRooms/KeysAndRooms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/KeysAndRooms/KeysAndRooms.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/KnightDialer/KnightDialer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/KnightDialer/KnightDialer.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/KokoEatingBananas/KokoEatingBananas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/KokoEatingBananas/KokoEatingBananas.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/KthLargestElementInAnArray/KthLargestElementInAnArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/KthLargestElementInAnArray/KthLargestElementInAnArray.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/KthLargestSumInaBinaryTree/KthLargestSumInaBinaryTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/KthLargestSumInaBinaryTree/KthLargestSumInaBinaryTree.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/KthSmallestElementInBST/KthSmallestElementInBST.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/KthSmallestElementInBST/KthSmallestElementInBST.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/KthSymbolInGrammer/KthSymbolInGrammer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/KthSymbolInGrammer/KthSymbolInGrammer.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LRUCache/LRUCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LRUCache/LRUCache.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LargestDivisibleSubset/LargestDivisibleSubset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LargestDivisibleSubset/LargestDivisibleSubset.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LargestSubmatrixWithRearrangements/LargestSubmatrixWithRearrangements.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LargestSubmatrixWithRearrangements/LargestSubmatrixWithRearrangements.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LetterCombinationsOfAphoneNumber/LetterCombinationsOfAPhoneNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LetterCombinationsOfAphoneNumber/LetterCombinationsOfAPhoneNumber.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LinkedListCycleII/LinkedListCycleII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LinkedListCycleII/LinkedListCycleII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LongestCommanSubsequence/LongestCommanSubsequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LongestCommanSubsequence/LongestCommanSubsequence.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LongestConsecutiveSequence/LongestConsecutiveSequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LongestConsecutiveSequence/LongestConsecutiveSequence.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LongestHappyString/LongestHappyString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LongestHappyString/LongestHappyString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LongestIdealSubsequence/LongestIdealSubsequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LongestIdealSubsequence/LongestIdealSubsequence.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LongestIncreasingSubsequence/LongestIncreasingSubsequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LongestIncreasingSubsequence/LongestIncreasingSubsequence.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LongestPalindromicSubstring/LongestPalindromicSubstring.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LongestPalindromicSubstring/LongestPalindromicSubstring.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LongestSquareStreakInAnArray/LongestSquareStreakInAnArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LongestSquareStreakInAnArray/LongestSquareStreakInAnArray.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LongestZigZagPathInBinaryTree/LongestZigZagPathInBinaryTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LongestZigZagPathInBinaryTree/LongestZigZagPathInBinaryTree.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/LowestCommanAncestorOfBinaryTree/LowestCommanAncestorOfBinaryTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/LowestCommanAncestorOfBinaryTree/LowestCommanAncestorOfBinaryTree.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MagicalString/MagicalString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MagicalString/MagicalString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MajorityElementII/MajorityElementII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MajorityElementII/MajorityElementII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MakeSumDivisibleByP/MakeSumDivisibleByP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MakeSumDivisibleByP/MakeSumDivisibleByP.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MapOfHighestPeak/MapOfHighestPeak.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MapOfHighestPeak/MapOfHighestPeak.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaxChunksToMakeSorted/MaxChunksToMakeSorted.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaxChunksToMakeSorted/MaxChunksToMakeSorted.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaxConsecutiveOnesIII/MaxConsecutiveOnesIII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaxConsecutiveOnesIII/MaxConsecutiveOnesIII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaxNumberOfKSumPairs/MaxNumberOfKSumPairs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaxNumberOfKSumPairs/MaxNumberOfKSumPairs.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaximumLevelSumOfBinaryTree/MaximumLevelSumOfBinaryTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaximumLevelSumOfBinaryTree/MaximumLevelSumOfBinaryTree.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaximumMatrixSum/MaximumMatrixSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaximumMatrixSum/MaximumMatrixSum.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaximumNumberAfterDecreasingAndRearranging/MaxNumAfterDecAndRearranging.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaximumNumberAfterDecreasingAndRearranging/MaxNumAfterDecAndRearranging.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaximumNumberOfCoinsYouCanGet/MaximumNumberOfCoinsYouCanGet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaximumNumberOfCoinsYouCanGet/MaximumNumberOfCoinsYouCanGet.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaximumNumberOfMovesInGrid/MaximumNumberOfMovesInGrid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaximumNumberOfMovesInGrid/MaximumNumberOfMovesInGrid.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaximumProductSubarray/MaximumProductSubarray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaximumProductSubarray/MaximumProductSubarray.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaximumSubarray/MaximumSubarray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaximumSubarray/MaximumSubarray.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaximumSubsequenceScore/MaximumSubsequenceScore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaximumSubsequenceScore/MaximumSubsequenceScore.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaximumSwap/MaximumSwap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaximumSwap/MaximumSwap.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaximumTwinSumOfaLinkedList/MaximumTwinSumOfaLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaximumTwinSumOfaLinkedList/MaximumTwinSumOfaLinkedList.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaximumWidthRamp/MaximumWidthRamp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaximumWidthRamp/MaximumWidthRamp.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MaximumXORforEachQuery/MaximumXORforEachQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MaximumXORforEachQuery/MaximumXORforEachQuery.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MergeInBetweenLinkedList/MergeInBetweenLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MergeInBetweenLinkedList/MergeInBetweenLinkedList.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MergeIntervals/MergeIntervals.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MergeIntervals/MergeIntervals.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinStack/MinStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinStack/MinStack.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimizeMaximumPairSumInArray/MinimizeMaximumPairSumInArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimizeMaximumPairSumInArray/MinimizeMaximumPairSumInArray.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimizeXOR/MinimizeXOR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimizeXOR/MinimizeXOR.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimumAddToMakeParenthesesValid/MinimumAddToMakeParenthesesValid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimumAddToMakeParenthesesValid/MinimumAddToMakeParenthesesValid.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimumAmountOfTimeToCollectGarbage/MinimumAmountOfTimeToCollectGarbage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimumAmountOfTimeToCollectGarbage/MinimumAmountOfTimeToCollectGarbage.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimumArrayEnd/MinimumArrayEnd.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimumArrayEnd/MinimumArrayEnd.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimumFallingPathSum/MinimumFallingPathSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimumFallingPathSum/MinimumFallingPathSum.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimumFlipsToMakeA-OR-b-Equal-to-c/MinimumFlipsToMakeAORbEqualtoc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimumFlipsToMakeA-OR-b-Equal-to-c/MinimumFlipsToMakeAORbEqualtoc.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimumHeightTrees/MinimumHeightTrees.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimumHeightTrees/MinimumHeightTrees.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimumLimitOfBallsInBag/MinimumLimitOfBallsInBag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimumLimitOfBallsInBag/MinimumLimitOfBallsInBag.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimumNumberOfArrowsToBurstBallons/MinimumNumberOfArrowsToBurstBallons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimumNumberOfArrowsToBurstBallons/MinimumNumberOfArrowsToBurstBallons.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimumPathSum/MinimumPathSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimumPathSum/MinimumPathSum.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimumProcessingTime/MinimumProcessingTime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimumProcessingTime/MinimumProcessingTime.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimumRemoveToMakeValidParenthesis/MinimumRemoveToMakeValidParenthesis.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimumRemoveToMakeValidParenthesis/MinimumRemoveToMakeValidParenthesis.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MinimumTimeToMakeRopeColorful/MinimumTimeToMakeRopeColorful.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MinimumTimeToMakeRopeColorful/MinimumTimeToMakeRopeColorful.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MostBeautifulItemForEachQuery/MostBeautifulItemForEachQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MostBeautifulItemForEachQuery/MostBeautifulItemForEachQuery.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MovePiecesToObtainaString/MovePiecesToObtainaString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MovePiecesToObtainaString/MovePiecesToObtainaString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/MultiplyStrings/MultiplyStrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/MultiplyStrings/MultiplyStrings.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/NearestExitFromEntranceInMaze/NearestExitFromEntranceInMaze.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/NearestExitFromEntranceInMaze/NearestExitFromEntranceInMaze.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/NeighboringBitwiseXOR/NeighboringBitwiseXOR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/NeighboringBitwiseXOR/NeighboringBitwiseXOR.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/NextPermutation/NextPermutation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/NextPermutation/NextPermutation.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/NonOverlappingIntervals/NonOverlappingIntervals.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/NonOverlappingIntervals/NonOverlappingIntervals.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/NumberOfDiceRollsWithTargetSum/NumberOfDiceRollsWithTargetSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/NumberOfDiceRollsWithTargetSum/NumberOfDiceRollsWithTargetSum.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/NumberOfIslands/NumberOfIslands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/NumberOfIslands/NumberOfIslands.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/NumberOfLaserBeamsInBank/NumberOfLaserBeamsInBank.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/NumberOfLaserBeamsInBank/NumberOfLaserBeamsInBank.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/NumberOfProvinces/NumberOfProvinces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/NumberOfProvinces/NumberOfProvinces.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/NumberOfWaysToSplitArray/NumberOfWaysToSplitArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/NumberOfWaysToSplitArray/NumberOfWaysToSplitArray.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/NumberOfWonderFulSubstrings/NumberOfWonderfulSubstrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/NumberOfWonderFulSubstrings/NumberOfWonderfulSubstrings.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/OddEvenLinkedList/OddEvenLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/OddEvenLinkedList/OddEvenLinkedList.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/OnlineStockSpan/OnlineStockSpan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/OnlineStockSpan/OnlineStockSpan.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/OpentTheLock/OpenTheLock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/OpentTheLock/OpenTheLock.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/OutOfBoundaryPaths/OutOfBoundaryPaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/OutOfBoundaryPaths/OutOfBoundaryPaths.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/PalindromePartitioning/PalindromePartitioning.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/PalindromePartitioning/PalindromePartitioning.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/PalindromicSubstrings/PalindromicSubstrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/PalindromicSubstrings/PalindromicSubstrings.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/PartitionArrayForMaximumSum/PartitionArrayForMaximumSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/PartitionArrayForMaximumSum/PartitionArrayForMaximumSum.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/PartitionEqualSubsetSum/PartitionEqualSubsetSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/PartitionEqualSubsetSum/PartitionEqualSubsetSum.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/PartitionLabels/PartitionLabels.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/PartitionLabels/PartitionLabels.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/PathSumIII/PathSumIII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/PathSumIII/PathSumIII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/PerfectSquares/PerfectSquares.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/PerfectSquares/PerfectSquares.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/PermutationInString/PermutationInString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/PermutationInString/PermutationInString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/Permutations/Permutations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/Permutations/Permutations.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/PrimeSubtractionOperation/PrimeSubtractionOperation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/PrimeSubtractionOperation/PrimeSubtractionOperation.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ProductOfArrayExceptItself/ProductOfArrayExceptItself.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ProductOfArrayExceptItself/ProductOfArrayExceptItself.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/PseudoPalindromicPathsInBinaryTree/PseudoPalindromicPathInBinaryTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/PseudoPalindromicPathsInBinaryTree/PseudoPalindromicPathInBinaryTree.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/RandomPickIndex/RandomPickIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/RandomPickIndex/RandomPickIndex.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/RearrangeArrayElementsBySign/RearrangeArrayElementsBySign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/RearrangeArrayElementsBySign/RearrangeArrayElementsBySign.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/RemoveKdigits/RemoveKdigits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/RemoveKdigits/RemoveKdigits.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/RemoveNthNodeFromEndOfList/RemoveNthNodeFromEndOfList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/RemoveNthNodeFromEndOfList/RemoveNthNodeFromEndOfList.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/RemoveSubFoldersFromTheFileSystem/RemoveSubFoldersFromTheFileSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/RemoveSubFoldersFromTheFileSystem/RemoveSubFoldersFromTheFileSystem.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/RemovingStarsFromAString/RemovingStarsFromAString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/RemovingStarsFromAString/RemovingStarsFromAString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ReorderList/ReorderList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ReorderList/ReorderList.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ReorganizeString/ReorganizeString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ReorganizeString/ReorganizeString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/RestoreTheArrayFromAdjacentPairs/RestoreTheArrayFromAdjacentPairs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/RestoreTheArrayFromAdjacentPairs/RestoreTheArrayFromAdjacentPairs.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/RevealCardsInIncreasingOrder/RevealCardsInIncreasingOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/RevealCardsInIncreasingOrder/RevealCardsInIncreasingOrder.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ReverseOddLevelsOfBinaryTree/TreeNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ReverseOddLevelsOfBinaryTree/TreeNode.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ReverseWordsInAString/ReverseWordsInAString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ReverseWordsInAString/ReverseWordsInAString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/RotateArray/RotateArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/RotateArray/RotateArray.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/RotateImage/RotateImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/RotateImage/RotateImage.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/RotatedDigits/RotatedDigits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/RotatedDigits/RotatedDigits.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/RottingOranges/RottingOranges.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/RottingOranges/RottingOranges.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/Search2DMatrixII/Search2DMatrixII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/Search2DMatrixII/Search2DMatrixII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/Search2Dmatrix/Search2Dmatrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/Search2Dmatrix/Search2Dmatrix.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SearchInRotatedSortedArray/SearchInRotatedSortedArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SearchInRotatedSortedArray/SearchInRotatedSortedArray.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SeatReservationManager/SeatReservationManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SeatReservationManager/SeatReservationManager.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SentenceSimilarityIII/SentenceSimilarityIII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SentenceSimilarityIII/SentenceSimilarityIII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SeparateBlackAndWhiteBalls/SeparateBlackAndWhiteBalls.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SeparateBlackAndWhiteBalls/SeparateBlackAndWhiteBalls.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SequentialDigits/SequentialDigits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SequentialDigits/SequentialDigits.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SetMatrixZeroes/SetMatrixZeroes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SetMatrixZeroes/SetMatrixZeroes.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ShortestSubarrayWithORatLeastKii/ShortestSubarrayWithORatLeastKii.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ShortestSubarrayWithORatLeastKii/ShortestSubarrayWithORatLeastKii.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SingleNumberII/SingleNumberII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SingleNumberII/SingleNumberII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SmallestNumberInInfiniteSet/SmallestNumberInInfiniteSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SmallestNumberInInfiniteSet/SmallestNumberInInfiniteSet.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SmallestStringStartingFromLeaf/SmallestStringStartingFromLeaf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SmallestStringStartingFromLeaf/SmallestStringStartingFromLeaf.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SortAnArray/SortAnArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SortAnArray/SortAnArray.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SortCharactersByFrequency/SortCharactersByFrequency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SortCharactersByFrequency/SortCharactersByFrequency.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SortColors/SortColors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SortColors/SortColors.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SortList/SortList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SortList/SortList.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SortVowelsInAstring/SortVowelsInAString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SortVowelsInAstring/SortVowelsInAString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SpecialArrayII/SpecialArrayII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SpecialArrayII/SpecialArrayII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SpiralMatrix/SpiralMatrix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SpiralMatrix/SpiralMatrix.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/StringCompression/StringCompression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/StringCompression/StringCompression.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/StringCompressionIII/StringCompressionIII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/StringCompressionIII/StringCompressionIII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SubarrayProductLessThanK/SubarrayProductLessThanK.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SubarrayProductLessThanK/SubarrayProductLessThanK.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SubarraySumEqualsK/SubarraySumEqualsK.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SubarraySumEqualsK/SubarraySumEqualsK.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/Subsets/Subsets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/Subsets/Subsets.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SuccessfulPairsOfSpellsAndPotions/SuccessfulPairsOfSpellsAndPotions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SuccessfulPairsOfSpellsAndPotions/SuccessfulPairsOfSpellsAndPotions.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SumOfSquareNumbers/SumOfSquareNumbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SumOfSquareNumbers/SumOfSquareNumbers.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SumOfSubarrayMinimums/SumOfSubarrayMinimums.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SumOfSubarrayMinimums/SumOfSubarrayMinimums.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SumRootToLeafNumbers/SumRootToLeafNumbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SumRootToLeafNumbers/SumRootToLeafNumbers.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/SwapNodesInPairs/SwapNodesInPairs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/SwapNodesInPairs/SwapNodesInPairs.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/TaskScheduler/TaskScheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/TaskScheduler/TaskScheduler.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/TopKfrequentElements/TopK_FrequentElements.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/TopKfrequentElements/TopK_FrequentElements.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/TotalCostToHireKworkers/TotalCostToHireKworkers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/TotalCostToHireKworkers/TotalCostToHireKworkers.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/TupleWithSameProduct/TupleWithSameProduct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/TupleWithSameProduct/TupleWithSameProduct.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/TwoBestNonOverlappingEvents/TwoBestNonOverlappingEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/TwoBestNonOverlappingEvents/TwoBestNonOverlappingEvents.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/TwoSumII/TwoSumII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/TwoSumII/TwoSumII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/UglyNumberII/UglyNumberII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/UglyNumberII/UglyNumberII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/UniquePaths/UniquePaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/UniquePaths/UniquePaths.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/UniquePathsII/UglyNumberII.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/UniquePathsII/UglyNumberII.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ValidParenthesisString/ValidParenthesisString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ValidParenthesisString/ValidParenthesisString.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ValidateBinarySearchTree/ValidateBinarySearchTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ValidateBinarySearchTree/ValidateBinarySearchTree.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ValidateBinaryTreeNodes/ValidateBinaryTreeNodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ValidateBinaryTreeNodes/ValidateBinaryTreeNodes.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/VowelSpellChecker/VowelSpellChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/VowelSpellChecker/VowelSpellChecker.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/WordBreak/WordBreak.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/WordBreak/WordBreak.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/WordSearch/WordSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/WordSearch/WordSearch.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/WordSubsets/WordSubsets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/WordSubsets/WordSubsets.java -------------------------------------------------------------------------------- /Java-Solutions/Medium/ZigZagConversion/ZigZagConversion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Java-Solutions/Medium/ZigZagConversion/ZigZagConversion.java -------------------------------------------------------------------------------- /MySQL/Easy/ArticleViewsI.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/MySQL/Easy/ArticleViewsI.sql -------------------------------------------------------------------------------- /MySQL/Easy/BigCountries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/MySQL/Easy/BigCountries.sql -------------------------------------------------------------------------------- /MySQL/Easy/CountOrdersandAmount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/MySQL/Easy/CountOrdersandAmount.sql -------------------------------------------------------------------------------- /MySQL/Easy/EmployeeBonus.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/MySQL/Easy/EmployeeBonus.sql -------------------------------------------------------------------------------- /MySQL/Easy/FindCustomerReferee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/MySQL/Easy/FindCustomerReferee.sql -------------------------------------------------------------------------------- /MySQL/Easy/InvalidTweets.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/MySQL/Easy/InvalidTweets.sql -------------------------------------------------------------------------------- /MySQL/Easy/RecyclableAndLowFatProducts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/MySQL/Easy/RecyclableAndLowFatProducts.sql -------------------------------------------------------------------------------- /MySQL/Easy/RisingTemperature.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/MySQL/Easy/RisingTemperature.sql -------------------------------------------------------------------------------- /MySQL/Easy/StudentsAndExaminations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/MySQL/Easy/StudentsAndExaminations.sql -------------------------------------------------------------------------------- /MySQL/Medium/ConfirmationRate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/MySQL/Medium/ConfirmationRate.sql -------------------------------------------------------------------------------- /Python-Solutions/AddBinary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/AddBinary.py -------------------------------------------------------------------------------- /Python-Solutions/ArrayPartition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/ArrayPartition.py -------------------------------------------------------------------------------- /Python-Solutions/AssignCookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/AssignCookies.py -------------------------------------------------------------------------------- /Python-Solutions/ClimbingStairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/ClimbingStairs.py -------------------------------------------------------------------------------- /Python-Solutions/Find-the-Difference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/Find-the-Difference.py -------------------------------------------------------------------------------- /Python-Solutions/HappyNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/HappyNumber.py -------------------------------------------------------------------------------- /Python-Solutions/HeightChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/HeightChecker.py -------------------------------------------------------------------------------- /Python-Solutions/MissingNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/MissingNumber.py -------------------------------------------------------------------------------- /Python-Solutions/PalindromeNumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/PalindromeNumber.py -------------------------------------------------------------------------------- /Python-Solutions/Palindrome_linked_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/Palindrome_linked_list.py -------------------------------------------------------------------------------- /Python-Solutions/PlusOne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/PlusOne.py -------------------------------------------------------------------------------- /Python-Solutions/PowerOfFour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/PowerOfFour.py -------------------------------------------------------------------------------- /Python-Solutions/RomanToInteger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/RomanToInteger.py -------------------------------------------------------------------------------- /Python-Solutions/SameTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/SameTree.py -------------------------------------------------------------------------------- /Python-Solutions/Two_Sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/Two_Sum.py -------------------------------------------------------------------------------- /Python-Solutions/ValidAnagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Python-Solutions/ValidAnagram.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/README.md -------------------------------------------------------------------------------- /Rust-Solutions/Happy_Number/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Happy_Number/Cargo.toml -------------------------------------------------------------------------------- /Rust-Solutions/Happy_Number/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Happy_Number/src/main.rs -------------------------------------------------------------------------------- /Rust-Solutions/Multiply_Strings/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Multiply_Strings/Cargo.toml -------------------------------------------------------------------------------- /Rust-Solutions/Multiply_Strings/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Multiply_Strings/src/main.rs -------------------------------------------------------------------------------- /Rust-Solutions/Pascal_Triangle/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Pascal_Triangle/Cargo.toml -------------------------------------------------------------------------------- /Rust-Solutions/Pascal_Triangle/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Pascal_Triangle/src/main.rs -------------------------------------------------------------------------------- /Rust-Solutions/Pascal_Triangle2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Pascal_Triangle2/Cargo.toml -------------------------------------------------------------------------------- /Rust-Solutions/Pascal_Triangle2/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Pascal_Triangle2/src/main.rs -------------------------------------------------------------------------------- /Rust-Solutions/Plus_One/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Plus_One/Cargo.toml -------------------------------------------------------------------------------- /Rust-Solutions/Plus_One/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Plus_One/src/main.rs -------------------------------------------------------------------------------- /Rust-Solutions/Remove_duplicate_from_sorted_array/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Remove_duplicate_from_sorted_array/Cargo.toml -------------------------------------------------------------------------------- /Rust-Solutions/Remove_duplicate_from_sorted_array/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Remove_duplicate_from_sorted_array/src/main.rs -------------------------------------------------------------------------------- /Rust-Solutions/Rotate_Array/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Rotate_Array/Cargo.toml -------------------------------------------------------------------------------- /Rust-Solutions/Rotate_Array/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Rotate_Array/src/main.rs -------------------------------------------------------------------------------- /Rust-Solutions/Two_sum/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Two_sum/Cargo.toml -------------------------------------------------------------------------------- /Rust-Solutions/Two_sum/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Two_sum/src/main.rs -------------------------------------------------------------------------------- /Rust-Solutions/Valid_Palindrome/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Valid_Palindrome/Cargo.toml -------------------------------------------------------------------------------- /Rust-Solutions/Valid_Palindrome/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/Valid_Palindrome/src/main.rs -------------------------------------------------------------------------------- /Rust-Solutions/best_time_to_buy_and_sell/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/best_time_to_buy_and_sell/Cargo.toml -------------------------------------------------------------------------------- /Rust-Solutions/best_time_to_buy_and_sell/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/best_time_to_buy_and_sell/src/main.rs -------------------------------------------------------------------------------- /Rust-Solutions/contains_duplicate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/contains_duplicate/Cargo.toml -------------------------------------------------------------------------------- /Rust-Solutions/contains_duplicate/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/contains_duplicate/src/main.rs -------------------------------------------------------------------------------- /Rust-Solutions/remove_element/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/remove_element/Cargo.toml -------------------------------------------------------------------------------- /Rust-Solutions/remove_element/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/remove_element/src/main.rs -------------------------------------------------------------------------------- /Rust-Solutions/search_insert/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/search_insert/Cargo.toml -------------------------------------------------------------------------------- /Rust-Solutions/search_insert/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Rust-Solutions/search_insert/src/main.rs -------------------------------------------------------------------------------- /Swift-Solutions/Easy/MajorityElement/MajorityElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Swift-Solutions/Easy/MajorityElement/MajorityElement.swift -------------------------------------------------------------------------------- /Swift-Solutions/Easy/MergeSortedArray/MergeSortedArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Swift-Solutions/Easy/MergeSortedArray/MergeSortedArray.swift -------------------------------------------------------------------------------- /Swift-Solutions/Easy/RemoveDuplicatesfromSortedArray/RemoveDuplicatesfromSortedArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Swift-Solutions/Easy/RemoveDuplicatesfromSortedArray/RemoveDuplicatesfromSortedArray.swift -------------------------------------------------------------------------------- /Swift-Solutions/Easy/RemoveElement/RemoveElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Swift-Solutions/Easy/RemoveElement/RemoveElement.swift -------------------------------------------------------------------------------- /Swift-Solutions/Medium/151/ReverseWordsInString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Swift-Solutions/Medium/151/ReverseWordsInString.swift -------------------------------------------------------------------------------- /Swift-Solutions/Medium/189/RotateArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Swift-Solutions/Medium/189/RotateArray.swift -------------------------------------------------------------------------------- /Swift-Solutions/Medium/80/RemoveDuplicatesFromSortedArrayII.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Swift-Solutions/Medium/80/RemoveDuplicatesFromSortedArrayII.swift -------------------------------------------------------------------------------- /Typescript-Solutions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/.gitignore -------------------------------------------------------------------------------- /Typescript-Solutions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/package-lock.json -------------------------------------------------------------------------------- /Typescript-Solutions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/package.json -------------------------------------------------------------------------------- /Typescript-Solutions/src/01.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/01.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/09.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/09.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/100.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/100.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1014.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1014.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1072.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1072.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/118.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/118.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/119.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/119.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/121.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/121.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/125.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/125.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/13.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/13.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1346.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1346.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1358.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1358.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/136.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/136.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1368.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1368.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/14.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/14.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1400.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1400.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1408.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1408.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1455.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1455.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1475.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1475.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1524.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1524.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1574.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1574.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1639.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1639.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1652.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1652.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1726.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1726.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1749.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1749.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1752.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1752.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1760.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1760.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1765.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1765.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1769.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1769.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1780.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1780.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1800.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1800.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1861.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1861.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1910.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1910.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1930.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1930.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1975.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1975.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/1976.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/1976.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/20.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/20.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2017.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2017.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/202.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/202.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/205.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/205.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2054.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2054.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2064.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2064.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2070.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2070.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2097.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2097.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/21.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/21.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2109.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2109.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2115.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2115.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2116.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2116.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2127.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2127.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2161.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2161.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/217.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/217.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2182.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2182.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2185.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2185.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2206.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2206.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2226.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2226.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2257.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2257.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2270.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2270.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2290.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2290.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2337.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2337.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2342.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2342.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2349.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2349.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2364.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2364.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2379.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2379.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2381.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2381.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2401.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2401.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2425.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2425.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2429.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2429.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2461.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2461.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2466.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2466.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2493.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2493.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2516.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2516.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2523.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2523.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2529.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2529.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2554.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2554.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2558.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2558.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2559.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2559.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2560.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2560.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2570.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2570.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2577.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2577.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2593.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2593.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2594.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2594.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/26.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/26.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2601.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2601.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2657.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2657.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2658.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2658.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2661.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2661.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2683.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2683.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2685.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2685.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/27.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/27.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2762.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2762.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2779.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2779.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/28.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/28.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2825.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2825.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2924.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2924.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2940.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2940.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2948.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2948.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2965.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2965.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/2981.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/2981.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3042.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3042.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3105.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3105.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3108.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3108.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3151.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3151.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3152.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3152.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3169.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3169.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3174.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3174.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3191.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3191.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3208.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3208.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3223.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3223.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3243.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3243.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3254.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3254.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3264.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3264.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3306.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3306.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3356.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3356.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/3394.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/3394.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/35.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/35.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/494.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/494.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/58.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/58.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/66.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/66.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/67.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/67.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/684.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/684.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/689.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/689.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/69.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/69.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/70.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/70.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/769.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/769.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/773.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/773.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/802.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/802.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/83.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/83.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/862.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/862.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/873.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/873.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/88.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/88.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/916.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/916.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/94.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/94.ts -------------------------------------------------------------------------------- /Typescript-Solutions/src/983.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/src/983.ts -------------------------------------------------------------------------------- /Typescript-Solutions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/tsconfig.json -------------------------------------------------------------------------------- /Typescript-Solutions/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lxmn-22/Leetcode-Questions/HEAD/Typescript-Solutions/tsconfig.tsbuildinfo --------------------------------------------------------------------------------