├── .gitignore ├── A Chocolate Fiesta.py ├── A journey to the Moon.py ├── ACM ICPC Team.py ├── Algorithmic Crush.py ├── Almost Sorted.py ├── Almost sorted interval.py ├── Alternating Characters.py ├── Anagram.py ├── Angry Children.py ├── AntiPalindromic Strings.py ├── B'day Gift.py ├── Bigger is Greater.py ├── Building a List.py ├── Bus Station.py ├── Chief Hopper.py ├── Circle City.py ├── Clique.py ├── Closest Number.py ├── Closest Numbers.py ├── Coin on the Table.py ├── Coinage.py ├── Common Child.py ├── Connected Cell in a Grid.py ├── Connecting Towns.py ├── Consecutive Subsequences.py ├── Costly Graphs.py ├── Count Luck.py ├── Counter game.py ├── Cut the sticks.py ├── Cut the tree.py ├── Cut the tree └── solve.cpp ├── Cutting boards.py ├── Cyclic Quadruples.py ├── Dortmund Dilemma.py ├── Dynamic Programming Classics - The Coin Change Problem.py ├── Dynamic Programming Classics - The Longest Common Subsequence.py ├── Dynamic Programming Classics - The Longest increasing subsequence.py ├── Dynamic Programming Classics - The Maximum Subarray.py ├── Encryption.py ├── Even Tree.py ├── Fibonacci Modified.py ├── Find Digits.py ├── Find Maximum Index Product.py ├── Find Median.py ├── Find the Median.py ├── Flip The Bits.py ├── Flowers.py ├── Friend Cycle.py ├── Funny String.py ├── Game Of Rotation.py ├── Game of Thrones - I.py ├── Gem Stones.py ├── Grid Challenge.py ├── Hexagonal Grid.py ├── Ice Cream Parlor.py ├── Is Fibo.py ├── Jim and the Orders.py ├── John and GCD list.py ├── Journey to Mars.py ├── K Candy Store.py ├── Knapsack.py ├── LICENSE ├── Largest Permutation.py ├── Lego Blocks.py ├── Little Ashish's Huge Donation.py ├── Lonely Integer.py ├── Make it Anagram.py ├── Manasa and Factorials.py ├── Manasa and Factorials └── solve.cpp ├── Manasa loves Maths.py ├── Mark and Toys.py ├── Maximise Sum.py ├── Maximizing XOR.py ├── Median.py ├── Median └── solve.cpp ├── Missing Numbers.py ├── Number List.py ├── Pairs.py ├── Palindrome Index.py ├── Pangrams.py ├── Picking Cards.py ├── Play Game.py ├── Polar Angles.py ├── Possible Path.py ├── Priyanka and Toys.py ├── README.md ├── Random.py ├── Red John is Back.py ├── Restaurant.py ├── Reverse Game.py ├── Sam and sub-strings.py ├── Sansa and XOR.py ├── Sherlock and Anagrams.py ├── Sherlock and Array.py ├── Sherlock and Cost.py ├── Sherlock and Divisors.py ├── Sherlock and GCD.py ├── Sherlock and MiniMax.py ├── Sherlock and Moving Tiles.py ├── Sherlock and Pairs.py ├── Sherlock and The Beast.py ├── Sherlock and Watson.py ├── Sherlock and permutations.py ├── Special Multiple.py ├── Stock Maximize.py ├── Strange Grid.py ├── String Chains.py ├── Substring Diff.py ├── Task Scheduling.py ├── The Coin Change Problem.py ├── The Grid Search.py ├── The Love-Letter Mystery.py ├── Two Strings.py ├── Two Two.py ├── Two arrays.py ├── Utopian Tree.py ├── Vertical Sticks.py ├── Xor and Sum.py ├── Xoring Ninja.py ├── java ├── HackerRankAlgorithms1.iml └── src │ ├── MaximiseSum │ └── Solution.java │ └── Solution.java ├── nCr table.py └── template.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/.gitignore -------------------------------------------------------------------------------- /A Chocolate Fiesta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/A Chocolate Fiesta.py -------------------------------------------------------------------------------- /A journey to the Moon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/A journey to the Moon.py -------------------------------------------------------------------------------- /ACM ICPC Team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/ACM ICPC Team.py -------------------------------------------------------------------------------- /Algorithmic Crush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Algorithmic Crush.py -------------------------------------------------------------------------------- /Almost Sorted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Almost Sorted.py -------------------------------------------------------------------------------- /Almost sorted interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Almost sorted interval.py -------------------------------------------------------------------------------- /Alternating Characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Alternating Characters.py -------------------------------------------------------------------------------- /Anagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Anagram.py -------------------------------------------------------------------------------- /Angry Children.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Angry Children.py -------------------------------------------------------------------------------- /AntiPalindromic Strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/AntiPalindromic Strings.py -------------------------------------------------------------------------------- /B'day Gift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/B'day Gift.py -------------------------------------------------------------------------------- /Bigger is Greater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Bigger is Greater.py -------------------------------------------------------------------------------- /Building a List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Building a List.py -------------------------------------------------------------------------------- /Bus Station.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Bus Station.py -------------------------------------------------------------------------------- /Chief Hopper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Chief Hopper.py -------------------------------------------------------------------------------- /Circle City.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Circle City.py -------------------------------------------------------------------------------- /Clique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Clique.py -------------------------------------------------------------------------------- /Closest Number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Closest Number.py -------------------------------------------------------------------------------- /Closest Numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Closest Numbers.py -------------------------------------------------------------------------------- /Coin on the Table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Coin on the Table.py -------------------------------------------------------------------------------- /Coinage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Coinage.py -------------------------------------------------------------------------------- /Common Child.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Common Child.py -------------------------------------------------------------------------------- /Connected Cell in a Grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Connected Cell in a Grid.py -------------------------------------------------------------------------------- /Connecting Towns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Connecting Towns.py -------------------------------------------------------------------------------- /Consecutive Subsequences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Consecutive Subsequences.py -------------------------------------------------------------------------------- /Costly Graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Costly Graphs.py -------------------------------------------------------------------------------- /Count Luck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Count Luck.py -------------------------------------------------------------------------------- /Counter game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Counter game.py -------------------------------------------------------------------------------- /Cut the sticks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Cut the sticks.py -------------------------------------------------------------------------------- /Cut the tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Cut the tree.py -------------------------------------------------------------------------------- /Cut the tree/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Cut the tree/solve.cpp -------------------------------------------------------------------------------- /Cutting boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Cutting boards.py -------------------------------------------------------------------------------- /Cyclic Quadruples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Cyclic Quadruples.py -------------------------------------------------------------------------------- /Dortmund Dilemma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Dortmund Dilemma.py -------------------------------------------------------------------------------- /Dynamic Programming Classics - The Coin Change Problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Dynamic Programming Classics - The Coin Change Problem.py -------------------------------------------------------------------------------- /Dynamic Programming Classics - The Longest Common Subsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Dynamic Programming Classics - The Longest Common Subsequence.py -------------------------------------------------------------------------------- /Dynamic Programming Classics - The Longest increasing subsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Dynamic Programming Classics - The Longest increasing subsequence.py -------------------------------------------------------------------------------- /Dynamic Programming Classics - The Maximum Subarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Dynamic Programming Classics - The Maximum Subarray.py -------------------------------------------------------------------------------- /Encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Encryption.py -------------------------------------------------------------------------------- /Even Tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Even Tree.py -------------------------------------------------------------------------------- /Fibonacci Modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Fibonacci Modified.py -------------------------------------------------------------------------------- /Find Digits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Find Digits.py -------------------------------------------------------------------------------- /Find Maximum Index Product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Find Maximum Index Product.py -------------------------------------------------------------------------------- /Find Median.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Find Median.py -------------------------------------------------------------------------------- /Find the Median.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Find the Median.py -------------------------------------------------------------------------------- /Flip The Bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Flip The Bits.py -------------------------------------------------------------------------------- /Flowers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Flowers.py -------------------------------------------------------------------------------- /Friend Cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Friend Cycle.py -------------------------------------------------------------------------------- /Funny String.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Funny String.py -------------------------------------------------------------------------------- /Game Of Rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Game Of Rotation.py -------------------------------------------------------------------------------- /Game of Thrones - I.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Game of Thrones - I.py -------------------------------------------------------------------------------- /Gem Stones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Gem Stones.py -------------------------------------------------------------------------------- /Grid Challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Grid Challenge.py -------------------------------------------------------------------------------- /Hexagonal Grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Hexagonal Grid.py -------------------------------------------------------------------------------- /Ice Cream Parlor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Ice Cream Parlor.py -------------------------------------------------------------------------------- /Is Fibo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Is Fibo.py -------------------------------------------------------------------------------- /Jim and the Orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Jim and the Orders.py -------------------------------------------------------------------------------- /John and GCD list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/John and GCD list.py -------------------------------------------------------------------------------- /Journey to Mars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Journey to Mars.py -------------------------------------------------------------------------------- /K Candy Store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/K Candy Store.py -------------------------------------------------------------------------------- /Knapsack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Knapsack.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/LICENSE -------------------------------------------------------------------------------- /Largest Permutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Largest Permutation.py -------------------------------------------------------------------------------- /Lego Blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Lego Blocks.py -------------------------------------------------------------------------------- /Little Ashish's Huge Donation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Little Ashish's Huge Donation.py -------------------------------------------------------------------------------- /Lonely Integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Lonely Integer.py -------------------------------------------------------------------------------- /Make it Anagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Make it Anagram.py -------------------------------------------------------------------------------- /Manasa and Factorials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Manasa and Factorials.py -------------------------------------------------------------------------------- /Manasa and Factorials/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Manasa and Factorials/solve.cpp -------------------------------------------------------------------------------- /Manasa loves Maths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Manasa loves Maths.py -------------------------------------------------------------------------------- /Mark and Toys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Mark and Toys.py -------------------------------------------------------------------------------- /Maximise Sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Maximise Sum.py -------------------------------------------------------------------------------- /Maximizing XOR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Maximizing XOR.py -------------------------------------------------------------------------------- /Median.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Median.py -------------------------------------------------------------------------------- /Median/solve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Median/solve.cpp -------------------------------------------------------------------------------- /Missing Numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Missing Numbers.py -------------------------------------------------------------------------------- /Number List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Number List.py -------------------------------------------------------------------------------- /Pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Pairs.py -------------------------------------------------------------------------------- /Palindrome Index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Palindrome Index.py -------------------------------------------------------------------------------- /Pangrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Pangrams.py -------------------------------------------------------------------------------- /Picking Cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Picking Cards.py -------------------------------------------------------------------------------- /Play Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Play Game.py -------------------------------------------------------------------------------- /Polar Angles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Polar Angles.py -------------------------------------------------------------------------------- /Possible Path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Possible Path.py -------------------------------------------------------------------------------- /Priyanka and Toys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Priyanka and Toys.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/README.md -------------------------------------------------------------------------------- /Random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Random.py -------------------------------------------------------------------------------- /Red John is Back.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Red John is Back.py -------------------------------------------------------------------------------- /Restaurant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Restaurant.py -------------------------------------------------------------------------------- /Reverse Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Reverse Game.py -------------------------------------------------------------------------------- /Sam and sub-strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Sam and sub-strings.py -------------------------------------------------------------------------------- /Sansa and XOR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Sansa and XOR.py -------------------------------------------------------------------------------- /Sherlock and Anagrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Sherlock and Anagrams.py -------------------------------------------------------------------------------- /Sherlock and Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Sherlock and Array.py -------------------------------------------------------------------------------- /Sherlock and Cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Sherlock and Cost.py -------------------------------------------------------------------------------- /Sherlock and Divisors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Sherlock and Divisors.py -------------------------------------------------------------------------------- /Sherlock and GCD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Sherlock and GCD.py -------------------------------------------------------------------------------- /Sherlock and MiniMax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Sherlock and MiniMax.py -------------------------------------------------------------------------------- /Sherlock and Moving Tiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Sherlock and Moving Tiles.py -------------------------------------------------------------------------------- /Sherlock and Pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Sherlock and Pairs.py -------------------------------------------------------------------------------- /Sherlock and The Beast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Sherlock and The Beast.py -------------------------------------------------------------------------------- /Sherlock and Watson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Sherlock and Watson.py -------------------------------------------------------------------------------- /Sherlock and permutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Sherlock and permutations.py -------------------------------------------------------------------------------- /Special Multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Special Multiple.py -------------------------------------------------------------------------------- /Stock Maximize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Stock Maximize.py -------------------------------------------------------------------------------- /Strange Grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Strange Grid.py -------------------------------------------------------------------------------- /String Chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/String Chains.py -------------------------------------------------------------------------------- /Substring Diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Substring Diff.py -------------------------------------------------------------------------------- /Task Scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Task Scheduling.py -------------------------------------------------------------------------------- /The Coin Change Problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/The Coin Change Problem.py -------------------------------------------------------------------------------- /The Grid Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/The Grid Search.py -------------------------------------------------------------------------------- /The Love-Letter Mystery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/The Love-Letter Mystery.py -------------------------------------------------------------------------------- /Two Strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Two Strings.py -------------------------------------------------------------------------------- /Two Two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Two Two.py -------------------------------------------------------------------------------- /Two arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Two arrays.py -------------------------------------------------------------------------------- /Utopian Tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Utopian Tree.py -------------------------------------------------------------------------------- /Vertical Sticks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Vertical Sticks.py -------------------------------------------------------------------------------- /Xor and Sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Xor and Sum.py -------------------------------------------------------------------------------- /Xoring Ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/Xoring Ninja.py -------------------------------------------------------------------------------- /java/HackerRankAlgorithms1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/java/HackerRankAlgorithms1.iml -------------------------------------------------------------------------------- /java/src/MaximiseSum/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/java/src/MaximiseSum/Solution.java -------------------------------------------------------------------------------- /java/src/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/java/src/Solution.java -------------------------------------------------------------------------------- /nCr table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/nCr table.py -------------------------------------------------------------------------------- /template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorhythms/HackerRankAlgorithms/HEAD/template.py --------------------------------------------------------------------------------