├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── absoluteValuesSumMinization ├── README.md ├── absoluteValuesSumMinization.spec.ts └── absoluteValuesSumMinization.ts ├── add ├── README.md ├── add.spec.ts └── add.ts ├── addBorder ├── README.md ├── addBorder.spec.ts └── addBorder.ts ├── addTwoDigits ├── README.md ├── addTwoDigits.spec.ts └── addTwoDigits.ts ├── adjacentElementsProduct ├── README.md ├── adjacentElementsProduct.spec.ts └── adjacentElementsProduct.ts ├── allLongestStrings ├── README.md ├── allLongestStrings.spec.ts └── allLongestStrings.ts ├── almostIncreasingSequence ├── README.md ├── almostIncreasingSequence.spec.ts └── almostIncreasingSequence.ts ├── alphabetSubSequence ├── README.md ├── alphabetSubSequence.spec.ts └── alphabetSubSequence.ts ├── alphabeticShift ├── README.md ├── alphabeticShift.spec.ts └── alphabeticShift.ts ├── alternatingSums ├── README.md ├── alternatingSums.spec.ts └── alternatingSums.ts ├── areEquallyStrong ├── README.md ├── areEquallyStrong.spec.ts └── areEquallyStrong.ts ├── areSimilar ├── README.md ├── areSimilar.spec.ts └── areSimilar.ts ├── arrayChange ├── README.md ├── arrayChange.spec.ts └── arrayChange.ts ├── arrayConversion ├── README.md ├── arrayConversion.spec.ts └── arrayConversion.ts ├── arrayMaxConsecutiveSum ├── README.md ├── arrayMaxConsecutiveSum.spec.ts └── arrayMaxConsecutiveSum.ts ├── arrayMaximalAdjacentDifference ├── README.md ├── arrayMaximalAdjacentDifference.spec.ts └── arrayMaximalAdjacentDifference.ts ├── arrayPreviousLess ├── README.md ├── arrayPreviousLess.spec.ts └── arrayPreviousLess.ts ├── arrayReplace ├── README.md ├── arrayReplace.spec.ts └── arrayReplace.ts ├── avoidObstacles ├── README.md ├── avoidObstacles.spec.ts └── avoidObstacles.ts ├── babel.config.js ├── bishopAndPawn ├── README.md ├── bishopAndPawn.spec.ts └── bishopAndPawn.ts ├── boxBlur ├── README.md ├── boxBlur.spec.ts └── boxBlur.ts ├── candies ├── README.md ├── candies.spec.ts └── candies.ts ├── caseInsensitivePalimdrome ├── README.md ├── caseInsensitivePalindrome.spec.ts └── caseInsensitivePalindrome.ts ├── centuryFromYear ├── README.md ├── centuryFromYear.spec.ts └── centuryFromYear.ts ├── characterParity ├── README.md ├── characterParity.ts └── chracterParity.spec.ts ├── checkPalindrome ├── README.md ├── checkPalindrome.spec.ts └── checkPalindrome.ts ├── chessBoardCellColor ├── README.md ├── chessBoardCellColor.spec.ts └── chessBoardCellColor.ts ├── chunkyMonkey ├── README.md ├── chunkeyMonkey.spec.ts └── chunkyMonkey.ts ├── circleOfNumbers ├── README.md ├── circleOfNumbers.spec.ts └── circleOfNumbers.ts ├── commonCharacterCount ├── README.md ├── commonCharacterCount.spec.ts └── commonCharacterCount.ts ├── companyBotStrategy ├── README.md ├── companyBotStrategy.spec.ts └── companyBotStrategy.ts ├── compareIntegers ├── README.md ├── compareIntegers.spec.ts └── compareIntegers.ts ├── composeRanges ├── README.md ├── composeRanges.spec.ts └── composeRanges.ts ├── confirmEnding ├── README.md ├── confirmEnding.ts └── confrimEnding.spec.ts ├── containsCloseNums ├── README.md ├── containsCloseNums.spec.ts └── containsCloseNums.ts ├── containsDuplicates ├── README.md ├── containsDuplicates.spec.ts └── containsDuplicates.ts ├── convertCelsiusToFahrenheit ├── README.md ├── convertCelsiusToFahrenheit.spec.ts └── convertCelsiusToFahrenheit.ts ├── convertString ├── README.md ├── convertString.spec.ts └── convertString.ts ├── crossingSum ├── README.md ├── crossingSum.spec.ts └── crossingSum.ts ├── depositProfit ├── README.md ├── depositProfit.spec.ts └── depositProfit.ts ├── differentSymbolsNaive ├── README.md ├── differentSymbolsNaive.spec.ts └── differentSymbolsNaive.ts ├── digitDegree ├── README.md ├── digitDegree.spec.ts └── digitDegree.ts ├── domainType ├── README.md ├── domainType.spec.ts └── domainType.ts ├── electionWinners ├── README.md ├── electionWinners.spec.ts └── electionWinners.ts ├── encloseInBrackets ├── README.md ├── encloseInBrackets.spec.ts └── encloseInBrackets.ts ├── evenDigitsOnly ├── README.md ├── evenDigitsOnly.spec.ts └── evenDigitsOnly.ts ├── extractEachKth ├── README.md ├── extractEachKth.spec.ts └── extractEachKth.ts ├── extractMatrixColumn ├── README.md ├── extractMatrixColumn.spec.ts └── extractMatrixColumn.ts ├── factorializeANumber ├── README.md ├── factorializeANumber.spec.ts └── factorializeANumber.ts ├── fancyRide ├── README.md ├── fancyRide.spec.ts └── fancyRide.ts ├── fareEstimator ├── README.md ├── fareEstimator.spec.ts └── fareEstimator.ts ├── fermactor ├── README.md ├── fermactor.spec.ts └── fermactor.ts ├── findClosestPair ├── README.md ├── findCloserPair.spec.ts └── findClosestPair.ts ├── findEmailDomain ├── README.md ├── findEmailDomain.spec.ts └── findEmailDomain.ts ├── firstDigit ├── README.md ├── firstDigit.spec.ts └── firstDigit.ts ├── firstDuplicate ├── README.md ├── firstDuplicate.spec.ts └── firstDuplicate.ts ├── firstNotRepeatingCharacter ├── README.md ├── firstNotRepeatingCharacter.spec.ts └── firstNotRepeatingCharacter.ts ├── flattenArray ├── README.md ├── flattenArray.spec.ts └── flattenArray.ts ├── growingPlant ├── README.md ├── growingPlant.spec.ts └── growingPlant.ts ├── houseNumbersSum ├── README.md ├── houseNumberSum.spec.ts └── houseNumbersSum.ts ├── houseOfCats ├── README.md ├── houseOfCats.spec.ts └── houseOfCats.ts ├── htmlEndTagByStartTag ├── README.md ├── htmlEndTagByStartTag.spec.ts └── htmlEndTagByStartTag.ts ├── incorrectPasswordAttempts ├── README.md ├── incorrectPasswordAttempts.spec.ts └── incorrectPasswordAttempts.ts ├── incrementalBackups ├── README.md ├── incrementalBackups.spec.ts └── incrementalBackups.ts ├── integerToStringOfFixedWidth ├── README.md ├── integerToStringOfFixedWidth.spec.ts └── integerToStringOfFixedWidth.ts ├── isLucky ├── README.md ├── isLucky.spec.ts └── isLucky.ts ├── isTandemRepeat ├── README.md ├── isTandemRepeat.spec.ts └── isTandemRepeat.ts ├── jest.config.ts ├── largestNumber ├── README.md ├── largestNumber.spec.ts └── largestNumber.ts ├── largestOfFour ├── README.md ├── largestOfFour.spec.ts └── largestOfFour.ts ├── lateRide ├── README.md ├── lateRide.spec.ts └── lateRide.ts ├── launchSequenceChecker ├── README.md ├── launchSequenceChecker.spec.ts └── launchSequenceChecker.ts ├── longestDigitsPrefix ├── README.md ├── longestDigitsPrefix.spec.ts └── longestDigitsPrefix.ts ├── makeArrayConsecutive2 ├── README.md ├── makeArrayConsecutive2.spec.ts └── makeArrayConsecutive2.ts ├── matrixElementsSum ├── README.md ├── matrixElementsSum.spec.ts └── matrixElementsSum.ts ├── maxMultiple ├── README.md ├── maxMultiple.spec.ts └── maxMultiple.ts ├── mineSweeper ├── README.md ├── mineSweeper.spec.ts └── mineSweeper.ts ├── minimalNumberOfCoins ├── README.md ├── minimalNumberOfCoins.spec.ts └── minimalNumberOfCoins.ts ├── missingLetters ├── README.md ├── missingLetters.spec.ts └── missingLetters.ts ├── mostFrequentDigitSum ├── README.md ├── mostFrequentDigitSum.spec.ts └── mostFrequentDigitSum.ts ├── newNumeralSystem ├── README.md ├── newNumeralSystem.spec.ts └── newNumeralSystem.ts ├── package.json ├── pagesNumberingWithInk ├── README.md ├── pageNumberingWithInk.spec.ts └── pagesNumberingWithInk.ts ├── palindromeRearranging ├── README.md ├── palindromeRearranging.spec.ts └── palindromeRearranging.ts ├── pigLatin ├── README.md ├── pigLatin.spec.ts └── pigLatin.ts ├── proCategorization ├── README.md ├── proCategorization.spec.ts └── proCategorization.ts ├── properNounCorrection ├── README.md ├── properNounCorrection.spec.ts └── properNounCorrection.ts ├── ratingThreshold ├── README.md ├── ratingThreshold.spec.ts └── ratingThreshold.ts ├── reflectString ├── README.md ├── reflectString.spec.ts └── reflectString.ts ├── reverseAString ├── README.md ├── reverseAString.spec.ts └── reverseAString.ts ├── seatsInTheater ├── README.md ├── seatsInTheater.spec.ts └── seatsInTheater.ts ├── seekAndDestroy ├── README.md ├── seekAndDestroy.spec.ts └── seekAndDestroy.ts ├── shapeArea ├── README.md ├── shapeArea.spec.ts └── shapeArea.ts ├── sortByHeight ├── README.md ├── sortByHeight.spec.ts └── sortByHeight.ts ├── sortByLength ├── README.md ├── sortByLength.spec.ts └── sortByLength.ts ├── squareDigitsSequence ├── README.md ├── squareDigitsSequence.spec.ts └── squareDigitsSequence.ts ├── stolenLunch ├── README.md ├── stolenLunch.spec.ts └── stolenLunch.ts ├── stringsConstruction ├── README.md ├── stringsConstruction.spec.ts └── stringsConstruction.ts ├── sumAllPrimes ├── README.md ├── sumAllPrimes.spec.ts └── sumAllPrimes.ts ├── sumOddFibonacciNums ├── README.md ├── sumOddFibonacciNums.spec.ts └── sumOddFibonacciNums.ts ├── sumOfTwo ├── README.md ├── sumOfTwo.spec.ts └── sumOfTwo.ts ├── switchLights ├── README.md ├── switchLights.spec.ts └── switchLights.ts ├── tasksType ├── README.md ├── taskType.spec.ts └── tasksType.ts ├── tsconfig.json ├── uniqueDigitProducts ├── README.md ├── uniqueDigitsProducts.spec.ts └── uniqueDigitsProducts.ts └── validTime ├── README.md ├── validTime.spec.ts └── validTime.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/README.md -------------------------------------------------------------------------------- /absoluteValuesSumMinization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/absoluteValuesSumMinization/README.md -------------------------------------------------------------------------------- /absoluteValuesSumMinization/absoluteValuesSumMinization.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/absoluteValuesSumMinization/absoluteValuesSumMinization.spec.ts -------------------------------------------------------------------------------- /absoluteValuesSumMinization/absoluteValuesSumMinization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/absoluteValuesSumMinization/absoluteValuesSumMinization.ts -------------------------------------------------------------------------------- /add/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/add/README.md -------------------------------------------------------------------------------- /add/add.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/add/add.spec.ts -------------------------------------------------------------------------------- /add/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/add/add.ts -------------------------------------------------------------------------------- /addBorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/addBorder/README.md -------------------------------------------------------------------------------- /addBorder/addBorder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/addBorder/addBorder.spec.ts -------------------------------------------------------------------------------- /addBorder/addBorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/addBorder/addBorder.ts -------------------------------------------------------------------------------- /addTwoDigits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/addTwoDigits/README.md -------------------------------------------------------------------------------- /addTwoDigits/addTwoDigits.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/addTwoDigits/addTwoDigits.spec.ts -------------------------------------------------------------------------------- /addTwoDigits/addTwoDigits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/addTwoDigits/addTwoDigits.ts -------------------------------------------------------------------------------- /adjacentElementsProduct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/adjacentElementsProduct/README.md -------------------------------------------------------------------------------- /adjacentElementsProduct/adjacentElementsProduct.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/adjacentElementsProduct/adjacentElementsProduct.spec.ts -------------------------------------------------------------------------------- /adjacentElementsProduct/adjacentElementsProduct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/adjacentElementsProduct/adjacentElementsProduct.ts -------------------------------------------------------------------------------- /allLongestStrings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/allLongestStrings/README.md -------------------------------------------------------------------------------- /allLongestStrings/allLongestStrings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/allLongestStrings/allLongestStrings.spec.ts -------------------------------------------------------------------------------- /allLongestStrings/allLongestStrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/allLongestStrings/allLongestStrings.ts -------------------------------------------------------------------------------- /almostIncreasingSequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/almostIncreasingSequence/README.md -------------------------------------------------------------------------------- /almostIncreasingSequence/almostIncreasingSequence.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/almostIncreasingSequence/almostIncreasingSequence.spec.ts -------------------------------------------------------------------------------- /almostIncreasingSequence/almostIncreasingSequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/almostIncreasingSequence/almostIncreasingSequence.ts -------------------------------------------------------------------------------- /alphabetSubSequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/alphabetSubSequence/README.md -------------------------------------------------------------------------------- /alphabetSubSequence/alphabetSubSequence.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/alphabetSubSequence/alphabetSubSequence.spec.ts -------------------------------------------------------------------------------- /alphabetSubSequence/alphabetSubSequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/alphabetSubSequence/alphabetSubSequence.ts -------------------------------------------------------------------------------- /alphabeticShift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/alphabeticShift/README.md -------------------------------------------------------------------------------- /alphabeticShift/alphabeticShift.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/alphabeticShift/alphabeticShift.spec.ts -------------------------------------------------------------------------------- /alphabeticShift/alphabeticShift.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/alphabeticShift/alphabeticShift.ts -------------------------------------------------------------------------------- /alternatingSums/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/alternatingSums/README.md -------------------------------------------------------------------------------- /alternatingSums/alternatingSums.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/alternatingSums/alternatingSums.spec.ts -------------------------------------------------------------------------------- /alternatingSums/alternatingSums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/alternatingSums/alternatingSums.ts -------------------------------------------------------------------------------- /areEquallyStrong/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/areEquallyStrong/README.md -------------------------------------------------------------------------------- /areEquallyStrong/areEquallyStrong.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/areEquallyStrong/areEquallyStrong.spec.ts -------------------------------------------------------------------------------- /areEquallyStrong/areEquallyStrong.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/areEquallyStrong/areEquallyStrong.ts -------------------------------------------------------------------------------- /areSimilar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/areSimilar/README.md -------------------------------------------------------------------------------- /areSimilar/areSimilar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/areSimilar/areSimilar.spec.ts -------------------------------------------------------------------------------- /areSimilar/areSimilar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/areSimilar/areSimilar.ts -------------------------------------------------------------------------------- /arrayChange/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayChange/README.md -------------------------------------------------------------------------------- /arrayChange/arrayChange.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayChange/arrayChange.spec.ts -------------------------------------------------------------------------------- /arrayChange/arrayChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayChange/arrayChange.ts -------------------------------------------------------------------------------- /arrayConversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayConversion/README.md -------------------------------------------------------------------------------- /arrayConversion/arrayConversion.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayConversion/arrayConversion.spec.ts -------------------------------------------------------------------------------- /arrayConversion/arrayConversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayConversion/arrayConversion.ts -------------------------------------------------------------------------------- /arrayMaxConsecutiveSum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayMaxConsecutiveSum/README.md -------------------------------------------------------------------------------- /arrayMaxConsecutiveSum/arrayMaxConsecutiveSum.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayMaxConsecutiveSum/arrayMaxConsecutiveSum.spec.ts -------------------------------------------------------------------------------- /arrayMaxConsecutiveSum/arrayMaxConsecutiveSum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayMaxConsecutiveSum/arrayMaxConsecutiveSum.ts -------------------------------------------------------------------------------- /arrayMaximalAdjacentDifference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayMaximalAdjacentDifference/README.md -------------------------------------------------------------------------------- /arrayMaximalAdjacentDifference/arrayMaximalAdjacentDifference.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayMaximalAdjacentDifference/arrayMaximalAdjacentDifference.spec.ts -------------------------------------------------------------------------------- /arrayMaximalAdjacentDifference/arrayMaximalAdjacentDifference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayMaximalAdjacentDifference/arrayMaximalAdjacentDifference.ts -------------------------------------------------------------------------------- /arrayPreviousLess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayPreviousLess/README.md -------------------------------------------------------------------------------- /arrayPreviousLess/arrayPreviousLess.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayPreviousLess/arrayPreviousLess.spec.ts -------------------------------------------------------------------------------- /arrayPreviousLess/arrayPreviousLess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayPreviousLess/arrayPreviousLess.ts -------------------------------------------------------------------------------- /arrayReplace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayReplace/README.md -------------------------------------------------------------------------------- /arrayReplace/arrayReplace.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayReplace/arrayReplace.spec.ts -------------------------------------------------------------------------------- /arrayReplace/arrayReplace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/arrayReplace/arrayReplace.ts -------------------------------------------------------------------------------- /avoidObstacles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/avoidObstacles/README.md -------------------------------------------------------------------------------- /avoidObstacles/avoidObstacles.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/avoidObstacles/avoidObstacles.spec.ts -------------------------------------------------------------------------------- /avoidObstacles/avoidObstacles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/avoidObstacles/avoidObstacles.ts -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/babel.config.js -------------------------------------------------------------------------------- /bishopAndPawn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/bishopAndPawn/README.md -------------------------------------------------------------------------------- /bishopAndPawn/bishopAndPawn.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/bishopAndPawn/bishopAndPawn.spec.ts -------------------------------------------------------------------------------- /bishopAndPawn/bishopAndPawn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/bishopAndPawn/bishopAndPawn.ts -------------------------------------------------------------------------------- /boxBlur/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/boxBlur/README.md -------------------------------------------------------------------------------- /boxBlur/boxBlur.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/boxBlur/boxBlur.spec.ts -------------------------------------------------------------------------------- /boxBlur/boxBlur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/boxBlur/boxBlur.ts -------------------------------------------------------------------------------- /candies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/candies/README.md -------------------------------------------------------------------------------- /candies/candies.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/candies/candies.spec.ts -------------------------------------------------------------------------------- /candies/candies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/candies/candies.ts -------------------------------------------------------------------------------- /caseInsensitivePalimdrome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/caseInsensitivePalimdrome/README.md -------------------------------------------------------------------------------- /caseInsensitivePalimdrome/caseInsensitivePalindrome.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/caseInsensitivePalimdrome/caseInsensitivePalindrome.spec.ts -------------------------------------------------------------------------------- /caseInsensitivePalimdrome/caseInsensitivePalindrome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/caseInsensitivePalimdrome/caseInsensitivePalindrome.ts -------------------------------------------------------------------------------- /centuryFromYear/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/centuryFromYear/README.md -------------------------------------------------------------------------------- /centuryFromYear/centuryFromYear.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/centuryFromYear/centuryFromYear.spec.ts -------------------------------------------------------------------------------- /centuryFromYear/centuryFromYear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/centuryFromYear/centuryFromYear.ts -------------------------------------------------------------------------------- /characterParity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/characterParity/README.md -------------------------------------------------------------------------------- /characterParity/characterParity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/characterParity/characterParity.ts -------------------------------------------------------------------------------- /characterParity/chracterParity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/characterParity/chracterParity.spec.ts -------------------------------------------------------------------------------- /checkPalindrome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/checkPalindrome/README.md -------------------------------------------------------------------------------- /checkPalindrome/checkPalindrome.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/checkPalindrome/checkPalindrome.spec.ts -------------------------------------------------------------------------------- /checkPalindrome/checkPalindrome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/checkPalindrome/checkPalindrome.ts -------------------------------------------------------------------------------- /chessBoardCellColor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/chessBoardCellColor/README.md -------------------------------------------------------------------------------- /chessBoardCellColor/chessBoardCellColor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/chessBoardCellColor/chessBoardCellColor.spec.ts -------------------------------------------------------------------------------- /chessBoardCellColor/chessBoardCellColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/chessBoardCellColor/chessBoardCellColor.ts -------------------------------------------------------------------------------- /chunkyMonkey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/chunkyMonkey/README.md -------------------------------------------------------------------------------- /chunkyMonkey/chunkeyMonkey.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/chunkyMonkey/chunkeyMonkey.spec.ts -------------------------------------------------------------------------------- /chunkyMonkey/chunkyMonkey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/chunkyMonkey/chunkyMonkey.ts -------------------------------------------------------------------------------- /circleOfNumbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/circleOfNumbers/README.md -------------------------------------------------------------------------------- /circleOfNumbers/circleOfNumbers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/circleOfNumbers/circleOfNumbers.spec.ts -------------------------------------------------------------------------------- /circleOfNumbers/circleOfNumbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/circleOfNumbers/circleOfNumbers.ts -------------------------------------------------------------------------------- /commonCharacterCount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/commonCharacterCount/README.md -------------------------------------------------------------------------------- /commonCharacterCount/commonCharacterCount.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/commonCharacterCount/commonCharacterCount.spec.ts -------------------------------------------------------------------------------- /commonCharacterCount/commonCharacterCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/commonCharacterCount/commonCharacterCount.ts -------------------------------------------------------------------------------- /companyBotStrategy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/companyBotStrategy/README.md -------------------------------------------------------------------------------- /companyBotStrategy/companyBotStrategy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/companyBotStrategy/companyBotStrategy.spec.ts -------------------------------------------------------------------------------- /companyBotStrategy/companyBotStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/companyBotStrategy/companyBotStrategy.ts -------------------------------------------------------------------------------- /compareIntegers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/compareIntegers/README.md -------------------------------------------------------------------------------- /compareIntegers/compareIntegers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/compareIntegers/compareIntegers.spec.ts -------------------------------------------------------------------------------- /compareIntegers/compareIntegers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/compareIntegers/compareIntegers.ts -------------------------------------------------------------------------------- /composeRanges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/composeRanges/README.md -------------------------------------------------------------------------------- /composeRanges/composeRanges.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/composeRanges/composeRanges.spec.ts -------------------------------------------------------------------------------- /composeRanges/composeRanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/composeRanges/composeRanges.ts -------------------------------------------------------------------------------- /confirmEnding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/confirmEnding/README.md -------------------------------------------------------------------------------- /confirmEnding/confirmEnding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/confirmEnding/confirmEnding.ts -------------------------------------------------------------------------------- /confirmEnding/confrimEnding.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/confirmEnding/confrimEnding.spec.ts -------------------------------------------------------------------------------- /containsCloseNums/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/containsCloseNums/README.md -------------------------------------------------------------------------------- /containsCloseNums/containsCloseNums.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/containsCloseNums/containsCloseNums.spec.ts -------------------------------------------------------------------------------- /containsCloseNums/containsCloseNums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/containsCloseNums/containsCloseNums.ts -------------------------------------------------------------------------------- /containsDuplicates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/containsDuplicates/README.md -------------------------------------------------------------------------------- /containsDuplicates/containsDuplicates.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/containsDuplicates/containsDuplicates.spec.ts -------------------------------------------------------------------------------- /containsDuplicates/containsDuplicates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/containsDuplicates/containsDuplicates.ts -------------------------------------------------------------------------------- /convertCelsiusToFahrenheit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/convertCelsiusToFahrenheit/README.md -------------------------------------------------------------------------------- /convertCelsiusToFahrenheit/convertCelsiusToFahrenheit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/convertCelsiusToFahrenheit/convertCelsiusToFahrenheit.spec.ts -------------------------------------------------------------------------------- /convertCelsiusToFahrenheit/convertCelsiusToFahrenheit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/convertCelsiusToFahrenheit/convertCelsiusToFahrenheit.ts -------------------------------------------------------------------------------- /convertString/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/convertString/README.md -------------------------------------------------------------------------------- /convertString/convertString.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/convertString/convertString.spec.ts -------------------------------------------------------------------------------- /convertString/convertString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/convertString/convertString.ts -------------------------------------------------------------------------------- /crossingSum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/crossingSum/README.md -------------------------------------------------------------------------------- /crossingSum/crossingSum.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/crossingSum/crossingSum.spec.ts -------------------------------------------------------------------------------- /crossingSum/crossingSum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/crossingSum/crossingSum.ts -------------------------------------------------------------------------------- /depositProfit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/depositProfit/README.md -------------------------------------------------------------------------------- /depositProfit/depositProfit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/depositProfit/depositProfit.spec.ts -------------------------------------------------------------------------------- /depositProfit/depositProfit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/depositProfit/depositProfit.ts -------------------------------------------------------------------------------- /differentSymbolsNaive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/differentSymbolsNaive/README.md -------------------------------------------------------------------------------- /differentSymbolsNaive/differentSymbolsNaive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/differentSymbolsNaive/differentSymbolsNaive.spec.ts -------------------------------------------------------------------------------- /differentSymbolsNaive/differentSymbolsNaive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/differentSymbolsNaive/differentSymbolsNaive.ts -------------------------------------------------------------------------------- /digitDegree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/digitDegree/README.md -------------------------------------------------------------------------------- /digitDegree/digitDegree.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/digitDegree/digitDegree.spec.ts -------------------------------------------------------------------------------- /digitDegree/digitDegree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/digitDegree/digitDegree.ts -------------------------------------------------------------------------------- /domainType/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/domainType/README.md -------------------------------------------------------------------------------- /domainType/domainType.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/domainType/domainType.spec.ts -------------------------------------------------------------------------------- /domainType/domainType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/domainType/domainType.ts -------------------------------------------------------------------------------- /electionWinners/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/electionWinners/README.md -------------------------------------------------------------------------------- /electionWinners/electionWinners.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/electionWinners/electionWinners.spec.ts -------------------------------------------------------------------------------- /electionWinners/electionWinners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/electionWinners/electionWinners.ts -------------------------------------------------------------------------------- /encloseInBrackets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/encloseInBrackets/README.md -------------------------------------------------------------------------------- /encloseInBrackets/encloseInBrackets.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/encloseInBrackets/encloseInBrackets.spec.ts -------------------------------------------------------------------------------- /encloseInBrackets/encloseInBrackets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/encloseInBrackets/encloseInBrackets.ts -------------------------------------------------------------------------------- /evenDigitsOnly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/evenDigitsOnly/README.md -------------------------------------------------------------------------------- /evenDigitsOnly/evenDigitsOnly.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/evenDigitsOnly/evenDigitsOnly.spec.ts -------------------------------------------------------------------------------- /evenDigitsOnly/evenDigitsOnly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/evenDigitsOnly/evenDigitsOnly.ts -------------------------------------------------------------------------------- /extractEachKth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/extractEachKth/README.md -------------------------------------------------------------------------------- /extractEachKth/extractEachKth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/extractEachKth/extractEachKth.spec.ts -------------------------------------------------------------------------------- /extractEachKth/extractEachKth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/extractEachKth/extractEachKth.ts -------------------------------------------------------------------------------- /extractMatrixColumn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/extractMatrixColumn/README.md -------------------------------------------------------------------------------- /extractMatrixColumn/extractMatrixColumn.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/extractMatrixColumn/extractMatrixColumn.spec.ts -------------------------------------------------------------------------------- /extractMatrixColumn/extractMatrixColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/extractMatrixColumn/extractMatrixColumn.ts -------------------------------------------------------------------------------- /factorializeANumber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/factorializeANumber/README.md -------------------------------------------------------------------------------- /factorializeANumber/factorializeANumber.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/factorializeANumber/factorializeANumber.spec.ts -------------------------------------------------------------------------------- /factorializeANumber/factorializeANumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/factorializeANumber/factorializeANumber.ts -------------------------------------------------------------------------------- /fancyRide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/fancyRide/README.md -------------------------------------------------------------------------------- /fancyRide/fancyRide.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/fancyRide/fancyRide.spec.ts -------------------------------------------------------------------------------- /fancyRide/fancyRide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/fancyRide/fancyRide.ts -------------------------------------------------------------------------------- /fareEstimator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/fareEstimator/README.md -------------------------------------------------------------------------------- /fareEstimator/fareEstimator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/fareEstimator/fareEstimator.spec.ts -------------------------------------------------------------------------------- /fareEstimator/fareEstimator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/fareEstimator/fareEstimator.ts -------------------------------------------------------------------------------- /fermactor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/fermactor/README.md -------------------------------------------------------------------------------- /fermactor/fermactor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/fermactor/fermactor.spec.ts -------------------------------------------------------------------------------- /fermactor/fermactor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/fermactor/fermactor.ts -------------------------------------------------------------------------------- /findClosestPair/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/findClosestPair/README.md -------------------------------------------------------------------------------- /findClosestPair/findCloserPair.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/findClosestPair/findCloserPair.spec.ts -------------------------------------------------------------------------------- /findClosestPair/findClosestPair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/findClosestPair/findClosestPair.ts -------------------------------------------------------------------------------- /findEmailDomain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/findEmailDomain/README.md -------------------------------------------------------------------------------- /findEmailDomain/findEmailDomain.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/findEmailDomain/findEmailDomain.spec.ts -------------------------------------------------------------------------------- /findEmailDomain/findEmailDomain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/findEmailDomain/findEmailDomain.ts -------------------------------------------------------------------------------- /firstDigit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/firstDigit/README.md -------------------------------------------------------------------------------- /firstDigit/firstDigit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/firstDigit/firstDigit.spec.ts -------------------------------------------------------------------------------- /firstDigit/firstDigit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/firstDigit/firstDigit.ts -------------------------------------------------------------------------------- /firstDuplicate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/firstDuplicate/README.md -------------------------------------------------------------------------------- /firstDuplicate/firstDuplicate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/firstDuplicate/firstDuplicate.spec.ts -------------------------------------------------------------------------------- /firstDuplicate/firstDuplicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/firstDuplicate/firstDuplicate.ts -------------------------------------------------------------------------------- /firstNotRepeatingCharacter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/firstNotRepeatingCharacter/README.md -------------------------------------------------------------------------------- /firstNotRepeatingCharacter/firstNotRepeatingCharacter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/firstNotRepeatingCharacter/firstNotRepeatingCharacter.spec.ts -------------------------------------------------------------------------------- /firstNotRepeatingCharacter/firstNotRepeatingCharacter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/firstNotRepeatingCharacter/firstNotRepeatingCharacter.ts -------------------------------------------------------------------------------- /flattenArray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/flattenArray/README.md -------------------------------------------------------------------------------- /flattenArray/flattenArray.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/flattenArray/flattenArray.spec.ts -------------------------------------------------------------------------------- /flattenArray/flattenArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/flattenArray/flattenArray.ts -------------------------------------------------------------------------------- /growingPlant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/growingPlant/README.md -------------------------------------------------------------------------------- /growingPlant/growingPlant.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/growingPlant/growingPlant.spec.ts -------------------------------------------------------------------------------- /growingPlant/growingPlant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/growingPlant/growingPlant.ts -------------------------------------------------------------------------------- /houseNumbersSum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/houseNumbersSum/README.md -------------------------------------------------------------------------------- /houseNumbersSum/houseNumberSum.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/houseNumbersSum/houseNumberSum.spec.ts -------------------------------------------------------------------------------- /houseNumbersSum/houseNumbersSum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/houseNumbersSum/houseNumbersSum.ts -------------------------------------------------------------------------------- /houseOfCats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/houseOfCats/README.md -------------------------------------------------------------------------------- /houseOfCats/houseOfCats.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/houseOfCats/houseOfCats.spec.ts -------------------------------------------------------------------------------- /houseOfCats/houseOfCats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/houseOfCats/houseOfCats.ts -------------------------------------------------------------------------------- /htmlEndTagByStartTag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/htmlEndTagByStartTag/README.md -------------------------------------------------------------------------------- /htmlEndTagByStartTag/htmlEndTagByStartTag.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/htmlEndTagByStartTag/htmlEndTagByStartTag.spec.ts -------------------------------------------------------------------------------- /htmlEndTagByStartTag/htmlEndTagByStartTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/htmlEndTagByStartTag/htmlEndTagByStartTag.ts -------------------------------------------------------------------------------- /incorrectPasswordAttempts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/incorrectPasswordAttempts/README.md -------------------------------------------------------------------------------- /incorrectPasswordAttempts/incorrectPasswordAttempts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/incorrectPasswordAttempts/incorrectPasswordAttempts.spec.ts -------------------------------------------------------------------------------- /incorrectPasswordAttempts/incorrectPasswordAttempts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/incorrectPasswordAttempts/incorrectPasswordAttempts.ts -------------------------------------------------------------------------------- /incrementalBackups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/incrementalBackups/README.md -------------------------------------------------------------------------------- /incrementalBackups/incrementalBackups.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/incrementalBackups/incrementalBackups.spec.ts -------------------------------------------------------------------------------- /incrementalBackups/incrementalBackups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/incrementalBackups/incrementalBackups.ts -------------------------------------------------------------------------------- /integerToStringOfFixedWidth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/integerToStringOfFixedWidth/README.md -------------------------------------------------------------------------------- /integerToStringOfFixedWidth/integerToStringOfFixedWidth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/integerToStringOfFixedWidth/integerToStringOfFixedWidth.spec.ts -------------------------------------------------------------------------------- /integerToStringOfFixedWidth/integerToStringOfFixedWidth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/integerToStringOfFixedWidth/integerToStringOfFixedWidth.ts -------------------------------------------------------------------------------- /isLucky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/isLucky/README.md -------------------------------------------------------------------------------- /isLucky/isLucky.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/isLucky/isLucky.spec.ts -------------------------------------------------------------------------------- /isLucky/isLucky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/isLucky/isLucky.ts -------------------------------------------------------------------------------- /isTandemRepeat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/isTandemRepeat/README.md -------------------------------------------------------------------------------- /isTandemRepeat/isTandemRepeat.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/isTandemRepeat/isTandemRepeat.spec.ts -------------------------------------------------------------------------------- /isTandemRepeat/isTandemRepeat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/isTandemRepeat/isTandemRepeat.ts -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/jest.config.ts -------------------------------------------------------------------------------- /largestNumber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/largestNumber/README.md -------------------------------------------------------------------------------- /largestNumber/largestNumber.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/largestNumber/largestNumber.spec.ts -------------------------------------------------------------------------------- /largestNumber/largestNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/largestNumber/largestNumber.ts -------------------------------------------------------------------------------- /largestOfFour/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/largestOfFour/README.md -------------------------------------------------------------------------------- /largestOfFour/largestOfFour.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/largestOfFour/largestOfFour.spec.ts -------------------------------------------------------------------------------- /largestOfFour/largestOfFour.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/largestOfFour/largestOfFour.ts -------------------------------------------------------------------------------- /lateRide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/lateRide/README.md -------------------------------------------------------------------------------- /lateRide/lateRide.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/lateRide/lateRide.spec.ts -------------------------------------------------------------------------------- /lateRide/lateRide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/lateRide/lateRide.ts -------------------------------------------------------------------------------- /launchSequenceChecker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/launchSequenceChecker/README.md -------------------------------------------------------------------------------- /launchSequenceChecker/launchSequenceChecker.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/launchSequenceChecker/launchSequenceChecker.spec.ts -------------------------------------------------------------------------------- /launchSequenceChecker/launchSequenceChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/launchSequenceChecker/launchSequenceChecker.ts -------------------------------------------------------------------------------- /longestDigitsPrefix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/longestDigitsPrefix/README.md -------------------------------------------------------------------------------- /longestDigitsPrefix/longestDigitsPrefix.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/longestDigitsPrefix/longestDigitsPrefix.spec.ts -------------------------------------------------------------------------------- /longestDigitsPrefix/longestDigitsPrefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/longestDigitsPrefix/longestDigitsPrefix.ts -------------------------------------------------------------------------------- /makeArrayConsecutive2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/makeArrayConsecutive2/README.md -------------------------------------------------------------------------------- /makeArrayConsecutive2/makeArrayConsecutive2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/makeArrayConsecutive2/makeArrayConsecutive2.spec.ts -------------------------------------------------------------------------------- /makeArrayConsecutive2/makeArrayConsecutive2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/makeArrayConsecutive2/makeArrayConsecutive2.ts -------------------------------------------------------------------------------- /matrixElementsSum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/matrixElementsSum/README.md -------------------------------------------------------------------------------- /matrixElementsSum/matrixElementsSum.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/matrixElementsSum/matrixElementsSum.spec.ts -------------------------------------------------------------------------------- /matrixElementsSum/matrixElementsSum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/matrixElementsSum/matrixElementsSum.ts -------------------------------------------------------------------------------- /maxMultiple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/maxMultiple/README.md -------------------------------------------------------------------------------- /maxMultiple/maxMultiple.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/maxMultiple/maxMultiple.spec.ts -------------------------------------------------------------------------------- /maxMultiple/maxMultiple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/maxMultiple/maxMultiple.ts -------------------------------------------------------------------------------- /mineSweeper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/mineSweeper/README.md -------------------------------------------------------------------------------- /mineSweeper/mineSweeper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/mineSweeper/mineSweeper.spec.ts -------------------------------------------------------------------------------- /mineSweeper/mineSweeper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/mineSweeper/mineSweeper.ts -------------------------------------------------------------------------------- /minimalNumberOfCoins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/minimalNumberOfCoins/README.md -------------------------------------------------------------------------------- /minimalNumberOfCoins/minimalNumberOfCoins.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/minimalNumberOfCoins/minimalNumberOfCoins.spec.ts -------------------------------------------------------------------------------- /minimalNumberOfCoins/minimalNumberOfCoins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/minimalNumberOfCoins/minimalNumberOfCoins.ts -------------------------------------------------------------------------------- /missingLetters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/missingLetters/README.md -------------------------------------------------------------------------------- /missingLetters/missingLetters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/missingLetters/missingLetters.spec.ts -------------------------------------------------------------------------------- /missingLetters/missingLetters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/missingLetters/missingLetters.ts -------------------------------------------------------------------------------- /mostFrequentDigitSum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/mostFrequentDigitSum/README.md -------------------------------------------------------------------------------- /mostFrequentDigitSum/mostFrequentDigitSum.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/mostFrequentDigitSum/mostFrequentDigitSum.spec.ts -------------------------------------------------------------------------------- /mostFrequentDigitSum/mostFrequentDigitSum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/mostFrequentDigitSum/mostFrequentDigitSum.ts -------------------------------------------------------------------------------- /newNumeralSystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/newNumeralSystem/README.md -------------------------------------------------------------------------------- /newNumeralSystem/newNumeralSystem.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/newNumeralSystem/newNumeralSystem.spec.ts -------------------------------------------------------------------------------- /newNumeralSystem/newNumeralSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/newNumeralSystem/newNumeralSystem.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/package.json -------------------------------------------------------------------------------- /pagesNumberingWithInk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/pagesNumberingWithInk/README.md -------------------------------------------------------------------------------- /pagesNumberingWithInk/pageNumberingWithInk.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/pagesNumberingWithInk/pageNumberingWithInk.spec.ts -------------------------------------------------------------------------------- /pagesNumberingWithInk/pagesNumberingWithInk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/pagesNumberingWithInk/pagesNumberingWithInk.ts -------------------------------------------------------------------------------- /palindromeRearranging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/palindromeRearranging/README.md -------------------------------------------------------------------------------- /palindromeRearranging/palindromeRearranging.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/palindromeRearranging/palindromeRearranging.spec.ts -------------------------------------------------------------------------------- /palindromeRearranging/palindromeRearranging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/palindromeRearranging/palindromeRearranging.ts -------------------------------------------------------------------------------- /pigLatin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/pigLatin/README.md -------------------------------------------------------------------------------- /pigLatin/pigLatin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/pigLatin/pigLatin.spec.ts -------------------------------------------------------------------------------- /pigLatin/pigLatin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/pigLatin/pigLatin.ts -------------------------------------------------------------------------------- /proCategorization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/proCategorization/README.md -------------------------------------------------------------------------------- /proCategorization/proCategorization.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/proCategorization/proCategorization.spec.ts -------------------------------------------------------------------------------- /proCategorization/proCategorization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/proCategorization/proCategorization.ts -------------------------------------------------------------------------------- /properNounCorrection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/properNounCorrection/README.md -------------------------------------------------------------------------------- /properNounCorrection/properNounCorrection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/properNounCorrection/properNounCorrection.spec.ts -------------------------------------------------------------------------------- /properNounCorrection/properNounCorrection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/properNounCorrection/properNounCorrection.ts -------------------------------------------------------------------------------- /ratingThreshold/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/ratingThreshold/README.md -------------------------------------------------------------------------------- /ratingThreshold/ratingThreshold.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/ratingThreshold/ratingThreshold.spec.ts -------------------------------------------------------------------------------- /ratingThreshold/ratingThreshold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/ratingThreshold/ratingThreshold.ts -------------------------------------------------------------------------------- /reflectString/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/reflectString/README.md -------------------------------------------------------------------------------- /reflectString/reflectString.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/reflectString/reflectString.spec.ts -------------------------------------------------------------------------------- /reflectString/reflectString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/reflectString/reflectString.ts -------------------------------------------------------------------------------- /reverseAString/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/reverseAString/README.md -------------------------------------------------------------------------------- /reverseAString/reverseAString.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/reverseAString/reverseAString.spec.ts -------------------------------------------------------------------------------- /reverseAString/reverseAString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/reverseAString/reverseAString.ts -------------------------------------------------------------------------------- /seatsInTheater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/seatsInTheater/README.md -------------------------------------------------------------------------------- /seatsInTheater/seatsInTheater.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/seatsInTheater/seatsInTheater.spec.ts -------------------------------------------------------------------------------- /seatsInTheater/seatsInTheater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/seatsInTheater/seatsInTheater.ts -------------------------------------------------------------------------------- /seekAndDestroy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/seekAndDestroy/README.md -------------------------------------------------------------------------------- /seekAndDestroy/seekAndDestroy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/seekAndDestroy/seekAndDestroy.spec.ts -------------------------------------------------------------------------------- /seekAndDestroy/seekAndDestroy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/seekAndDestroy/seekAndDestroy.ts -------------------------------------------------------------------------------- /shapeArea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/shapeArea/README.md -------------------------------------------------------------------------------- /shapeArea/shapeArea.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/shapeArea/shapeArea.spec.ts -------------------------------------------------------------------------------- /shapeArea/shapeArea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/shapeArea/shapeArea.ts -------------------------------------------------------------------------------- /sortByHeight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sortByHeight/README.md -------------------------------------------------------------------------------- /sortByHeight/sortByHeight.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sortByHeight/sortByHeight.spec.ts -------------------------------------------------------------------------------- /sortByHeight/sortByHeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sortByHeight/sortByHeight.ts -------------------------------------------------------------------------------- /sortByLength/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sortByLength/README.md -------------------------------------------------------------------------------- /sortByLength/sortByLength.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sortByLength/sortByLength.spec.ts -------------------------------------------------------------------------------- /sortByLength/sortByLength.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sortByLength/sortByLength.ts -------------------------------------------------------------------------------- /squareDigitsSequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/squareDigitsSequence/README.md -------------------------------------------------------------------------------- /squareDigitsSequence/squareDigitsSequence.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/squareDigitsSequence/squareDigitsSequence.spec.ts -------------------------------------------------------------------------------- /squareDigitsSequence/squareDigitsSequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/squareDigitsSequence/squareDigitsSequence.ts -------------------------------------------------------------------------------- /stolenLunch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/stolenLunch/README.md -------------------------------------------------------------------------------- /stolenLunch/stolenLunch.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/stolenLunch/stolenLunch.spec.ts -------------------------------------------------------------------------------- /stolenLunch/stolenLunch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/stolenLunch/stolenLunch.ts -------------------------------------------------------------------------------- /stringsConstruction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/stringsConstruction/README.md -------------------------------------------------------------------------------- /stringsConstruction/stringsConstruction.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/stringsConstruction/stringsConstruction.spec.ts -------------------------------------------------------------------------------- /stringsConstruction/stringsConstruction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/stringsConstruction/stringsConstruction.ts -------------------------------------------------------------------------------- /sumAllPrimes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sumAllPrimes/README.md -------------------------------------------------------------------------------- /sumAllPrimes/sumAllPrimes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sumAllPrimes/sumAllPrimes.spec.ts -------------------------------------------------------------------------------- /sumAllPrimes/sumAllPrimes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sumAllPrimes/sumAllPrimes.ts -------------------------------------------------------------------------------- /sumOddFibonacciNums/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sumOddFibonacciNums/README.md -------------------------------------------------------------------------------- /sumOddFibonacciNums/sumOddFibonacciNums.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sumOddFibonacciNums/sumOddFibonacciNums.spec.ts -------------------------------------------------------------------------------- /sumOddFibonacciNums/sumOddFibonacciNums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sumOddFibonacciNums/sumOddFibonacciNums.ts -------------------------------------------------------------------------------- /sumOfTwo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sumOfTwo/README.md -------------------------------------------------------------------------------- /sumOfTwo/sumOfTwo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sumOfTwo/sumOfTwo.spec.ts -------------------------------------------------------------------------------- /sumOfTwo/sumOfTwo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/sumOfTwo/sumOfTwo.ts -------------------------------------------------------------------------------- /switchLights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/switchLights/README.md -------------------------------------------------------------------------------- /switchLights/switchLights.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/switchLights/switchLights.spec.ts -------------------------------------------------------------------------------- /switchLights/switchLights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/switchLights/switchLights.ts -------------------------------------------------------------------------------- /tasksType/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/tasksType/README.md -------------------------------------------------------------------------------- /tasksType/taskType.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/tasksType/taskType.spec.ts -------------------------------------------------------------------------------- /tasksType/tasksType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/tasksType/tasksType.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/tsconfig.json -------------------------------------------------------------------------------- /uniqueDigitProducts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/uniqueDigitProducts/README.md -------------------------------------------------------------------------------- /uniqueDigitProducts/uniqueDigitsProducts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/uniqueDigitProducts/uniqueDigitsProducts.spec.ts -------------------------------------------------------------------------------- /uniqueDigitProducts/uniqueDigitsProducts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/uniqueDigitProducts/uniqueDigitsProducts.ts -------------------------------------------------------------------------------- /validTime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/validTime/README.md -------------------------------------------------------------------------------- /validTime/validTime.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/validTime/validTime.spec.ts -------------------------------------------------------------------------------- /validTime/validTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dylan-Israel/100AlgorithmsChallenge/HEAD/validTime/validTime.ts --------------------------------------------------------------------------------