├── .gitignore ├── Interview-Preparation-Kit ├── Arrays │ ├── 2D-Array-DS │ │ ├── 2DArrayDS.UnitTests │ │ │ ├── 2DArrayDS.UnitTests.csproj │ │ │ └── SolutionTests.cs │ │ ├── 2DArrayDS.sln │ │ └── 2DArrayDS │ │ │ ├── 2DArrayDS.csproj │ │ │ └── Solution.cs │ ├── Array-Manipulation │ │ ├── ArrayManipulation.UnitTests │ │ │ ├── ArrayManipulation.UnitTests.csproj │ │ │ └── SolutionTests.cs │ │ ├── ArrayManipulation.sln │ │ └── ArrayManipulation │ │ │ ├── ArrayManipulation.csproj │ │ │ └── Solution.cs │ ├── Left-Rotation │ │ ├── LeftRotation.UnitTests │ │ │ ├── LeftRotation.UnitTests.csproj │ │ │ └── SolutionTests.cs │ │ ├── LeftRotation.sln │ │ └── LeftRotation │ │ │ ├── LeftRotation.csproj │ │ │ └── Solution.cs │ ├── Minimum-Swaps-2 │ │ ├── MinimumSwaps2.UnitTests │ │ │ ├── MinimumSwaps2.UnitTests.csproj │ │ │ └── SolutionTests.cs │ │ ├── MinimumSwaps2.sln │ │ └── MinimumSwaps2 │ │ │ ├── MinimumSwaps2.csproj │ │ │ └── Solution.cs │ └── New-Year-Chaos │ │ ├── NewYearChaos.UnitTests │ │ ├── NewYearChaos.UnitTests.csproj │ │ └── SolutionTests.cs │ │ ├── NewYearChaos.sln │ │ └── NewYearChaos │ │ ├── NewYearChaos.csproj │ │ └── Solution.cs ├── Hash-Tables │ ├── Count-Triplets │ │ ├── CountTriplets.UnitTests │ │ │ ├── CountTriplets.UnitTests.csproj │ │ │ └── SolutionTests.cs │ │ ├── CountTriplets.sln │ │ └── CountTriplets │ │ │ ├── CountTriplets.csproj │ │ │ └── Solution.cs │ ├── Frequency-Queries │ │ ├── FrequencyQueries.UnitTests │ │ │ ├── FrequencyQueries.UnitTests.csproj │ │ │ └── SolutionTests.cs │ │ ├── FrequencyQueries.sln │ │ └── FrequencyQueries │ │ │ ├── FrequencyQueries.csproj │ │ │ └── Solution.cs │ ├── Ransom-Note │ │ ├── RansomNote.UnitTests │ │ │ ├── RansomNote.UnitTests.csproj │ │ │ └── SolutionTests.cs │ │ ├── RansomNote.sln │ │ └── RansomNote │ │ │ ├── RansomNote.csproj │ │ │ └── Solution.cs │ ├── Sherlock-and-Anagrams │ │ ├── SherlockAndAnagrams.UnitTests │ │ │ ├── SherlockAndAnagrams.UnitTests.csproj │ │ │ └── SolutionTests.cs │ │ ├── SherlockAndAnagrams.sln │ │ └── SherlockAndAnagrams │ │ │ ├── SherlockAndAnagrams.csproj │ │ │ └── Solution.cs │ └── Two-Strings │ │ ├── TwoStrings.UnitTests │ │ ├── SolutionTests.cs │ │ └── TwoStrings.UnitTests.csproj │ │ ├── TwoStrings.sln │ │ └── TwoStrings │ │ ├── Solution.cs │ │ └── TwoStrings.csproj ├── Sorting │ ├── Bubble-Sort │ │ ├── Solution.UnitTests │ │ │ ├── Solution.UnitTests.csproj │ │ │ └── SolutionTests.cs │ │ ├── Solution.sln │ │ └── Solution │ │ │ ├── Solution.cs │ │ │ └── Solution.csproj │ ├── Counting-Inversions │ │ ├── Solution.UnitTests │ │ │ ├── Solution.UnitTests.csproj │ │ │ └── SolutionTests.cs │ │ ├── Solution.sln │ │ └── Solution │ │ │ ├── Solution.cs │ │ │ └── Solution.csproj │ └── Mark-and-Toys │ │ ├── Solution.UnitTests │ │ ├── Solution.UnitTests.csproj │ │ └── SolutionTests.cs │ │ ├── Solution.sln │ │ └── Solution │ │ ├── Solution.cs │ │ └── Solution.csproj └── Warm-up-Challenges │ ├── Counting-Valleys │ ├── CountingValleys.UnitTests │ │ ├── CountingValleys.UnitTests.csproj │ │ └── SolutionTests.cs │ ├── CountingValleys.sln │ └── CountingValleys │ │ ├── CountingValleys.csproj │ │ └── Solution.cs │ ├── Jumping-on-the-Clouds │ ├── JumpingOnTheClouds.UnitTests │ │ ├── JumpingOnTheClouds.UnitTests.csproj │ │ └── SolutionTests.cs │ ├── JumpingOnTheClouds.sln │ └── JumpingOnTheClouds │ │ ├── JumpingOnTheClouds.csproj │ │ └── Solution.cs │ ├── Repeated-String │ ├── RepeatedString.UnitTests │ │ ├── RepeatedString.UnitTests.csproj │ │ └── SolutionTests.cs │ ├── RepeatedString.sln │ └── RepeatedString │ │ ├── RepeatedString.csproj │ │ └── Solution.cs │ └── Sock-Merchant │ ├── SockMerchant.UnitTests │ ├── SockMerchant.UnitTests.csproj │ └── SolutionTests.cs │ ├── SockMerchant.sln │ └── SockMerchant │ ├── SockMerchant.csproj │ └── Solution.cs ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/.gitignore -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/2D-Array-DS/2DArrayDS.UnitTests/2DArrayDS.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/2D-Array-DS/2DArrayDS.UnitTests/2DArrayDS.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/2D-Array-DS/2DArrayDS.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/2D-Array-DS/2DArrayDS.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/2D-Array-DS/2DArrayDS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/2D-Array-DS/2DArrayDS.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/2D-Array-DS/2DArrayDS/2DArrayDS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/2D-Array-DS/2DArrayDS/2DArrayDS.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/2D-Array-DS/2DArrayDS/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/2D-Array-DS/2DArrayDS/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Array-Manipulation/ArrayManipulation.UnitTests/ArrayManipulation.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Array-Manipulation/ArrayManipulation.UnitTests/ArrayManipulation.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Array-Manipulation/ArrayManipulation.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Array-Manipulation/ArrayManipulation.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Array-Manipulation/ArrayManipulation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Array-Manipulation/ArrayManipulation.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Array-Manipulation/ArrayManipulation/ArrayManipulation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Array-Manipulation/ArrayManipulation/ArrayManipulation.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Array-Manipulation/ArrayManipulation/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Array-Manipulation/ArrayManipulation/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Left-Rotation/LeftRotation.UnitTests/LeftRotation.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Left-Rotation/LeftRotation.UnitTests/LeftRotation.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Left-Rotation/LeftRotation.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Left-Rotation/LeftRotation.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Left-Rotation/LeftRotation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Left-Rotation/LeftRotation.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Left-Rotation/LeftRotation/LeftRotation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Left-Rotation/LeftRotation/LeftRotation.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Left-Rotation/LeftRotation/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Left-Rotation/LeftRotation/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Minimum-Swaps-2/MinimumSwaps2.UnitTests/MinimumSwaps2.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Minimum-Swaps-2/MinimumSwaps2.UnitTests/MinimumSwaps2.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Minimum-Swaps-2/MinimumSwaps2.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Minimum-Swaps-2/MinimumSwaps2.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Minimum-Swaps-2/MinimumSwaps2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Minimum-Swaps-2/MinimumSwaps2.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Minimum-Swaps-2/MinimumSwaps2/MinimumSwaps2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Minimum-Swaps-2/MinimumSwaps2/MinimumSwaps2.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/Minimum-Swaps-2/MinimumSwaps2/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/Minimum-Swaps-2/MinimumSwaps2/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/New-Year-Chaos/NewYearChaos.UnitTests/NewYearChaos.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/New-Year-Chaos/NewYearChaos.UnitTests/NewYearChaos.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/New-Year-Chaos/NewYearChaos.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/New-Year-Chaos/NewYearChaos.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/New-Year-Chaos/NewYearChaos.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/New-Year-Chaos/NewYearChaos.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/New-Year-Chaos/NewYearChaos/NewYearChaos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/New-Year-Chaos/NewYearChaos/NewYearChaos.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Arrays/New-Year-Chaos/NewYearChaos/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Arrays/New-Year-Chaos/NewYearChaos/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Count-Triplets/CountTriplets.UnitTests/CountTriplets.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Count-Triplets/CountTriplets.UnitTests/CountTriplets.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Count-Triplets/CountTriplets.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Count-Triplets/CountTriplets.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Count-Triplets/CountTriplets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Count-Triplets/CountTriplets.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Count-Triplets/CountTriplets/CountTriplets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Count-Triplets/CountTriplets/CountTriplets.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Count-Triplets/CountTriplets/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Count-Triplets/CountTriplets/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Frequency-Queries/FrequencyQueries.UnitTests/FrequencyQueries.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Frequency-Queries/FrequencyQueries.UnitTests/FrequencyQueries.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Frequency-Queries/FrequencyQueries.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Frequency-Queries/FrequencyQueries.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Frequency-Queries/FrequencyQueries.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Frequency-Queries/FrequencyQueries.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Frequency-Queries/FrequencyQueries/FrequencyQueries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Frequency-Queries/FrequencyQueries/FrequencyQueries.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Frequency-Queries/FrequencyQueries/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Frequency-Queries/FrequencyQueries/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Ransom-Note/RansomNote.UnitTests/RansomNote.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Ransom-Note/RansomNote.UnitTests/RansomNote.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Ransom-Note/RansomNote.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Ransom-Note/RansomNote.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Ransom-Note/RansomNote.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Ransom-Note/RansomNote.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Ransom-Note/RansomNote/RansomNote.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Ransom-Note/RansomNote/RansomNote.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Ransom-Note/RansomNote/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Ransom-Note/RansomNote/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Sherlock-and-Anagrams/SherlockAndAnagrams.UnitTests/SherlockAndAnagrams.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Sherlock-and-Anagrams/SherlockAndAnagrams.UnitTests/SherlockAndAnagrams.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Sherlock-and-Anagrams/SherlockAndAnagrams.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Sherlock-and-Anagrams/SherlockAndAnagrams.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Sherlock-and-Anagrams/SherlockAndAnagrams.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Sherlock-and-Anagrams/SherlockAndAnagrams.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Sherlock-and-Anagrams/SherlockAndAnagrams/SherlockAndAnagrams.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Sherlock-and-Anagrams/SherlockAndAnagrams/SherlockAndAnagrams.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Sherlock-and-Anagrams/SherlockAndAnagrams/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Sherlock-and-Anagrams/SherlockAndAnagrams/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Two-Strings/TwoStrings.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Two-Strings/TwoStrings.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Two-Strings/TwoStrings.UnitTests/TwoStrings.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Two-Strings/TwoStrings.UnitTests/TwoStrings.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Two-Strings/TwoStrings.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Two-Strings/TwoStrings.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Two-Strings/TwoStrings/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Two-Strings/TwoStrings/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Hash-Tables/Two-Strings/TwoStrings/TwoStrings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Hash-Tables/Two-Strings/TwoStrings/TwoStrings.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Bubble-Sort/Solution.UnitTests/Solution.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Bubble-Sort/Solution.UnitTests/Solution.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Bubble-Sort/Solution.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Bubble-Sort/Solution.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Bubble-Sort/Solution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Bubble-Sort/Solution.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Bubble-Sort/Solution/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Bubble-Sort/Solution/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Bubble-Sort/Solution/Solution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Bubble-Sort/Solution/Solution.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Counting-Inversions/Solution.UnitTests/Solution.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Counting-Inversions/Solution.UnitTests/Solution.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Counting-Inversions/Solution.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Counting-Inversions/Solution.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Counting-Inversions/Solution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Counting-Inversions/Solution.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Counting-Inversions/Solution/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Counting-Inversions/Solution/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Counting-Inversions/Solution/Solution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Counting-Inversions/Solution/Solution.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Mark-and-Toys/Solution.UnitTests/Solution.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Mark-and-Toys/Solution.UnitTests/Solution.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Mark-and-Toys/Solution.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Mark-and-Toys/Solution.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Mark-and-Toys/Solution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Mark-and-Toys/Solution.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Mark-and-Toys/Solution/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Mark-and-Toys/Solution/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Sorting/Mark-and-Toys/Solution/Solution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Sorting/Mark-and-Toys/Solution/Solution.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Counting-Valleys/CountingValleys.UnitTests/CountingValleys.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Counting-Valleys/CountingValleys.UnitTests/CountingValleys.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Counting-Valleys/CountingValleys.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Counting-Valleys/CountingValleys.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Counting-Valleys/CountingValleys.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Counting-Valleys/CountingValleys.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Counting-Valleys/CountingValleys/CountingValleys.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Counting-Valleys/CountingValleys/CountingValleys.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Counting-Valleys/CountingValleys/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Counting-Valleys/CountingValleys/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Jumping-on-the-Clouds/JumpingOnTheClouds.UnitTests/JumpingOnTheClouds.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Jumping-on-the-Clouds/JumpingOnTheClouds.UnitTests/JumpingOnTheClouds.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Jumping-on-the-Clouds/JumpingOnTheClouds.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Jumping-on-the-Clouds/JumpingOnTheClouds.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Jumping-on-the-Clouds/JumpingOnTheClouds.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Jumping-on-the-Clouds/JumpingOnTheClouds.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Jumping-on-the-Clouds/JumpingOnTheClouds/JumpingOnTheClouds.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Jumping-on-the-Clouds/JumpingOnTheClouds/JumpingOnTheClouds.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Jumping-on-the-Clouds/JumpingOnTheClouds/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Jumping-on-the-Clouds/JumpingOnTheClouds/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Repeated-String/RepeatedString.UnitTests/RepeatedString.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Repeated-String/RepeatedString.UnitTests/RepeatedString.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Repeated-String/RepeatedString.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Repeated-String/RepeatedString.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Repeated-String/RepeatedString.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Repeated-String/RepeatedString.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Repeated-String/RepeatedString/RepeatedString.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Repeated-String/RepeatedString/RepeatedString.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Repeated-String/RepeatedString/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Repeated-String/RepeatedString/Solution.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Sock-Merchant/SockMerchant.UnitTests/SockMerchant.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Sock-Merchant/SockMerchant.UnitTests/SockMerchant.UnitTests.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Sock-Merchant/SockMerchant.UnitTests/SolutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Sock-Merchant/SockMerchant.UnitTests/SolutionTests.cs -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Sock-Merchant/SockMerchant.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Sock-Merchant/SockMerchant.sln -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Sock-Merchant/SockMerchant/SockMerchant.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Sock-Merchant/SockMerchant/SockMerchant.csproj -------------------------------------------------------------------------------- /Interview-Preparation-Kit/Warm-up-Challenges/Sock-Merchant/SockMerchant/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/Interview-Preparation-Kit/Warm-up-Challenges/Sock-Merchant/SockMerchant/Solution.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glenmccallumcan/HackerRank-Solutions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HackerRank-Solutions --------------------------------------------------------------------------------