├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md └── LICENSE ├── .gitignore ├── Find Number of pairs.cpp ├── Palindrome And Substring.cpp ├── README.md ├── circularSubstring.cpp ├── consecutivePrimes.cpp ├── countDerangementInversions.cpp ├── energyDifference.cpp ├── findTheShape.cpp ├── huffmanDecode.cpp ├── killingZombies.cpp ├── maxCoins.cpp ├── minBin.cpp ├── minCostAddSubDouble.cpp ├── minCostOddPrimeSum.cpp ├── minRectArea.cpp ├── nutanixSportsMeet.cpp ├── prisonBreak.cpp ├── scientificFarmer.cpp ├── smallestRestrictedPalindrome.cpp ├── special binary string.cpp ├── superStack.cpp ├── travelingIsFun.cpp └── turnstile.cpp /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/.github/LICENSE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.o 3 | *.out -------------------------------------------------------------------------------- /Find Number of pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/Find Number of pairs.cpp -------------------------------------------------------------------------------- /Palindrome And Substring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/Palindrome And Substring.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/README.md -------------------------------------------------------------------------------- /circularSubstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/circularSubstring.cpp -------------------------------------------------------------------------------- /consecutivePrimes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/consecutivePrimes.cpp -------------------------------------------------------------------------------- /countDerangementInversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/countDerangementInversions.cpp -------------------------------------------------------------------------------- /energyDifference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/energyDifference.cpp -------------------------------------------------------------------------------- /findTheShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/findTheShape.cpp -------------------------------------------------------------------------------- /huffmanDecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/huffmanDecode.cpp -------------------------------------------------------------------------------- /killingZombies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/killingZombies.cpp -------------------------------------------------------------------------------- /maxCoins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/maxCoins.cpp -------------------------------------------------------------------------------- /minBin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/minBin.cpp -------------------------------------------------------------------------------- /minCostAddSubDouble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/minCostAddSubDouble.cpp -------------------------------------------------------------------------------- /minCostOddPrimeSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/minCostOddPrimeSum.cpp -------------------------------------------------------------------------------- /minRectArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/minRectArea.cpp -------------------------------------------------------------------------------- /nutanixSportsMeet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/nutanixSportsMeet.cpp -------------------------------------------------------------------------------- /prisonBreak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/prisonBreak.cpp -------------------------------------------------------------------------------- /scientificFarmer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/scientificFarmer.cpp -------------------------------------------------------------------------------- /smallestRestrictedPalindrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/smallestRestrictedPalindrome.cpp -------------------------------------------------------------------------------- /special binary string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/special binary string.cpp -------------------------------------------------------------------------------- /superStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/superStack.cpp -------------------------------------------------------------------------------- /travelingIsFun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/travelingIsFun.cpp -------------------------------------------------------------------------------- /turnstile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaushal02/interview-coding-problems/HEAD/turnstile.cpp --------------------------------------------------------------------------------