├── 30 Day codes ├── Day 0.cpp ├── Day 2.cpp ├── Day 3.cpp ├── Day 5.cpp ├── Day 6.cpp ├── Day 7.cpp ├── Day 9.cpp └── Day1.cpp ├── Algorithms ├── Implementation Challenges │ ├── Apple and Orange.cpp │ ├── Bon Appétit.cpp │ ├── Breaking the record.cpp │ ├── Cats and a Mouse.c │ ├── Divisible Sum Pairs.cpp │ ├── Drawing Book.cpp │ ├── GradingStudents.c │ ├── Sock Merchant.cpp │ └── The Hurdle Race.c └── Warmup Challenges │ ├── A Very Big Sum.cpp │ ├── Birthday Cake Candles.cpp │ ├── Compare the Triplets.cpp │ ├── Diagonal Difference.cpp │ ├── Mini-Max Sum.cpp │ ├── Plus Minus.cpp │ ├── Simple Array Sum.cpp │ ├── Solve Me First.cpp │ ├── Staircase.cpp │ └── Time conversion.cpp ├── Cats and a Mouse ├── LICENSE ├── README.md ├── The Hurdle Race ├── c++ └── introduction │ ├── Arrays Introduction.cpp │ ├── Conditional Statements.cpp │ ├── For Loop.cpp │ ├── Functions.cpp │ ├── Variable Sized Arrays.cpp │ ├── basic data type.cpp │ ├── hello world.cpp │ └── input and output.cpp ├── java └── Introduction │ ├── Java If-Else.txt │ ├── Java Loops I.txt │ ├── Java Loops II.txt │ ├── Java Output Formatting.txt │ ├── Java Stdin and Stdout I.txt │ ├── Java Stdin and Stdout II.txt │ └── Welcome to Java!.txt └── python ├── Introduction ├── Arithmetic operation.py ├── Loops.py ├── Python Division.py ├── Python If-Else.py └── hello python.py └── Lists.py /30 Day codes/Day 0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/30 Day codes/Day 0.cpp -------------------------------------------------------------------------------- /30 Day codes/Day 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/30 Day codes/Day 2.cpp -------------------------------------------------------------------------------- /30 Day codes/Day 3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/30 Day codes/Day 3.cpp -------------------------------------------------------------------------------- /30 Day codes/Day 5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/30 Day codes/Day 5.cpp -------------------------------------------------------------------------------- /30 Day codes/Day 6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/30 Day codes/Day 6.cpp -------------------------------------------------------------------------------- /30 Day codes/Day 7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/30 Day codes/Day 7.cpp -------------------------------------------------------------------------------- /30 Day codes/Day 9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/30 Day codes/Day 9.cpp -------------------------------------------------------------------------------- /30 Day codes/Day1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/30 Day codes/Day1.cpp -------------------------------------------------------------------------------- /Algorithms/Implementation Challenges/Apple and Orange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Implementation Challenges/Apple and Orange.cpp -------------------------------------------------------------------------------- /Algorithms/Implementation Challenges/Bon Appétit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Implementation Challenges/Bon Appétit.cpp -------------------------------------------------------------------------------- /Algorithms/Implementation Challenges/Breaking the record.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Implementation Challenges/Breaking the record.cpp -------------------------------------------------------------------------------- /Algorithms/Implementation Challenges/Cats and a Mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Implementation Challenges/Cats and a Mouse.c -------------------------------------------------------------------------------- /Algorithms/Implementation Challenges/Divisible Sum Pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Implementation Challenges/Divisible Sum Pairs.cpp -------------------------------------------------------------------------------- /Algorithms/Implementation Challenges/Drawing Book.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Implementation Challenges/Drawing Book.cpp -------------------------------------------------------------------------------- /Algorithms/Implementation Challenges/GradingStudents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Implementation Challenges/GradingStudents.c -------------------------------------------------------------------------------- /Algorithms/Implementation Challenges/Sock Merchant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Implementation Challenges/Sock Merchant.cpp -------------------------------------------------------------------------------- /Algorithms/Implementation Challenges/The Hurdle Race.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Implementation Challenges/The Hurdle Race.c -------------------------------------------------------------------------------- /Algorithms/Warmup Challenges/A Very Big Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Warmup Challenges/A Very Big Sum.cpp -------------------------------------------------------------------------------- /Algorithms/Warmup Challenges/Birthday Cake Candles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Warmup Challenges/Birthday Cake Candles.cpp -------------------------------------------------------------------------------- /Algorithms/Warmup Challenges/Compare the Triplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Warmup Challenges/Compare the Triplets.cpp -------------------------------------------------------------------------------- /Algorithms/Warmup Challenges/Diagonal Difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Warmup Challenges/Diagonal Difference.cpp -------------------------------------------------------------------------------- /Algorithms/Warmup Challenges/Mini-Max Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Warmup Challenges/Mini-Max Sum.cpp -------------------------------------------------------------------------------- /Algorithms/Warmup Challenges/Plus Minus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Warmup Challenges/Plus Minus.cpp -------------------------------------------------------------------------------- /Algorithms/Warmup Challenges/Simple Array Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Warmup Challenges/Simple Array Sum.cpp -------------------------------------------------------------------------------- /Algorithms/Warmup Challenges/Solve Me First.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Warmup Challenges/Solve Me First.cpp -------------------------------------------------------------------------------- /Algorithms/Warmup Challenges/Staircase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Warmup Challenges/Staircase.cpp -------------------------------------------------------------------------------- /Algorithms/Warmup Challenges/Time conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Algorithms/Warmup Challenges/Time conversion.cpp -------------------------------------------------------------------------------- /Cats and a Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/Cats and a Mouse -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/README.md -------------------------------------------------------------------------------- /The Hurdle Race: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/The Hurdle Race -------------------------------------------------------------------------------- /c++/introduction/Arrays Introduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/c++/introduction/Arrays Introduction.cpp -------------------------------------------------------------------------------- /c++/introduction/Conditional Statements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/c++/introduction/Conditional Statements.cpp -------------------------------------------------------------------------------- /c++/introduction/For Loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/c++/introduction/For Loop.cpp -------------------------------------------------------------------------------- /c++/introduction/Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/c++/introduction/Functions.cpp -------------------------------------------------------------------------------- /c++/introduction/Variable Sized Arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/c++/introduction/Variable Sized Arrays.cpp -------------------------------------------------------------------------------- /c++/introduction/basic data type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/c++/introduction/basic data type.cpp -------------------------------------------------------------------------------- /c++/introduction/hello world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/c++/introduction/hello world.cpp -------------------------------------------------------------------------------- /c++/introduction/input and output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/c++/introduction/input and output.cpp -------------------------------------------------------------------------------- /java/Introduction/Java If-Else.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/java/Introduction/Java If-Else.txt -------------------------------------------------------------------------------- /java/Introduction/Java Loops I.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/java/Introduction/Java Loops I.txt -------------------------------------------------------------------------------- /java/Introduction/Java Loops II.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/java/Introduction/Java Loops II.txt -------------------------------------------------------------------------------- /java/Introduction/Java Output Formatting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/java/Introduction/Java Output Formatting.txt -------------------------------------------------------------------------------- /java/Introduction/Java Stdin and Stdout I.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/java/Introduction/Java Stdin and Stdout I.txt -------------------------------------------------------------------------------- /java/Introduction/Java Stdin and Stdout II.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/java/Introduction/Java Stdin and Stdout II.txt -------------------------------------------------------------------------------- /java/Introduction/Welcome to Java!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/java/Introduction/Welcome to Java!.txt -------------------------------------------------------------------------------- /python/Introduction/Arithmetic operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/python/Introduction/Arithmetic operation.py -------------------------------------------------------------------------------- /python/Introduction/Loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/python/Introduction/Loops.py -------------------------------------------------------------------------------- /python/Introduction/Python Division.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/python/Introduction/Python Division.py -------------------------------------------------------------------------------- /python/Introduction/Python If-Else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/python/Introduction/Python If-Else.py -------------------------------------------------------------------------------- /python/Introduction/hello python.py: -------------------------------------------------------------------------------- 1 | print("HELLO PYTHON") 2 | -------------------------------------------------------------------------------- /python/Lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkshaychauhan/hacckerank-code/HEAD/python/Lists.py --------------------------------------------------------------------------------