├── .circleci └── config.yml ├── .gitignore ├── C++ ├── .gitignore ├── Algorithms │ ├── Greedy │ │ └── Sherlock_and_Minimax │ │ │ ├── README.md │ │ │ ├── c++ │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ │ └── input.txt │ ├── Implementation │ │ └── Cavity Map │ │ │ ├── README.md │ │ │ ├── c++ │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ │ └── input.txt │ └── Warmup │ │ └── Big_Sum │ │ ├── README.md │ │ ├── c++ │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ └── input.txt ├── C++ │ ├── CMakeLists.txt │ ├── Classes │ │ ├── CMakeLists.txt │ │ ├── Class │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── main.cpp │ │ └── Structs │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── main.cpp │ ├── Inheritance │ │ ├── CMakeLists.txt │ │ ├── Inheritance Introduction │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── main.cpp │ │ └── Multi Level Inheritance │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── main.cpp │ ├── Introduction │ │ ├── Arrays Introduction │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── main.cpp │ │ ├── Basic Data Types │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── main.cpp │ │ ├── CMakeLists.txt │ │ ├── Conditional Statements │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── main.cpp │ │ ├── For Loop │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── main.cpp │ │ ├── Functions │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── main.cpp │ │ ├── Hello World │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ └── main.cpp │ │ ├── Input and Output │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── main.cpp │ │ └── Pointer │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── main.cpp │ ├── STL │ │ ├── CMakeLists.txt │ │ ├── Lower Bound-STL │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── main.cpp │ │ ├── Maps-STL │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── main.cpp │ │ ├── Sets-STL │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── main.cpp │ │ ├── Vector-Erase │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── main.cpp │ │ └── Vector-Sort │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── main.cpp │ └── Strings │ │ ├── CMakeLists.txt │ │ ├── StringStream │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── input.txt │ │ ├── main.cpp │ │ └── output.txt │ │ └── Strings │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── input.txt │ │ ├── main.cpp │ │ └── output.txt ├── Mathematics │ ├── Fundamentals │ │ ├── Find Point │ │ │ ├── README.md │ │ │ ├── c++ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ └── input.txt │ │ └── Minimum Draws │ │ │ ├── README.md │ │ │ ├── c++ │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ │ └── input.txt │ └── Number_Theory │ │ ├── Closest_Number │ │ ├── README.md │ │ ├── c++ │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ └── input.txt │ │ └── Fibonacci_Finding │ │ ├── README.md │ │ ├── c++ │ │ ├── CMakeLists.txt │ │ └── main.cpp │ │ ├── input.txt │ │ ├── input2.txt │ │ └── output2.txt └── README.md ├── Clojure ├── Algorithms │ └── Greedy │ │ ├── Flowers │ │ ├── README.md │ │ ├── clojure │ │ │ └── main.clj │ │ └── input.txt │ │ └── Mark_and_Toys │ │ ├── README.md │ │ ├── clojure │ │ └── main.clj │ │ └── input.txt └── Functional Programming │ └── Introduction │ ├── Filter_Array │ ├── README.md │ ├── clojure │ │ └── main.clj │ └── input.txt │ ├── Filter_Positions │ ├── README.md │ ├── clojure │ │ └── main.clj │ └── input.txt │ ├── Hello_World │ ├── README.md │ ├── clojure │ │ └── main.js │ └── input.txt │ ├── List_Replication │ ├── README.md │ ├── clojure │ │ └── main.clj │ └── input.txt │ ├── N_Times │ ├── README.md │ ├── clojure │ │ └── main.clj │ └── input.txt │ └── Solve_Me_First │ ├── README.md │ ├── clojure │ └── main.clj │ └── input.txt ├── Coffeescript ├── Algorithms │ ├── Greedy │ │ └── Flowers │ │ │ ├── README.md │ │ │ ├── coffeescript │ │ │ ├── src │ │ │ │ └── main.coffee │ │ │ └── test │ │ │ │ └── test.coffee │ │ │ └── input.txt │ └── Strings │ │ └── Sherlock and Valid String │ │ ├── README.md │ │ ├── coffeescript │ │ ├── src │ │ │ └── main.coffee │ │ └── test │ │ │ └── test.coffee │ │ └── input.txt ├── Contests │ └── Project Euler │ │ └── euler_004 │ │ ├── README.md │ │ ├── coffeescript │ │ ├── main.coffee │ │ └── test.coffee │ │ └── input.txt └── README.md ├── Haskell ├── .gitignore ├── Algorithms │ ├── Greedy │ │ ├── Flowers │ │ │ ├── README.md │ │ │ ├── haskell │ │ │ │ ├── Main.hs │ │ │ │ └── Spec.hs │ │ │ └── input.txt │ │ ├── Mark_and_Toys │ │ │ ├── README.md │ │ │ ├── haskell │ │ │ │ ├── Main.hs │ │ │ │ └── Spec.hs │ │ │ └── input.txt │ │ └── Two_Arrays │ │ │ ├── README.md │ │ │ ├── haskell │ │ │ ├── Main.hs │ │ │ └── Spec.hs │ │ │ └── input.txt │ └── Strings │ │ ├── Funny_String │ │ ├── README.md │ │ ├── haskell │ │ │ ├── Main.hs │ │ │ └── Spec.hs │ │ └── input.txt │ │ └── Pangrams │ │ ├── README.md │ │ ├── haskell │ │ ├── Main.hs │ │ └── Spec.hs │ │ ├── input.txt │ │ ├── javascript │ │ ├── main.js │ │ └── test.js │ │ ├── output.txt │ │ └── python_pangrams │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── test │ │ ├── __init__.py │ │ └── test_pangram.py └── Functional Programming │ ├── Introduction │ ├── Array_of_N │ │ ├── README.md │ │ ├── haskell │ │ │ ├── ArrayOfN.hs │ │ │ └── Spec.hs │ │ └── input.txt │ ├── Evaluating_EX │ │ ├── README.md │ │ ├── haskell │ │ │ ├── Main.hs │ │ │ └── Spec.hs │ │ └── input.txt │ ├── Filter_Array │ │ ├── README.md │ │ ├── haskell │ │ │ ├── FilterArray.hs │ │ │ └── Spec.hs │ │ └── input.txt │ ├── Filter_Positions │ │ ├── README.md │ │ ├── haskell │ │ │ ├── FilterPositions.hs │ │ │ └── Spec.hs │ │ └── input.txt │ ├── Hello_World │ │ ├── README.md │ │ ├── haskell │ │ │ └── main.hs │ │ └── input.txt │ ├── List_Length │ │ ├── README.md │ │ ├── haskell │ │ │ ├── Main.hs │ │ │ └── Spec.hs │ │ └── input.txt │ ├── List_Replication │ │ ├── README.md │ │ ├── haskell │ │ │ ├── Replicant.hs │ │ │ └── Spec.hs │ │ └── input.txt │ ├── N_Times │ │ ├── README.md │ │ ├── haskell │ │ │ └── main.hs │ │ └── input.txt │ ├── Reverse_List │ │ ├── README.md │ │ ├── haskell │ │ │ ├── ReverseList.hs │ │ │ └── Spec.hs │ │ └── input.txt │ ├── Solve_Me_First │ │ ├── README.md │ │ ├── haskell │ │ │ └── main.hs │ │ └── input.txt │ ├── Sum_Elements │ │ ├── README.md │ │ ├── haskell │ │ │ ├── Spec.hs │ │ │ └── SumElements.hs │ │ └── input.txt │ └── Update_List │ │ ├── README.md │ │ ├── haskell │ │ ├── Main.hs │ │ └── Spec.hs │ │ └── input.txt │ └── Recursion │ ├── ComputingGCD │ ├── README.md │ ├── haskell │ │ ├── Main.hs │ │ └── Spec.hs │ └── input.txt │ ├── Fibonacci_Numbers │ ├── README.md │ ├── haskell │ │ ├── Main.hs │ │ └── Spec.hs │ └── input.txt │ ├── Pascals_Triangle │ ├── README.md │ ├── haskell │ │ ├── Main.hs │ │ └── Spec.hs │ └── input.txt │ ├── String_Compression │ ├── README.md │ ├── haskell │ │ ├── Main.hs │ │ └── Spec.hs │ ├── input.txt │ ├── input2.txt │ └── output2.txt │ ├── String_Mingling │ ├── README.md │ ├── haskell │ │ ├── Main.hs │ │ └── Spec.hs │ ├── input.txt │ └── input2.txt │ └── String_o_Permute │ ├── README.md │ ├── haskell │ ├── Main.hs │ └── Spec.hs │ └── input.txt ├── Java ├── .gitignore ├── Contests │ └── Project Euler │ │ └── euler_007 │ │ ├── README.md │ │ ├── input.txt │ │ └── java │ │ ├── build.gradle │ │ ├── src │ │ ├── PrimesFinder.java │ │ └── Solution.java │ │ └── test │ │ └── PrimesTest.java ├── Java │ ├── Advanced │ │ └── Java Varargs - Simple Addition │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ └── src │ │ │ └── Solution.java │ ├── BigNumber │ │ ├── Java BigDecimal │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── src │ │ │ │ └── Solution.java │ │ │ └── test │ │ │ │ └── BigDecimalTest.java │ │ ├── Java BigInteger │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── src │ │ │ │ └── Solution.java │ │ │ └── test │ │ │ │ └── BigIntTest.java │ │ └── Java Primality Test │ │ │ ├── build.gradle │ │ │ ├── src │ │ │ └── Application.java │ │ │ └── test │ │ │ └── ApplicationTest.java │ ├── Data Structures │ │ ├── Java 1D Array Easy │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ └── src │ │ │ │ └── Solution.java │ │ ├── Java ArrayList │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ ├── src │ │ │ │ └── Solution.java │ │ │ └── test │ │ │ │ └── ArrayListTest.java │ │ ├── Java Comparator │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ ├── src │ │ │ │ └── Solution.java │ │ │ └── test │ │ │ │ └── ComparatorTest.java │ │ ├── Java Generics │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── src │ │ │ │ └── Solution.java │ │ │ └── test │ │ │ │ └── GenericsTest.java │ │ ├── Java Hashset │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ ├── src │ │ │ │ └── Solution.java │ │ │ └── test │ │ │ │ └── SolutionTest.java │ │ ├── Java Map │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ ├── src │ │ │ │ └── Solution.java │ │ │ └── test │ │ │ │ └── MapTest.java │ │ ├── Java Sort │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ └── src │ │ │ │ └── Solution.java │ │ └── Java Stack Class │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ ├── src │ │ │ └── Solution.java │ │ │ └── test │ │ │ └── StackTest.java │ ├── Exception Handling │ │ ├── Java Exception Handling │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── src │ │ │ │ └── Solution.java │ │ │ └── test │ │ │ │ └── MyCalculatorTest.java │ │ └── Try-catch │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ └── Solution.java │ ├── Introduction │ │ ├── Java Datatypes │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── res │ │ │ │ └── input.txt │ │ │ ├── src │ │ │ │ └── Solution.java │ │ │ └── test │ │ │ │ └── SolutionTest.java │ │ ├── Java Date and Time │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ ├── src │ │ │ │ └── hacker │ │ │ │ │ └── Application.java │ │ │ └── test │ │ │ │ └── hacker │ │ │ │ └── ApplicationTest.java │ │ ├── Java End-of-file │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── Solution.java │ │ ├── Java If-Else │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ ├── src │ │ │ │ └── Solution.java │ │ │ └── test │ │ │ │ └── IfElseTest.java │ │ ├── Java Int to String │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── Solution.java │ │ ├── Java Loops I │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ └── src │ │ │ │ └── Solution.java │ │ ├── Java Loops │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── src │ │ │ │ └── Solution.java │ │ │ └── test │ │ │ │ └── LoopsTest.java │ │ ├── Java Output Formatting │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ ├── output.txt │ │ │ └── src │ │ │ │ └── Solution.java │ │ ├── Java Static Initializer Block │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ └── src │ │ │ │ └── Solution.java │ │ ├── Java Stdin and Stdout 1 │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── Solution.java │ │ ├── Java Stdin and Stdout 2 │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── Solution.java │ │ └── Welcome to Java! │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ └── Solution.java │ ├── Object Oriented Programming │ │ ├── Java Abstract Class │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ ├── src │ │ │ │ └── Solution.java │ │ │ └── test │ │ │ │ └── AbstractionTest.java │ │ ├── Java Inheritance 1 │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── src │ │ │ │ └── Solution.java │ │ │ └── test │ │ │ │ └── InheritanceTest.java │ │ ├── Java Inheritance 2 │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── Solution.java │ │ ├── Java Instanceof Keyword │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── input.txt │ │ │ └── src │ │ │ │ └── Solution.java │ │ ├── Java Interface │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── Solution.java │ │ └── Java Method Overridding │ │ │ ├── README.md │ │ │ ├── build.gradle │ │ │ ├── src │ │ │ └── Solution.java │ │ │ └── test │ │ │ └── OverridingTest.java │ └── Strings │ │ ├── Java Anagrams │ │ ├── README.md │ │ ├── build.gradle │ │ ├── input.txt │ │ ├── src │ │ │ ├── Anagram.java │ │ │ └── Solution.java │ │ └── test │ │ │ ├── AnagramTest.java │ │ │ └── FrequencyTest.java │ │ ├── Java String Reverse │ │ ├── README.md │ │ ├── build.gradle │ │ ├── input.txt │ │ ├── src │ │ │ └── Solution.java │ │ └── test │ │ │ └── ReverseTest.java │ │ ├── Java Strings Introduction │ │ ├── build.gradle │ │ ├── input.txt │ │ ├── output.txt │ │ └── src │ │ │ └── Solution.java │ │ └── Java Strings │ │ ├── README.md │ │ ├── build.gradle │ │ ├── src │ │ └── Solution.java │ │ └── test │ │ └── StringTest.java ├── Mathematics │ └── Fundamentals │ │ ├── Handshake │ │ ├── README.md │ │ ├── input.txt │ │ └── java │ │ │ ├── build.gradle │ │ │ ├── src │ │ │ └── Solution.java │ │ │ └── test │ │ │ └── HandshakeTest.java │ │ ├── Restaurant │ │ ├── README.md │ │ ├── input.txt │ │ └── java │ │ │ ├── build.gradle │ │ │ ├── src │ │ │ └── Solution.java │ │ │ └── test │ │ │ └── RestaurantTest.java │ │ └── Reverse Game │ │ ├── README.md │ │ ├── input.txt │ │ └── java │ │ ├── build.gradle │ │ ├── src │ │ └── Solution.java │ │ └── test │ │ └── ReverseGameTest.java └── README.md ├── Javascript ├── .gitignore ├── Algorithms │ └── Implementation │ │ ├── Chocolate Feast │ │ ├── README.md │ │ ├── javascript │ │ │ ├── main.js │ │ │ └── test.js │ │ └── res │ │ │ ├── input.txt │ │ │ ├── output.txt │ │ │ └── prompt.md │ │ ├── Sherlock and Squares │ │ ├── README.md │ │ ├── javascript │ │ │ ├── main.js │ │ │ └── test.js │ │ └── res │ │ │ ├── input.txt │ │ │ ├── output.txt │ │ │ └── prompt.md │ │ ├── Sherlock and The Beast │ │ ├── README.md │ │ ├── input.txt │ │ ├── javascript │ │ │ ├── main.js │ │ │ └── test.js │ │ └── output.txt │ │ └── Song of Pi │ │ ├── README.md │ │ ├── input.txt │ │ ├── javascript │ │ ├── main.js │ │ └── test.js │ │ └── output.txt ├── Contests │ ├── 7 Days of Javascript │ │ ├── Day0 │ │ │ ├── README.md │ │ │ ├── coffeescript │ │ │ │ └── main.coffee │ │ │ ├── input.txt │ │ │ └── javascript │ │ │ │ └── main.js │ │ └── Day1 │ │ │ ├── README.md │ │ │ ├── coffeescript │ │ │ └── main.coffee │ │ │ ├── input.txt │ │ │ └── javascript │ │ │ └── main.js │ └── Project Euler │ │ ├── euler_001 │ │ ├── README.md │ │ ├── input.txt │ │ ├── javascript │ │ │ ├── main.js │ │ │ └── test.js │ │ └── output.txt │ │ └── euler_002 │ │ ├── README.md │ │ ├── input.txt │ │ ├── javascript │ │ ├── main.js │ │ └── test.js │ │ └── output.txt ├── Mathematics │ └── Fundamentals │ │ └── Sherlock and Moving Tiles │ │ ├── README.md │ │ ├── input.txt │ │ └── javascript │ │ ├── main.js │ │ └── test.js ├── README.md ├── package.json └── yarn.lock ├── Python ├── .gitignore ├── Algorithms │ ├── Bit_Manipulation │ │ └── Flipping_Bits │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_flipping_bits │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_flipping_bits.py │ ├── Code Golf │ │ └── FizzBuzz │ │ │ ├── README.md │ │ │ └── python_fizzbuzz │ │ │ ├── __init__.py │ │ │ └── __main__.py │ ├── Dynamic Programming │ │ └── Fibonacci Modified │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_fibonacci_modified │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_fibonacci_modified.py │ ├── Greedy │ │ ├── Flowers │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_flowers │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_flowers.py │ │ ├── Jim_and_the_Orders │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_jim_and_the_orders │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_jim_and_the_orders.py │ │ ├── Mark_and_Toys │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_mark_and_toys │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_mark_and_toys.py │ │ ├── Sherlock_and_Minimax │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_sherlock_and_minimax │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_sherlock_and_minimax.py │ │ └── Two_Arrays │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_two_arrays │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_two_arrays.py │ ├── Implementation │ │ ├── ACM ICPC Team │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_acm_icpc_team │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ ├── Breaking the Records │ │ │ ├── input.txt │ │ │ └── python_breaking_the_records │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_breaking_the_records.py │ │ ├── Caesar Cypher │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_caesar_cypher │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_caesar_cypher.py │ │ ├── Cavity Map │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_cavity_map │ │ │ │ ├── __init__.py │ │ │ │ └── __main__.py │ │ ├── Chocolate Feast │ │ │ ├── README.md │ │ │ ├── python_chocolate_feast │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_chocolate_feast.py │ │ │ └── res │ │ │ │ ├── input.txt │ │ │ │ ├── output.txt │ │ │ │ └── prompt.md │ │ ├── Encryption │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_encryption │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_encryption.py │ │ ├── Manasa and Stones │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_manasa_and_stones │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_manasa_and_stones.py │ │ ├── Modified Kaprekar Numbers │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_modified_kaprekar_numbers │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_modified_kaprekar_numbers.py │ │ ├── Sherlock and Squares │ │ │ ├── README.md │ │ │ ├── python_sherlock_and_squares │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_sherlock_and_the_squares.py │ │ │ └── res │ │ │ │ ├── input.txt │ │ │ │ ├── output.txt │ │ │ │ └── prompt.md │ │ ├── Sherlock and The Beast │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ ├── output.txt │ │ │ └── python_sherlock_and_the_beast │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_sherlock_and_the_beast.py │ │ ├── Song of Pi │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ ├── output.txt │ │ │ └── python_song_of_pi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_song_of_pi.py │ │ ├── Taum and B'day │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_taum_and_bday │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_taum_and_bday.py │ │ ├── The Grid Search │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ ├── output.txt │ │ │ └── python_the_grid_search │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_the_grid_search.py │ │ ├── The Time in Words │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_the_time_in_words │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_.py │ │ ├── apples_and_oranges │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_apples_and_oranges.py │ │ ├── grading_students │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_grading_students.py │ │ └── kangaroo │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_kangaroo.py │ ├── Search │ │ ├── Intro_to_Tutorial_Search_Challenges │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_intro_to_tutorial_challenges.py │ │ ├── Missing_Numbers │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_missing_numbers │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_missing_numbers.py │ │ └── Sherlock_and_Array │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_sherlock_and_array │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_sherlock_and_array.py │ ├── Sorting │ │ └── Intro_to_Tutorial_Sorting_Challenges │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_intro_to_tutorial_challenges.py │ ├── Strings │ │ ├── Alternating Strings │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_alternating_strings │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_alternating_strings.py │ │ ├── Anagram │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_anagram │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_anagram.py │ │ ├── Bigger is Greater │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ ├── output.txt │ │ │ └── python_bigger_is_greater │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_bigger_is_greater.py │ │ ├── Game of Thrones - I │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_game_of_thrones_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_.py │ │ ├── Gemstones │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_gemstones │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_.py │ │ ├── Make it Anagram │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_make_it_anagram │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_.py │ │ ├── Palindrome_Index │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_palindrome_index │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_palindrome_index.py │ │ ├── Sherlock and Valid String │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_sherlock_and_valid_string │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_sherlock_and_valid_string.py │ │ ├── Two Strings │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ ├── input2.txt │ │ │ ├── output2.txt │ │ │ └── python_two_strings │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_.py │ │ ├── camel_case │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_camel_case.py │ │ ├── hackerrank_in_a_string │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_hackerrank_in_a_string.py │ │ ├── super_reduced_string │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_super_reduced_string.py │ │ ├── two_characters │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_two_characters.py │ │ └── weighted_uniform_strings │ │ │ ├── .__main__.py@neomake_11722_6.py │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_weighted_uniform_strings.py │ └── Warmup │ │ ├── Big_Sum │ │ ├── README.md │ │ ├── input.txt │ │ └── python_big_sum │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_big_sum.py │ │ ├── Birthday_Cake_Candles │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── input.txt │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_birthday_cake_candles.py │ │ ├── Compare_the_Triplets │ │ └── python_compare_the_triplets │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_compare_the_triplets.py │ │ ├── Diagonal_Difference │ │ ├── README.md │ │ ├── input.txt │ │ └── python_diagonal_difference │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_diagonal_difference.py │ │ ├── Extra_Long_Factorials │ │ ├── README.md │ │ ├── input.txt │ │ └── python_extra_long_factorials │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_extra_long_fatorials.py │ │ ├── Library_Fine │ │ ├── README.md │ │ ├── input.txt │ │ └── python_library_fine │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_library_fine.py │ │ ├── Mini_Max_Sum │ │ ├── input.txt │ │ └── python_mini_max_sum │ │ │ ├── .pytest_cache │ │ │ └── v │ │ │ │ └── cache │ │ │ │ └── lastfailed │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_mini_max_sum.py │ │ ├── Plus_Minus │ │ ├── README.md │ │ ├── input.txt │ │ └── python_plus_minus │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_plus_minus.py │ │ ├── Simple_Array_Sum │ │ ├── README.md │ │ ├── input.txt │ │ └── python_simple_array │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_simple_array_sum.py │ │ ├── Staircase │ │ ├── README.md │ │ ├── input.txt │ │ └── python_staircase │ │ │ ├── __init__.py │ │ │ └── __main__.py │ │ └── Time_Conversion │ │ ├── README.md │ │ ├── input.txt │ │ └── python_time_conversion │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── test │ │ ├── __init__.py │ │ └── test_time_conversion.py ├── Artificial Intelligence │ └── Bot Building │ │ ├── Bot Clean │ │ ├── README.md │ │ ├── input.txt │ │ └── python_bot_clean │ │ │ ├── __init__.py │ │ │ └── __main__.py │ │ ├── Bot Saves Princess - 2 │ │ ├── README.md │ │ ├── input.txt │ │ └── python_bot_saves_princess_2 │ │ │ ├── __init__.py │ │ │ └── __main__.py │ │ ├── Bot Saves Princess │ │ ├── README.md │ │ ├── input.txt │ │ ├── output.txt │ │ └── python_bot_saves_princess │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_bot_saves_princess.py │ │ ├── BotClean Large │ │ ├── README.md │ │ ├── gen_input.py │ │ ├── input.txt │ │ └── python_bot_clean_large │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── graph.py │ │ └── BotClean Stochastic │ │ ├── README.md │ │ ├── input.txt │ │ └── python_bot_clean_stochastic │ │ ├── __init__.py │ │ └── __main__.py ├── Contests │ ├── 30 Days of Code │ │ ├── Day00 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_day_0.py │ │ ├── Day01 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── __main__.py │ │ ├── Day02 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_day_2.py │ │ ├── Day03 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_day_3.py │ │ ├── Day04 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_day04.py │ │ ├── Day05 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_day05.py │ │ ├── Day06 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_day06.py │ │ ├── Day07 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_day07.py │ │ ├── Day08 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_day08.py │ │ ├── Day09 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_day09.py │ │ ├── Day10 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_day10.py │ │ └── Day11 │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_day11 │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_day11.py │ ├── Project Euler │ │ ├── euler_001 │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ ├── output.txt │ │ │ └── python_pe_001 │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_pe_001.py │ │ ├── euler_002 │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ ├── output.txt │ │ │ └── python_pe002 │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_pe_002.py │ │ ├── euler_004 │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_pe_004 │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_pe_004.py │ │ ├── euler_005 │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_pe_005 │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_pe_005.py │ │ ├── euler_006 │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_pe_006 │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_pe_006.py │ │ ├── euler_007 │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_pe_007 │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_pe_007.py │ │ └── euler_008 │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_euler_008 │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_euler_008.py │ └── week_of_code_36 │ │ ├── acid_naming │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── input.txt │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_acid_naming.py │ │ └── revised_russian_roulette │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── input.txt │ │ └── test │ │ ├── __init__.py │ │ └── test_revised_russian_roulette.py ├── Interview Preparation Kit │ ├── Arrays │ │ ├── arrays_2d │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_2d_arrays.py │ │ └── new_year_chaos │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_new_year_chaos.py │ └── Dynamic Programming │ │ └── max_array_sum │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── input.txt │ │ └── test │ │ ├── __init__.py │ │ └── test_max_array_sum.py ├── Mathematics │ ├── Fundamentals │ │ ├── Find Point │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_find_point │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_find_point.py │ │ ├── Handshake │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_handshake │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_handshake.py │ │ ├── Minimum Draws │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_minimum_required │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_minimum_required.py │ │ ├── Restaurant │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_restaurant │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_restaurant.py │ │ ├── Reverse Game │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_reverse_game │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_reverse_game.py │ │ └── Sherlock and Moving Tiles │ │ │ ├── README.md │ │ │ ├── input.txt │ │ │ └── python_sherlock_and_moving_tiles │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_sherlock_and_moving_tiles.py │ └── Number_Theory │ │ ├── Closest_Number │ │ ├── README.md │ │ ├── input.txt │ │ └── python_closest_number │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_closet_number.py │ │ ├── Eulers_Criterion │ │ ├── README.md │ │ ├── input.txt │ │ └── python_eulers_criterion │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_eulers_criterion.py │ │ ├── Fibonacci_Finding │ │ ├── README.md │ │ ├── input.txt │ │ ├── input2.txt │ │ ├── output2.txt │ │ └── python_fibonacci_finding │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_fibonacci_finding.py │ │ ├── Little_Ashish │ │ ├── README.md │ │ ├── input.txt │ │ └── python_little_ashish │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_little_ashish.py │ │ ├── Little_Panda │ │ ├── README.md │ │ ├── input.txt │ │ └── python_little_panda │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_little_panda.py │ │ └── Manasa_and_Factorials │ │ ├── README.md │ │ ├── input.txt │ │ └── python_manasa_and_factorials │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── test │ │ ├── __init__.py │ │ └── test_manasa_and_factorials.py ├── Python │ ├── Built_Ins │ │ ├── Any_or_All │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_any_or_all.py │ │ ├── Input │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── input.txt │ │ ├── Python_Evaluation │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_python_evaluation.py │ │ ├── Sort_Data │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_sort_data.py │ │ ├── Zipped │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_zipped.py │ │ └── ginortS │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_ginorts.py │ ├── Closures and Decorators │ │ └── Standardize_Mobile_Number_Using_Decorators │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_standardize_with_decorators.py │ ├── Collections │ │ ├── Counter │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_.py │ │ ├── DefaultDict_Tutorial │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_defaultdict_tutorial.py │ │ ├── Deque │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_deque.py │ │ ├── Most_Commons │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_most_common.py │ │ ├── Namedtuple │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_namedtuple.py │ │ ├── OrderedDict │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_ordered_dict.py │ │ ├── Piling_Up │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_piling_up.py │ │ └── WordOrder │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_word_order.py │ ├── Data Types │ │ ├── Find_Second │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_.py │ │ ├── List_Comprehensions │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_.py │ │ ├── Lists │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ ├── output.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_lists.py │ │ ├── Nested_List │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_.py │ │ ├── Sets │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_.py │ │ └── Tuples │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_tuples.py │ ├── Date and Time │ │ ├── Calendar_Module │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_calendar_module.py │ │ └── Time_Delta │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_time_delta.py │ ├── Errors and Exceptions │ │ ├── Exceptions │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_exceptions.py │ │ └── Incorrect_Regex │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_incorrect_regex.py │ ├── Introduction │ │ ├── Finding_Percentage │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_finding_percentage.py │ │ ├── Integer_Sizes │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_integer_sizes.py │ │ ├── Interchange_Numbers │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_interchange_numbers.py │ │ ├── Loops │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_loops.py │ │ ├── Mod_Divmod │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_mod_divmod.py │ │ ├── Mod_Power │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_mod_power.py │ │ ├── Print_Function │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── input.txt │ │ ├── Python_If_Else │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_python_if_else.py │ │ ├── Write_a_Function │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_write_a_function.py │ │ └── Your_Name │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_your_name.py │ ├── Itertools │ │ ├── Combinations │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_combinations.py │ │ ├── Combinations_With_Replacement │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_combinations_with_replacement.py │ │ ├── Compress_the_String │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_compress_the_string.py │ │ ├── Iterables_and_Iterators │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_iterables_and_iterators.py │ │ ├── Maximize_It │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_itertools_maximize_it.py │ │ ├── Permutations │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_permutations.py │ │ ├── Product │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_itertools_product.py │ │ └── The_Captains_Room │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_the_captains_room.py │ ├── Math │ │ └── Polar_Coordinates │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_polar_coordinates.py │ ├── Python Functionals │ │ ├── Map_and_Lambda_Functions │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_map_and_lambda_function.py │ │ └── Validating_Email_Address_With_a_Filter │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_validating_email_addresses_with_filter.py │ ├── Regex and Parsing │ │ ├── Introduction_to_Regex_Module │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_introduction_to_regex_module.py │ │ ├── Re_Findall │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_re_findall.py │ │ ├── Re_Groups │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_re_groups.py │ │ ├── Re_Split │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_re_split.py │ │ ├── Re_Start_End │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_start_end.py │ │ ├── Regex_Substitution │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_regex_substitution.py │ │ └── Validating_Phone_Numbers │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_validating_phone_numbers.py │ ├── Sets │ │ ├── Check_Strict_Sets │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_check_strict_sets.py │ │ ├── Check_Subset │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_check_subset.py │ │ ├── Introduction_to_Sets │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_introduction_to_sets.py │ │ ├── No_Idea │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_no_idea.py │ │ ├── Set_Add │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_set_add.py │ │ ├── Set_Difference │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_set_difference.py │ │ ├── Set_Discard │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_set_discard.py │ │ ├── Set_Intersection │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_set_intersection.py │ │ ├── Set_Mutations │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_set_mutations.py │ │ ├── Set_Symmetric │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── test_set_symmetric.py │ │ └── Set_Union │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── input.txt │ │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_set_union.py │ └── Strings │ │ ├── Alphabet_Rangoli │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── input.txt │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_alphabet_rangoli.py │ │ ├── Capitalize │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── input.txt │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_capitalize.py │ │ ├── Design_Door_Mat │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── input.txt │ │ ├── Find_a_String │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── input.txt │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_find_a_string.py │ │ ├── Merge_the_Tools │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── input.txt │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_merge_the_tools.py │ │ ├── Mutations │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── input.txt │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_mutations.py │ │ ├── String_Formatting │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── input.txt │ │ ├── String_Split_and_Join │ │ ├── README.md │ │ ├── __init__.py │ │ └── __main__.py │ │ ├── String_Validators │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_.py │ │ ├── Text_Alignment │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── input.txt │ │ ├── Text_Wrap │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── input.txt │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_text_wrap.py │ │ ├── The_Minion_Game │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── banana.png │ │ ├── input.txt │ │ ├── input2.txt │ │ └── test │ │ │ ├── __init__.py │ │ │ └── test_the_minion_game.py │ │ └── sWAP_cASE │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── test │ │ ├── __init__.py │ │ └── test_.py ├── README.md └── requirements.txt ├── README.md └── SQL ├── Aggregation ├── average_population.sql ├── japan_population.sql ├── population_density_difference.sql ├── revising_aggregations_averages.sql ├── revising_aggregations_the_count_function.sql ├── revising_aggregations_the_sum_function.sql ├── weather_observation_station_13.sql ├── weather_observation_station_14.sql └── weather_observation_station_2.sql ├── Join ├── african_cities.sql ├── asian_population.sql ├── average_population_of_each_continent.sql └── the_report.sql └── Select ├── japanese_cities_detail.sql ├── japanese_cities_name.sql ├── more_than_75_marks.sql ├── revising_the_select_query_1.sql ├── revising_the_select_query_2.sql ├── select_all.sql ├── select_by_id.sql ├── weather_observation_station_1.sql ├── weather_observation_station_10.sql ├── weather_observation_station_11.sql ├── weather_observation_station_12.sql ├── weather_observation_station_3.sql ├── weather_observation_station_4.sql ├── weather_observation_station_5.sql ├── weather_observation_station_6.sql ├── weather_observation_station_7.sql ├── weather_observation_station_8.sql └── weather_observation_station_9.sql /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/.gitignore -------------------------------------------------------------------------------- /C++/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/.gitignore -------------------------------------------------------------------------------- /C++/Algorithms/Greedy/Sherlock_and_Minimax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/Algorithms/Greedy/Sherlock_and_Minimax/README.md -------------------------------------------------------------------------------- /C++/Algorithms/Greedy/Sherlock_and_Minimax/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/Algorithms/Greedy/Sherlock_and_Minimax/input.txt -------------------------------------------------------------------------------- /C++/Algorithms/Implementation/Cavity Map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/Algorithms/Implementation/Cavity Map/README.md -------------------------------------------------------------------------------- /C++/Algorithms/Implementation/Cavity Map/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/Algorithms/Implementation/Cavity Map/input.txt -------------------------------------------------------------------------------- /C++/Algorithms/Warmup/Big_Sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/Algorithms/Warmup/Big_Sum/README.md -------------------------------------------------------------------------------- /C++/Algorithms/Warmup/Big_Sum/c++/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/Algorithms/Warmup/Big_Sum/c++/CMakeLists.txt -------------------------------------------------------------------------------- /C++/Algorithms/Warmup/Big_Sum/c++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/Algorithms/Warmup/Big_Sum/c++/main.cpp -------------------------------------------------------------------------------- /C++/Algorithms/Warmup/Big_Sum/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/Algorithms/Warmup/Big_Sum/input.txt -------------------------------------------------------------------------------- /C++/C++/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Classes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Classes/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Classes/Class/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Classes/Class/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Classes/Class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Classes/Class/README.md -------------------------------------------------------------------------------- /C++/C++/Classes/Class/input.txt: -------------------------------------------------------------------------------- 1 | 15 2 | john 3 | carmack 4 | 10 5 | -------------------------------------------------------------------------------- /C++/C++/Classes/Class/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Classes/Class/main.cpp -------------------------------------------------------------------------------- /C++/C++/Classes/Structs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Classes/Structs/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Classes/Structs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Classes/Structs/README.md -------------------------------------------------------------------------------- /C++/C++/Classes/Structs/input.txt: -------------------------------------------------------------------------------- 1 | 15 2 | john 3 | carmack 4 | 10 5 | -------------------------------------------------------------------------------- /C++/C++/Classes/Structs/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Classes/Structs/main.cpp -------------------------------------------------------------------------------- /C++/C++/Inheritance/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Inheritance/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Inheritance/Multi Level Inheritance/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Inheritance/Multi Level Inheritance/main.cpp -------------------------------------------------------------------------------- /C++/C++/Introduction/Arrays Introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Arrays Introduction/README.md -------------------------------------------------------------------------------- /C++/C++/Introduction/Arrays Introduction/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 1 4 3 2 3 | -------------------------------------------------------------------------------- /C++/C++/Introduction/Arrays Introduction/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Arrays Introduction/main.cpp -------------------------------------------------------------------------------- /C++/C++/Introduction/Basic Data Types/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Basic Data Types/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Introduction/Basic Data Types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Basic Data Types/README.md -------------------------------------------------------------------------------- /C++/C++/Introduction/Basic Data Types/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Basic Data Types/input.txt -------------------------------------------------------------------------------- /C++/C++/Introduction/Basic Data Types/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Basic Data Types/main.cpp -------------------------------------------------------------------------------- /C++/C++/Introduction/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Introduction/Conditional Statements/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Conditional Statements/main.cpp -------------------------------------------------------------------------------- /C++/C++/Introduction/For Loop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/For Loop/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Introduction/For Loop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/For Loop/README.md -------------------------------------------------------------------------------- /C++/C++/Introduction/For Loop/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/For Loop/main.cpp -------------------------------------------------------------------------------- /C++/C++/Introduction/Functions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Functions/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Introduction/Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Functions/README.md -------------------------------------------------------------------------------- /C++/C++/Introduction/Functions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Functions/main.cpp -------------------------------------------------------------------------------- /C++/C++/Introduction/Hello World/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Hello World/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Introduction/Hello World/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Hello World/README.md -------------------------------------------------------------------------------- /C++/C++/Introduction/Hello World/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Hello World/main.cpp -------------------------------------------------------------------------------- /C++/C++/Introduction/Input and Output/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Input and Output/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Introduction/Input and Output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Input and Output/README.md -------------------------------------------------------------------------------- /C++/C++/Introduction/Input and Output/input.txt: -------------------------------------------------------------------------------- 1 | 1 2 7 2 | -------------------------------------------------------------------------------- /C++/C++/Introduction/Input and Output/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Input and Output/main.cpp -------------------------------------------------------------------------------- /C++/C++/Introduction/Pointer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Pointer/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Introduction/Pointer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Pointer/README.md -------------------------------------------------------------------------------- /C++/C++/Introduction/Pointer/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 5 3 | -------------------------------------------------------------------------------- /C++/C++/Introduction/Pointer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Introduction/Pointer/main.cpp -------------------------------------------------------------------------------- /C++/C++/STL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/STL/Lower Bound-STL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Lower Bound-STL/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/STL/Lower Bound-STL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Lower Bound-STL/README.md -------------------------------------------------------------------------------- /C++/C++/STL/Lower Bound-STL/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Lower Bound-STL/input.txt -------------------------------------------------------------------------------- /C++/C++/STL/Lower Bound-STL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Lower Bound-STL/main.cpp -------------------------------------------------------------------------------- /C++/C++/STL/Maps-STL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Maps-STL/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/STL/Maps-STL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Maps-STL/README.md -------------------------------------------------------------------------------- /C++/C++/STL/Maps-STL/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Maps-STL/input.txt -------------------------------------------------------------------------------- /C++/C++/STL/Maps-STL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Maps-STL/main.cpp -------------------------------------------------------------------------------- /C++/C++/STL/Sets-STL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Sets-STL/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/STL/Sets-STL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Sets-STL/README.md -------------------------------------------------------------------------------- /C++/C++/STL/Sets-STL/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Sets-STL/input.txt -------------------------------------------------------------------------------- /C++/C++/STL/Sets-STL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Sets-STL/main.cpp -------------------------------------------------------------------------------- /C++/C++/STL/Vector-Erase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Vector-Erase/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/STL/Vector-Erase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Vector-Erase/README.md -------------------------------------------------------------------------------- /C++/C++/STL/Vector-Erase/input.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 1 4 6 2 8 9 3 | 2 4 | 2 4 5 | -------------------------------------------------------------------------------- /C++/C++/STL/Vector-Erase/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Vector-Erase/main.cpp -------------------------------------------------------------------------------- /C++/C++/STL/Vector-Sort/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Vector-Sort/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/STL/Vector-Sort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Vector-Sort/README.md -------------------------------------------------------------------------------- /C++/C++/STL/Vector-Sort/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 1 6 10 8 4 3 | -------------------------------------------------------------------------------- /C++/C++/STL/Vector-Sort/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/STL/Vector-Sort/main.cpp -------------------------------------------------------------------------------- /C++/C++/Strings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Strings/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Strings/StringStream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Strings/StringStream/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Strings/StringStream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Strings/StringStream/README.md -------------------------------------------------------------------------------- /C++/C++/Strings/StringStream/input.txt: -------------------------------------------------------------------------------- 1 | 23,4,56 2 | -------------------------------------------------------------------------------- /C++/C++/Strings/StringStream/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Strings/StringStream/main.cpp -------------------------------------------------------------------------------- /C++/C++/Strings/StringStream/output.txt: -------------------------------------------------------------------------------- 1 | 23 2 | 4 3 | 56 4 | -------------------------------------------------------------------------------- /C++/C++/Strings/Strings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Strings/Strings/CMakeLists.txt -------------------------------------------------------------------------------- /C++/C++/Strings/Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Strings/Strings/README.md -------------------------------------------------------------------------------- /C++/C++/Strings/Strings/input.txt: -------------------------------------------------------------------------------- 1 | abcd 2 | ef 3 | -------------------------------------------------------------------------------- /C++/C++/Strings/Strings/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/C++/Strings/Strings/main.cpp -------------------------------------------------------------------------------- /C++/C++/Strings/Strings/output.txt: -------------------------------------------------------------------------------- 1 | 4 2 2 | abcdef 3 | ebcd af 4 | -------------------------------------------------------------------------------- /C++/Mathematics/Fundamentals/Find Point/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/Mathematics/Fundamentals/Find Point/README.md -------------------------------------------------------------------------------- /C++/Mathematics/Fundamentals/Find Point/c++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/Mathematics/Fundamentals/Find Point/c++/main.cpp -------------------------------------------------------------------------------- /C++/Mathematics/Fundamentals/Find Point/input.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 0 0 1 1 3 | -------------------------------------------------------------------------------- /C++/Mathematics/Fundamentals/Minimum Draws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/Mathematics/Fundamentals/Minimum Draws/README.md -------------------------------------------------------------------------------- /C++/Mathematics/Fundamentals/Minimum Draws/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | 2 4 | -------------------------------------------------------------------------------- /C++/Mathematics/Number_Theory/Closest_Number/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 349 1 4 3 | 395 1 7 4 | 4 -2 2 5 | -------------------------------------------------------------------------------- /C++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/C++/README.md -------------------------------------------------------------------------------- /Clojure/Algorithms/Greedy/Flowers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Clojure/Algorithms/Greedy/Flowers/README.md -------------------------------------------------------------------------------- /Clojure/Algorithms/Greedy/Flowers/clojure/main.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Clojure/Algorithms/Greedy/Flowers/clojure/main.clj -------------------------------------------------------------------------------- /Clojure/Algorithms/Greedy/Flowers/input.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 2 5 6 3 | -------------------------------------------------------------------------------- /Clojure/Algorithms/Greedy/Mark_and_Toys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Clojure/Algorithms/Greedy/Mark_and_Toys/README.md -------------------------------------------------------------------------------- /Clojure/Algorithms/Greedy/Mark_and_Toys/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Clojure/Algorithms/Greedy/Mark_and_Toys/input.txt -------------------------------------------------------------------------------- /Clojure/Functional Programming/Introduction/Filter_Array/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 10 3 | 9 4 | 8 5 | 2 6 | 7 7 | 5 8 | 1 9 | 3 10 | 0 11 | -------------------------------------------------------------------------------- /Clojure/Functional Programming/Introduction/Filter_Positions/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 5 3 | 3 4 | 4 5 | 6 6 | 7 7 | 9 8 | 8 9 | -------------------------------------------------------------------------------- /Clojure/Functional Programming/Introduction/Hello_World/clojure/main.js: -------------------------------------------------------------------------------- 1 | (print "Hello World") 2 | -------------------------------------------------------------------------------- /Clojure/Functional Programming/Introduction/Hello_World/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Clojure/Functional Programming/Introduction/List_Replication/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 1 3 | 2 4 | 3 5 | 4 6 | -------------------------------------------------------------------------------- /Clojure/Functional Programming/Introduction/N_Times/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /Clojure/Functional Programming/Introduction/Solve_Me_First/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | -------------------------------------------------------------------------------- /Coffeescript/Algorithms/Greedy/Flowers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Coffeescript/Algorithms/Greedy/Flowers/README.md -------------------------------------------------------------------------------- /Coffeescript/Algorithms/Greedy/Flowers/input.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 2 5 6 3 | -------------------------------------------------------------------------------- /Coffeescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Coffeescript/README.md -------------------------------------------------------------------------------- /Haskell/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/.gitignore -------------------------------------------------------------------------------- /Haskell/Algorithms/Greedy/Flowers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Greedy/Flowers/README.md -------------------------------------------------------------------------------- /Haskell/Algorithms/Greedy/Flowers/haskell/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Greedy/Flowers/haskell/Main.hs -------------------------------------------------------------------------------- /Haskell/Algorithms/Greedy/Flowers/haskell/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Greedy/Flowers/haskell/Spec.hs -------------------------------------------------------------------------------- /Haskell/Algorithms/Greedy/Flowers/input.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 2 5 6 3 | -------------------------------------------------------------------------------- /Haskell/Algorithms/Greedy/Mark_and_Toys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Greedy/Mark_and_Toys/README.md -------------------------------------------------------------------------------- /Haskell/Algorithms/Greedy/Mark_and_Toys/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Greedy/Mark_and_Toys/input.txt -------------------------------------------------------------------------------- /Haskell/Algorithms/Greedy/Two_Arrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Greedy/Two_Arrays/README.md -------------------------------------------------------------------------------- /Haskell/Algorithms/Greedy/Two_Arrays/haskell/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Greedy/Two_Arrays/haskell/Main.hs -------------------------------------------------------------------------------- /Haskell/Algorithms/Greedy/Two_Arrays/haskell/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Greedy/Two_Arrays/haskell/Spec.hs -------------------------------------------------------------------------------- /Haskell/Algorithms/Greedy/Two_Arrays/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Greedy/Two_Arrays/input.txt -------------------------------------------------------------------------------- /Haskell/Algorithms/Strings/Funny_String/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Strings/Funny_String/README.md -------------------------------------------------------------------------------- /Haskell/Algorithms/Strings/Funny_String/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Strings/Funny_String/input.txt -------------------------------------------------------------------------------- /Haskell/Algorithms/Strings/Pangrams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Strings/Pangrams/README.md -------------------------------------------------------------------------------- /Haskell/Algorithms/Strings/Pangrams/haskell/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Strings/Pangrams/haskell/Main.hs -------------------------------------------------------------------------------- /Haskell/Algorithms/Strings/Pangrams/haskell/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Strings/Pangrams/haskell/Spec.hs -------------------------------------------------------------------------------- /Haskell/Algorithms/Strings/Pangrams/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Haskell/Algorithms/Strings/Pangrams/input.txt -------------------------------------------------------------------------------- /Haskell/Algorithms/Strings/Pangrams/output.txt: -------------------------------------------------------------------------------- 1 | pangram 2 | -------------------------------------------------------------------------------- /Haskell/Algorithms/Strings/Pangrams/python_pangrams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Haskell/Algorithms/Strings/Pangrams/python_pangrams/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Introduction/Array_of_N/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Introduction/Filter_Array/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 10 3 | 9 4 | 8 5 | 2 6 | 7 7 | 5 8 | 1 9 | 3 10 | 0 11 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Introduction/Filter_Positions/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 5 3 | 3 4 | 4 5 | 6 6 | 7 7 | 9 8 | 8 9 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Introduction/Hello_World/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Introduction/List_Length/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 5 3 | 1 4 | 4 5 | 3 6 | 7 7 | 8 8 | 6 9 | 0 10 | 9 11 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Introduction/List_Replication/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 1 3 | 2 4 | 3 5 | 4 6 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Introduction/N_Times/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Introduction/Solve_Me_First/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Introduction/Sum_Elements/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 2 3 | 4 4 | 6 5 | 5 6 | 7 7 | 8 8 | 0 9 | 1 10 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Recursion/ComputingGCD/input.txt: -------------------------------------------------------------------------------- 1 | 1 5 2 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Recursion/Fibonacci_Numbers/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Recursion/Pascals_Triangle/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Recursion/String_Compression/input.txt: -------------------------------------------------------------------------------- 1 | abcaaabbb 2 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Recursion/String_Mingling/input.txt: -------------------------------------------------------------------------------- 1 | abcde 2 | pqrst 3 | -------------------------------------------------------------------------------- /Haskell/Functional Programming/Recursion/String_o_Permute/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | abcdpqrs 3 | az 4 | -------------------------------------------------------------------------------- /Java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/.gitignore -------------------------------------------------------------------------------- /Java/Contests/Project Euler/euler_007/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Contests/Project Euler/euler_007/README.md -------------------------------------------------------------------------------- /Java/Contests/Project Euler/euler_007/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | 6 4 | -------------------------------------------------------------------------------- /Java/Java/Advanced/Java Varargs - Simple Addition/input.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | -------------------------------------------------------------------------------- /Java/Java/BigNumber/Java BigDecimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/BigNumber/Java BigDecimal/README.md -------------------------------------------------------------------------------- /Java/Java/BigNumber/Java BigDecimal/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/BigNumber/Java BigDecimal/build.gradle -------------------------------------------------------------------------------- /Java/Java/BigNumber/Java BigInteger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/BigNumber/Java BigInteger/README.md -------------------------------------------------------------------------------- /Java/Java/BigNumber/Java BigInteger/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/BigNumber/Java BigInteger/build.gradle -------------------------------------------------------------------------------- /Java/Java/BigNumber/Java Primality Test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/BigNumber/Java Primality Test/build.gradle -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java 1D Array Easy/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 1 -2 4 -5 1 3 | -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java ArrayList/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java ArrayList/README.md -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java ArrayList/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java ArrayList/input.txt -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Comparator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Comparator/README.md -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Comparator/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Comparator/input.txt -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Generics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Generics/README.md -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Generics/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Generics/build.gradle -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Hashset/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Hashset/build.gradle -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Hashset/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Hashset/input.txt -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Map/README.md -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Map/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Map/build.gradle -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Map/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Map/input.txt -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Map/src/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Map/src/Solution.java -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Map/test/MapTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Map/test/MapTest.java -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Sort/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Sort/build.gradle -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Sort/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Sort/input.txt -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Stack Class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Data Structures/Java Stack Class/README.md -------------------------------------------------------------------------------- /Java/Java/Data Structures/Java Stack Class/input.txt: -------------------------------------------------------------------------------- 1 | {}() 2 | ({()}) 3 | {}( 4 | [] 5 | -------------------------------------------------------------------------------- /Java/Java/Exception Handling/Try-catch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Exception Handling/Try-catch/README.md -------------------------------------------------------------------------------- /Java/Java/Exception Handling/Try-catch/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Exception Handling/Try-catch/build.gradle -------------------------------------------------------------------------------- /Java/Java/Introduction/Java Datatypes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Java Datatypes/README.md -------------------------------------------------------------------------------- /Java/Java/Introduction/Java Datatypes/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Java Datatypes/build.gradle -------------------------------------------------------------------------------- /Java/Java/Introduction/Java Datatypes/res/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Java Datatypes/res/input.txt -------------------------------------------------------------------------------- /Java/Java/Introduction/Java Date and Time/input.txt: -------------------------------------------------------------------------------- 1 | 08 05 2015 2 | -------------------------------------------------------------------------------- /Java/Java/Introduction/Java End-of-file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Java End-of-file/README.md -------------------------------------------------------------------------------- /Java/Java/Introduction/Java End-of-file/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Java End-of-file/build.gradle -------------------------------------------------------------------------------- /Java/Java/Introduction/Java If-Else/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Java If-Else/README.md -------------------------------------------------------------------------------- /Java/Java/Introduction/Java If-Else/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Java If-Else/build.gradle -------------------------------------------------------------------------------- /Java/Java/Introduction/Java If-Else/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Java/Java/Introduction/Java Int to String/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Java Int to String/README.md -------------------------------------------------------------------------------- /Java/Java/Introduction/Java Loops I/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Java Loops I/README.md -------------------------------------------------------------------------------- /Java/Java/Introduction/Java Loops I/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Java Loops I/build.gradle -------------------------------------------------------------------------------- /Java/Java/Introduction/Java Loops I/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /Java/Java/Introduction/Java Loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Java Loops/README.md -------------------------------------------------------------------------------- /Java/Java/Introduction/Java Loops/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Java Loops/build.gradle -------------------------------------------------------------------------------- /Java/Java/Introduction/Java Loops/src/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Java Loops/src/Solution.java -------------------------------------------------------------------------------- /Java/Java/Introduction/Java Output Formatting/input.txt: -------------------------------------------------------------------------------- 1 | java 100 2 | cpp 65 3 | python 50 4 | -------------------------------------------------------------------------------- /Java/Java/Introduction/Java Static Initializer Block/input.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 3 | -------------------------------------------------------------------------------- /Java/Java/Introduction/Welcome to Java!/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Welcome to Java!/README.md -------------------------------------------------------------------------------- /Java/Java/Introduction/Welcome to Java!/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Introduction/Welcome to Java!/build.gradle -------------------------------------------------------------------------------- /Java/Java/Object Oriented Programming/Java Abstract Class/input.txt: -------------------------------------------------------------------------------- 1 | A tale of two cities 2 | -------------------------------------------------------------------------------- /Java/Java/Strings/Java Anagrams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Strings/Java Anagrams/README.md -------------------------------------------------------------------------------- /Java/Java/Strings/Java Anagrams/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Strings/Java Anagrams/build.gradle -------------------------------------------------------------------------------- /Java/Java/Strings/Java Anagrams/input.txt: -------------------------------------------------------------------------------- 1 | anagram 2 | margana 3 | -------------------------------------------------------------------------------- /Java/Java/Strings/Java Anagrams/src/Anagram.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Strings/Java Anagrams/src/Anagram.java -------------------------------------------------------------------------------- /Java/Java/Strings/Java Anagrams/src/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Strings/Java Anagrams/src/Solution.java -------------------------------------------------------------------------------- /Java/Java/Strings/Java String Reverse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Strings/Java String Reverse/README.md -------------------------------------------------------------------------------- /Java/Java/Strings/Java String Reverse/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Strings/Java String Reverse/build.gradle -------------------------------------------------------------------------------- /Java/Java/Strings/Java String Reverse/input.txt: -------------------------------------------------------------------------------- 1 | madam 2 | -------------------------------------------------------------------------------- /Java/Java/Strings/Java Strings Introduction/input.txt: -------------------------------------------------------------------------------- 1 | hello 2 | java 3 | 4 | -------------------------------------------------------------------------------- /Java/Java/Strings/Java Strings Introduction/output.txt: -------------------------------------------------------------------------------- 1 | 9 2 | No 3 | Hello Java 4 | -------------------------------------------------------------------------------- /Java/Java/Strings/Java Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Strings/Java Strings/README.md -------------------------------------------------------------------------------- /Java/Java/Strings/Java Strings/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Strings/Java Strings/build.gradle -------------------------------------------------------------------------------- /Java/Java/Strings/Java Strings/src/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Strings/Java Strings/src/Solution.java -------------------------------------------------------------------------------- /Java/Java/Strings/Java Strings/test/StringTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Java/Strings/Java Strings/test/StringTest.java -------------------------------------------------------------------------------- /Java/Mathematics/Fundamentals/Handshake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Mathematics/Fundamentals/Handshake/README.md -------------------------------------------------------------------------------- /Java/Mathematics/Fundamentals/Handshake/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | 2 4 | -------------------------------------------------------------------------------- /Java/Mathematics/Fundamentals/Restaurant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Mathematics/Fundamentals/Restaurant/README.md -------------------------------------------------------------------------------- /Java/Mathematics/Fundamentals/Restaurant/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 2 2 3 | 6 9 4 | -------------------------------------------------------------------------------- /Java/Mathematics/Fundamentals/Reverse Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Mathematics/Fundamentals/Reverse Game/README.md -------------------------------------------------------------------------------- /Java/Mathematics/Fundamentals/Reverse Game/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/Mathematics/Fundamentals/Reverse Game/input.txt -------------------------------------------------------------------------------- /Java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Java/README.md -------------------------------------------------------------------------------- /Javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Javascript/.gitignore -------------------------------------------------------------------------------- /Javascript/Algorithms/Implementation/Chocolate Feast/res/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 10 2 5 3 | 12 4 4 4 | 6 2 2 5 | 6 | -------------------------------------------------------------------------------- /Javascript/Algorithms/Implementation/Chocolate Feast/res/output.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 3 3 | 5 4 | -------------------------------------------------------------------------------- /Javascript/Algorithms/Implementation/Sherlock and Squares/res/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 9 3 | 17 24 4 | -------------------------------------------------------------------------------- /Javascript/Algorithms/Implementation/Sherlock and Squares/res/output.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 0 3 | -------------------------------------------------------------------------------- /Javascript/Algorithms/Implementation/Sherlock and The Beast/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 1 3 | 3 4 | 5 5 | 11 6 | -------------------------------------------------------------------------------- /Javascript/Contests/7 Days of Javascript/Day0/coffeescript/main.coffee: -------------------------------------------------------------------------------- 1 | console.log "Hello World!" 2 | -------------------------------------------------------------------------------- /Javascript/Contests/7 Days of Javascript/Day0/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Javascript/Contests/7 Days of Javascript/Day0/javascript/main.js: -------------------------------------------------------------------------------- 1 | console.log('Hello World!'); 2 | -------------------------------------------------------------------------------- /Javascript/Contests/7 Days of Javascript/Day1/input.txt: -------------------------------------------------------------------------------- 1 | How many chickens does it take to cross the road? 2 | -------------------------------------------------------------------------------- /Javascript/Contests/Project Euler/euler_001/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 10 3 | 100 4 | -------------------------------------------------------------------------------- /Javascript/Contests/Project Euler/euler_001/output.txt: -------------------------------------------------------------------------------- 1 | 23 2 | 2318 3 | -------------------------------------------------------------------------------- /Javascript/Contests/Project Euler/euler_002/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 10 3 | 100 4 | -------------------------------------------------------------------------------- /Javascript/Contests/Project Euler/euler_002/output.txt: -------------------------------------------------------------------------------- 1 | 10 2 | 44 3 | -------------------------------------------------------------------------------- /Javascript/Mathematics/Fundamentals/Sherlock and Moving Tiles/input.txt: -------------------------------------------------------------------------------- 1 | 10 1 2 2 | 2 3 | 50 4 | 100 5 | -------------------------------------------------------------------------------- /Javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Javascript/README.md -------------------------------------------------------------------------------- /Javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Javascript/package.json -------------------------------------------------------------------------------- /Javascript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Javascript/yarn.lock -------------------------------------------------------------------------------- /Python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/.gitignore -------------------------------------------------------------------------------- /Python/Algorithms/Bit_Manipulation/Flipping_Bits/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 2147483647 3 | 1 4 | 0 5 | -------------------------------------------------------------------------------- /Python/Algorithms/Bit_Manipulation/Flipping_Bits/python_flipping_bits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Bit_Manipulation/Flipping_Bits/python_flipping_bits/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Code Golf/FizzBuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Code Golf/FizzBuzz/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Code Golf/FizzBuzz/python_fizzbuzz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Dynamic Programming/Fibonacci Modified/input.txt: -------------------------------------------------------------------------------- 1 | 0 1 5 2 | -------------------------------------------------------------------------------- /Python/Algorithms/Dynamic Programming/Fibonacci Modified/python_fibonacci_modified/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Dynamic Programming/Fibonacci Modified/python_fibonacci_modified/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Flowers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Greedy/Flowers/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Flowers/input.txt: -------------------------------------------------------------------------------- 1 | 3 3 2 | 2 5 6 3 | -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Flowers/python_flowers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Flowers/python_flowers/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Jim_and_the_Orders/python_jim_and_the_orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Jim_and_the_Orders/python_jim_and_the_orders/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Mark_and_Toys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Greedy/Mark_and_Toys/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Mark_and_Toys/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Greedy/Mark_and_Toys/input.txt -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Mark_and_Toys/python_mark_and_toys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Mark_and_Toys/python_mark_and_toys/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Sherlock_and_Minimax/python_sherlock_and_minimax/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Sherlock_and_Minimax/python_sherlock_and_minimax/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Two_Arrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Greedy/Two_Arrays/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Two_Arrays/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Greedy/Two_Arrays/input.txt -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Two_Arrays/python_two_arrays/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Greedy/Two_Arrays/python_two_arrays/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/ACM ICPC Team/python_acm_icpc_team/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Breaking the Records/python_breaking_the_records/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Breaking the Records/python_breaking_the_records/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Caesar Cypher/input.txt: -------------------------------------------------------------------------------- 1 | 11 2 | middle-Outz 3 | 2 4 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Caesar Cypher/python_caesar_cypher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Caesar Cypher/python_caesar_cypher/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Cavity Map/python_cavity_map/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Chocolate Feast/python_chocolate_feast/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Chocolate Feast/python_chocolate_feast/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Chocolate Feast/res/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 10 2 5 3 | 12 4 4 4 | 6 2 2 5 | 6 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Chocolate Feast/res/output.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 3 3 | 5 4 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Encryption/input.txt: -------------------------------------------------------------------------------- 1 | haveaniceday 2 | feedthedog 3 | chillout 4 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Encryption/python_encryption/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Encryption/python_encryption/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Manasa and Stones/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | 1 4 | 2 5 | 4 6 | 10 7 | 100 8 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Manasa and Stones/python_manasa_and_stones/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Manasa and Stones/python_manasa_and_stones/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Modified Kaprekar Numbers/input.txt: -------------------------------------------------------------------------------- 1 | 400 2 | 700 3 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Modified Kaprekar Numbers/python_modified_kaprekar_numbers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Modified Kaprekar Numbers/python_modified_kaprekar_numbers/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Sherlock and Squares/python_sherlock_and_squares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Sherlock and Squares/python_sherlock_and_squares/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Sherlock and Squares/res/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 9 3 | 17 24 4 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Sherlock and Squares/res/output.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 0 3 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Sherlock and The Beast/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 1 3 | 3 4 | 5 5 | 11 6 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Sherlock and The Beast/python_sherlock_and_the_beast/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Sherlock and The Beast/python_sherlock_and_the_beast/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Song of Pi/python_song_of_pi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Song of Pi/python_song_of_pi/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Taum and B'day/python_taum_and_bday/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/Taum and B'day/python_taum_and_bday/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/The Grid Search/output.txt: -------------------------------------------------------------------------------- 1 | 99 2 | 99 3 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/The Grid Search/python_the_grid_search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/The Grid Search/python_the_grid_search/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/The Time in Words/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 47 3 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/The Time in Words/python_the_time_in_words/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/The Time in Words/python_the_time_in_words/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/apples_and_oranges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/apples_and_oranges/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/grading_students/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/grading_students/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 73 3 | 67 4 | 38 5 | 33 6 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/grading_students/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/kangaroo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/kangaroo/input.txt: -------------------------------------------------------------------------------- 1 | 0 3 4 2 2 | -------------------------------------------------------------------------------- /Python/Algorithms/Implementation/kangaroo/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Search/Intro_to_Tutorial_Search_Challenges/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Search/Intro_to_Tutorial_Search_Challenges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Search/Intro_to_Tutorial_Search_Challenges/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 6 3 | 1 4 5 7 9 12 4 | -------------------------------------------------------------------------------- /Python/Algorithms/Search/Intro_to_Tutorial_Search_Challenges/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Search/Missing_Numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Search/Missing_Numbers/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Search/Missing_Numbers/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Search/Missing_Numbers/input.txt -------------------------------------------------------------------------------- /Python/Algorithms/Search/Missing_Numbers/python_missing_numbers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Search/Missing_Numbers/python_missing_numbers/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Search/Sherlock_and_Array/python_sherlock_and_array/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Search/Sherlock_and_Array/python_sherlock_and_array/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Sorting/Intro_to_Tutorial_Sorting_Challenges/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Sorting/Intro_to_Tutorial_Sorting_Challenges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Sorting/Intro_to_Tutorial_Sorting_Challenges/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 6 3 | 1 4 5 7 9 12 4 | -------------------------------------------------------------------------------- /Python/Algorithms/Sorting/Intro_to_Tutorial_Sorting_Challenges/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Alternating Strings/python_alternating_strings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Alternating Strings/python_alternating_strings/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Anagram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Strings/Anagram/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Anagram/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Strings/Anagram/input.txt -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Anagram/python_anagram/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Anagram/python_anagram/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Bigger is Greater/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | ab 3 | bb 4 | hefg 5 | dhck 6 | dkhc 7 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Bigger is Greater/output.txt: -------------------------------------------------------------------------------- 1 | ba 2 | no answer 3 | hegf 4 | dhkc 5 | hcdk 6 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Bigger is Greater/python_bigger_is_greater/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Bigger is Greater/python_bigger_is_greater/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Game of Thrones - I/input.txt: -------------------------------------------------------------------------------- 1 | aaabbbb 2 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Game of Thrones - I/python_game_of_thrones_1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Game of Thrones - I/python_game_of_thrones_1/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Gemstones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Strings/Gemstones/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Gemstones/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | abcdde 3 | baccd 4 | eeabg 5 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Gemstones/python_gemstones/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Gemstones/python_gemstones/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Make it Anagram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Strings/Make it Anagram/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Make it Anagram/input.txt: -------------------------------------------------------------------------------- 1 | cde 2 | abc 3 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Make it Anagram/python_make_it_anagram/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Make it Anagram/python_make_it_anagram/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Palindrome_Index/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Strings/Palindrome_Index/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Palindrome_Index/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Strings/Palindrome_Index/input.txt -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Palindrome_Index/python_palindrome_index/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Palindrome_Index/python_palindrome_index/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Sherlock and Valid String/python_sherlock_and_valid_string/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Sherlock and Valid String/python_sherlock_and_valid_string/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Two Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Strings/Two Strings/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Two Strings/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Strings/Two Strings/input.txt -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Two Strings/input2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Strings/Two Strings/input2.txt -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Two Strings/output2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Strings/Two Strings/output2.txt -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Two Strings/python_two_strings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/Two Strings/python_two_strings/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/camel_case/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/camel_case/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Strings/camel_case/__main__.py -------------------------------------------------------------------------------- /Python/Algorithms/Strings/camel_case/input.txt: -------------------------------------------------------------------------------- 1 | saveChangesInTheEditor 2 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/camel_case/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/hackerrank_in_a_string/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/hackerrank_in_a_string/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/super_reduced_string/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/super_reduced_string/input.txt: -------------------------------------------------------------------------------- 1 | aaabccddd 2 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/super_reduced_string/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/two_characters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/two_characters/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Strings/two_characters/__main__.py -------------------------------------------------------------------------------- /Python/Algorithms/Strings/two_characters/input.txt: -------------------------------------------------------------------------------- 1 | 10 2 | beabeefeab 3 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/two_characters/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/weighted_uniform_strings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/weighted_uniform_strings/input.txt: -------------------------------------------------------------------------------- 1 | abccddde 2 | 6 3 | 1 4 | 3 5 | 12 6 | 5 7 | 9 8 | 10 9 | -------------------------------------------------------------------------------- /Python/Algorithms/Strings/weighted_uniform_strings/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Big_Sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Warmup/Big_Sum/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Big_Sum/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Warmup/Big_Sum/input.txt -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Big_Sum/python_big_sum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Big_Sum/python_big_sum/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Birthday_Cake_Candles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Birthday_Cake_Candles/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 3 2 1 3 3 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Birthday_Cake_Candles/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Compare_the_Triplets/python_compare_the_triplets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Compare_the_Triplets/python_compare_the_triplets/input.txt: -------------------------------------------------------------------------------- 1 | 5 6 7 2 | 3 6 10 3 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Compare_the_Triplets/python_compare_the_triplets/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Diagonal_Difference/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 11 2 4 3 | 4 5 6 4 | 10 8 -12 5 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Diagonal_Difference/python_diagonal_difference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Diagonal_Difference/python_diagonal_difference/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Extra_Long_Factorials/input.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Extra_Long_Factorials/python_extra_long_factorials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Extra_Long_Factorials/python_extra_long_factorials/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Library_Fine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Warmup/Library_Fine/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Library_Fine/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Warmup/Library_Fine/input.txt -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Library_Fine/python_library_fine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Library_Fine/python_library_fine/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Mini_Max_Sum/input.txt: -------------------------------------------------------------------------------- 1 | 1 2 3 4 5 2 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Mini_Max_Sum/python_mini_max_sum/.pytest_cache/v/cache/lastfailed: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Mini_Max_Sum/python_mini_max_sum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Mini_Max_Sum/python_mini_max_sum/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Plus_Minus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Warmup/Plus_Minus/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Plus_Minus/input.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -4 3 -9 0 4 1 3 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Plus_Minus/python_plus_minus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Plus_Minus/python_plus_minus/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Simple_Array_Sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Warmup/Simple_Array_Sum/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Simple_Array_Sum/input.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 1 2 3 4 10 11 3 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Simple_Array_Sum/python_simple_array/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Simple_Array_Sum/python_simple_array/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Staircase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Warmup/Staircase/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Staircase/input.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Staircase/python_staircase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Time_Conversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Algorithms/Warmup/Time_Conversion/README.md -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Time_Conversion/input.txt: -------------------------------------------------------------------------------- 1 | 07:05:45PM 2 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Time_Conversion/python_time_conversion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Algorithms/Warmup/Time_Conversion/python_time_conversion/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Artificial Intelligence/Bot Building/Bot Clean/python_bot_clean/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Artificial Intelligence/Bot Building/Bot Saves Princess - 2/python_bot_saves_princess_2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Artificial Intelligence/Bot Building/Bot Saves Princess/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | --- 3 | -m- 4 | --p 5 | -------------------------------------------------------------------------------- /Python/Artificial Intelligence/Bot Building/Bot Saves Princess/output.txt: -------------------------------------------------------------------------------- 1 | DOWN 2 | LEFT 3 | -------------------------------------------------------------------------------- /Python/Artificial Intelligence/Bot Building/Bot Saves Princess/python_bot_saves_princess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Artificial Intelligence/Bot Building/Bot Saves Princess/python_bot_saves_princess/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Artificial Intelligence/Bot Building/BotClean Large/python_bot_clean_large/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Artificial Intelligence/Bot Building/BotClean Stochastic/python_bot_clean_stochastic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day00/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day00/README.md -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day00/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day00/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day00/__main__.py -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day00/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day00/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day01/README.md -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day01/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day01/__main__.py -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day02/README.md -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day02/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day02/__main__.py -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day02/input.txt: -------------------------------------------------------------------------------- 1 | 12.00 2 | 20 3 | 8 4 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day02/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day03/README.md -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day03/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day03/__main__.py -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day03/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day03/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day04/README.md -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day04/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day04/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day04/__main__.py -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day04/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | -1 3 | 10 4 | 16 5 | 18 6 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day04/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day05/README.md -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day05/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day05/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day05/__main__.py -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day05/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 5 3 5 3 | 0 2 10 4 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day05/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day06/README.md -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day06/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day06/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day06/__main__.py -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day06/input.txt: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day06/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day07/README.md -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day07/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day07/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day07/__main__.py -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day07/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 1 4 3 2 3 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day07/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day08/README.md -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day08/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day08/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day08/__main__.py -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day08/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day08/input.txt -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day08/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day09/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day09/README.md -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day09/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day09/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day09/__main__.py -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day09/input.txt: -------------------------------------------------------------------------------- 1 | 1 5 2 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day09/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day10/README.md -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day10/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day10/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day10/__main__.py -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day10/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 4 3 | 5 4 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day10/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day11/README.md -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day11/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/30 Days of Code/Day11/input.txt -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day11/python_day11/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/30 Days of Code/Day11/python_day11/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/Project Euler/euler_001/README.md -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_001/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 10 3 | 100 4 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_001/output.txt: -------------------------------------------------------------------------------- 1 | 23 2 | 2318 3 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_001/python_pe_001/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_001/python_pe_001/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_002/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/Project Euler/euler_002/README.md -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_002/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 10 3 | 100 4 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_002/output.txt: -------------------------------------------------------------------------------- 1 | 10 2 | 44 3 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_002/python_pe002/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_002/python_pe002/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_004/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/Project Euler/euler_004/README.md -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_004/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/Project Euler/euler_004/input.txt -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_004/python_pe_004/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_004/python_pe_004/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_005/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/Project Euler/euler_005/README.md -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_005/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 3 3 | 10 4 | 1 5 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_005/python_pe_005/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_005/python_pe_005/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_006/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/Project Euler/euler_006/README.md -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_006/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | 10 4 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_006/python_pe_006/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_006/python_pe_006/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_007/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/Project Euler/euler_007/README.md -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_007/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | 6 4 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_007/python_pe_007/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_007/python_pe_007/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_008/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/Project Euler/euler_008/README.md -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_008/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Contests/Project Euler/euler_008/input.txt -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_008/python_euler_008/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/Project Euler/euler_008/python_euler_008/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/week_of_code_36/acid_naming/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/week_of_code_36/acid_naming/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | hydrochloric 3 | rainbowic 4 | idontevenknow 5 | -------------------------------------------------------------------------------- /Python/Contests/week_of_code_36/acid_naming/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/week_of_code_36/revised_russian_roulette/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Contests/week_of_code_36/revised_russian_roulette/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Interview Preparation Kit/Arrays/arrays_2d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Interview Preparation Kit/Arrays/arrays_2d/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Interview Preparation Kit/Arrays/new_year_chaos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Interview Preparation Kit/Arrays/new_year_chaos/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Interview Preparation Kit/Dynamic Programming/max_array_sum/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Interview Preparation Kit/Dynamic Programming/max_array_sum/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 3 7 4 6 5 3 | -------------------------------------------------------------------------------- /Python/Interview Preparation Kit/Dynamic Programming/max_array_sum/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Find Point/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Mathematics/Fundamentals/Find Point/README.md -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Find Point/input.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 0 0 1 1 3 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Find Point/python_find_point/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Find Point/python_find_point/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Handshake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Mathematics/Fundamentals/Handshake/README.md -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Handshake/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | 2 4 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Handshake/python_handshake/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Handshake/python_handshake/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Minimum Draws/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | 2 4 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Minimum Draws/python_minimum_required/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Minimum Draws/python_minimum_required/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Restaurant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Mathematics/Fundamentals/Restaurant/README.md -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Restaurant/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 2 2 3 | 6 9 4 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Restaurant/python_restaurant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Restaurant/python_restaurant/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Reverse Game/python_reverse_game/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Reverse Game/python_reverse_game/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Sherlock and Moving Tiles/input.txt: -------------------------------------------------------------------------------- 1 | 10 1 2 2 | 2 3 | 50 4 | 100 5 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Sherlock and Moving Tiles/python_sherlock_and_moving_tiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Fundamentals/Sherlock and Moving Tiles/python_sherlock_and_moving_tiles/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Closest_Number/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 349 1 4 3 | 395 1 7 4 | 4 -2 2 5 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Closest_Number/python_closest_number/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Closest_Number/python_closest_number/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Eulers_Criterion/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 5 7 3 | 4 7 4 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Eulers_Criterion/python_eulers_criterion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Eulers_Criterion/python_eulers_criterion/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Fibonacci_Finding/python_fibonacci_finding/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Fibonacci_Finding/python_fibonacci_finding/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Little_Ashish/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 1 3 | 5 4 | 13 5 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Little_Ashish/python_little_ashish/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Little_Ashish/python_little_ashish/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Little_Panda/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 1 2 3 3 | 3 4 2 4 | 4 -1 5 5 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Little_Panda/python_little_panda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Little_Panda/python_little_panda/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Manasa_and_Factorials/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 1 3 | 2 4 | 3 5 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Manasa_and_Factorials/python_manasa_and_factorials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Mathematics/Number_Theory/Manasa_and_Factorials/python_manasa_and_factorials/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Any_or_All/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/Any_or_All/README.md -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Any_or_All/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Any_or_All/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/Any_or_All/__main__.py -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Any_or_All/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 12 9 61 5 14 3 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Any_or_All/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/Input/README.md -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Input/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Input/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/Input/__main__.py -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Input/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/Input/input.txt -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Python_Evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/Python_Evaluation/README.md -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Python_Evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Python_Evaluation/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Python_Evaluation/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Sort_Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/Sort_Data/README.md -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Sort_Data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Sort_Data/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/Sort_Data/__main__.py -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Sort_Data/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/Sort_Data/input.txt -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Sort_Data/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Zipped/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/Zipped/README.md -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Zipped/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Zipped/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/Zipped/__main__.py -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Zipped/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/Zipped/input.txt -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Zipped/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/Zipped/test/test_zipped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/Zipped/test/test_zipped.py -------------------------------------------------------------------------------- /Python/Python/Built_Ins/ginortS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/ginortS/README.md -------------------------------------------------------------------------------- /Python/Python/Built_Ins/ginortS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/ginortS/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/ginortS/__main__.py -------------------------------------------------------------------------------- /Python/Python/Built_Ins/ginortS/input.txt: -------------------------------------------------------------------------------- 1 | Sorting1234 2 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/ginortS/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Built_Ins/ginortS/test/test_ginorts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Built_Ins/ginortS/test/test_ginorts.py -------------------------------------------------------------------------------- /Python/Python/Closures and Decorators/Standardize_Mobile_Number_Using_Decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Closures and Decorators/Standardize_Mobile_Number_Using_Decorators/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/Counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Counter/README.md -------------------------------------------------------------------------------- /Python/Python/Collections/Counter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/Counter/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Counter/__main__.py -------------------------------------------------------------------------------- /Python/Python/Collections/Counter/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Counter/input.txt -------------------------------------------------------------------------------- /Python/Python/Collections/Counter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/Counter/test/test_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Counter/test/test_.py -------------------------------------------------------------------------------- /Python/Python/Collections/DefaultDict_Tutorial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/DefaultDict_Tutorial/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/Deque/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Deque/README.md -------------------------------------------------------------------------------- /Python/Python/Collections/Deque/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/Deque/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Deque/__main__.py -------------------------------------------------------------------------------- /Python/Python/Collections/Deque/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Deque/input.txt -------------------------------------------------------------------------------- /Python/Python/Collections/Deque/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/Deque/test/test_deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Deque/test/test_deque.py -------------------------------------------------------------------------------- /Python/Python/Collections/Most_Commons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Most_Commons/README.md -------------------------------------------------------------------------------- /Python/Python/Collections/Most_Commons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/Most_Commons/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Most_Commons/__main__.py -------------------------------------------------------------------------------- /Python/Python/Collections/Most_Commons/input.txt: -------------------------------------------------------------------------------- 1 | aabbbccde 2 | -------------------------------------------------------------------------------- /Python/Python/Collections/Most_Commons/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/Namedtuple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Namedtuple/README.md -------------------------------------------------------------------------------- /Python/Python/Collections/Namedtuple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/Namedtuple/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Namedtuple/__main__.py -------------------------------------------------------------------------------- /Python/Python/Collections/Namedtuple/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Namedtuple/input.txt -------------------------------------------------------------------------------- /Python/Python/Collections/Namedtuple/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/OrderedDict/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/OrderedDict/README.md -------------------------------------------------------------------------------- /Python/Python/Collections/OrderedDict/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/OrderedDict/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/OrderedDict/__main__.py -------------------------------------------------------------------------------- /Python/Python/Collections/OrderedDict/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/OrderedDict/input.txt -------------------------------------------------------------------------------- /Python/Python/Collections/OrderedDict/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/Piling_Up/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Piling_Up/README.md -------------------------------------------------------------------------------- /Python/Python/Collections/Piling_Up/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/Piling_Up/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Piling_Up/__main__.py -------------------------------------------------------------------------------- /Python/Python/Collections/Piling_Up/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/Piling_Up/input.txt -------------------------------------------------------------------------------- /Python/Python/Collections/Piling_Up/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/WordOrder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/WordOrder/README.md -------------------------------------------------------------------------------- /Python/Python/Collections/WordOrder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Collections/WordOrder/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/WordOrder/__main__.py -------------------------------------------------------------------------------- /Python/Python/Collections/WordOrder/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Collections/WordOrder/input.txt -------------------------------------------------------------------------------- /Python/Python/Collections/WordOrder/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Find_Second/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Find_Second/README.md -------------------------------------------------------------------------------- /Python/Python/Data Types/Find_Second/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Find_Second/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Find_Second/__main__.py -------------------------------------------------------------------------------- /Python/Python/Data Types/Find_Second/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 2 3 6 6 5 3 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Find_Second/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Find_Second/test/test_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Find_Second/test/test_.py -------------------------------------------------------------------------------- /Python/Python/Data Types/List_Comprehensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Data Types/List_Comprehensions/input.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 1 4 | 2 5 | -------------------------------------------------------------------------------- /Python/Python/Data Types/List_Comprehensions/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Lists/README.md -------------------------------------------------------------------------------- /Python/Python/Data Types/Lists/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Lists/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Lists/__main__.py -------------------------------------------------------------------------------- /Python/Python/Data Types/Lists/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Lists/input.txt -------------------------------------------------------------------------------- /Python/Python/Data Types/Lists/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Lists/output.txt -------------------------------------------------------------------------------- /Python/Python/Data Types/Lists/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Lists/test/test_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Lists/test/test_lists.py -------------------------------------------------------------------------------- /Python/Python/Data Types/Nested_List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Nested_List/README.md -------------------------------------------------------------------------------- /Python/Python/Data Types/Nested_List/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Nested_List/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Nested_List/__main__.py -------------------------------------------------------------------------------- /Python/Python/Data Types/Nested_List/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Nested_List/input.txt -------------------------------------------------------------------------------- /Python/Python/Data Types/Nested_List/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Nested_List/test/test_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Nested_List/test/test_.py -------------------------------------------------------------------------------- /Python/Python/Data Types/Sets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Sets/README.md -------------------------------------------------------------------------------- /Python/Python/Data Types/Sets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Sets/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Sets/__main__.py -------------------------------------------------------------------------------- /Python/Python/Data Types/Sets/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Sets/test/test_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Sets/test/test_.py -------------------------------------------------------------------------------- /Python/Python/Data Types/Tuples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Tuples/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Tuples/__main__.py -------------------------------------------------------------------------------- /Python/Python/Data Types/Tuples/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 1 2 3 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Tuples/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Data Types/Tuples/test/test_tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Data Types/Tuples/test/test_tuples.py -------------------------------------------------------------------------------- /Python/Python/Date and Time/Calendar_Module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Date and Time/Calendar_Module/input.txt: -------------------------------------------------------------------------------- 1 | 08 05 2015 2 | -------------------------------------------------------------------------------- /Python/Python/Date and Time/Calendar_Module/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Date and Time/Time_Delta/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Date and Time/Time_Delta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Date and Time/Time_Delta/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Date and Time/Time_Delta/__main__.py -------------------------------------------------------------------------------- /Python/Python/Date and Time/Time_Delta/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Date and Time/Time_Delta/input.txt -------------------------------------------------------------------------------- /Python/Python/Date and Time/Time_Delta/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Errors and Exceptions/Exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Errors and Exceptions/Exceptions/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 1 0 3 | 2 $ 4 | 3 1 5 | -------------------------------------------------------------------------------- /Python/Python/Errors and Exceptions/Exceptions/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Errors and Exceptions/Incorrect_Regex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Errors and Exceptions/Incorrect_Regex/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | .*\+ 3 | .*+ 4 | -------------------------------------------------------------------------------- /Python/Python/Errors and Exceptions/Incorrect_Regex/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Finding_Percentage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Finding_Percentage/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Integer_Sizes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Introduction/Integer_Sizes/README.md -------------------------------------------------------------------------------- /Python/Python/Introduction/Integer_Sizes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Integer_Sizes/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Introduction/Integer_Sizes/__main__.py -------------------------------------------------------------------------------- /Python/Python/Introduction/Integer_Sizes/input.txt: -------------------------------------------------------------------------------- 1 | 9 2 | 29 3 | 7 4 | 27 5 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Integer_Sizes/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Interchange_Numbers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Interchange_Numbers/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Interchange_Numbers/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Introduction/Loops/README.md -------------------------------------------------------------------------------- /Python/Python/Introduction/Loops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Loops/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Introduction/Loops/__main__.py -------------------------------------------------------------------------------- /Python/Python/Introduction/Loops/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Loops/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Loops/test/test_loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Introduction/Loops/test/test_loops.py -------------------------------------------------------------------------------- /Python/Python/Introduction/Mod_Divmod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Introduction/Mod_Divmod/README.md -------------------------------------------------------------------------------- /Python/Python/Introduction/Mod_Divmod/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Mod_Divmod/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Introduction/Mod_Divmod/__main__.py -------------------------------------------------------------------------------- /Python/Python/Introduction/Mod_Divmod/input.txt: -------------------------------------------------------------------------------- 1 | 177 2 | 10 3 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Mod_Divmod/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Mod_Power/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Introduction/Mod_Power/README.md -------------------------------------------------------------------------------- /Python/Python/Introduction/Mod_Power/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Mod_Power/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Introduction/Mod_Power/__main__.py -------------------------------------------------------------------------------- /Python/Python/Introduction/Mod_Power/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 4 3 | 5 4 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Mod_Power/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Print_Function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Introduction/Print_Function/README.md -------------------------------------------------------------------------------- /Python/Python/Introduction/Print_Function/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Print_Function/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Python_If_Else/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Python_If_Else/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Python_If_Else/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Write_a_Function/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Write_a_Function/input.txt: -------------------------------------------------------------------------------- 1 | 1990 2 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Write_a_Function/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Your_Name/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Introduction/Your_Name/README.md -------------------------------------------------------------------------------- /Python/Python/Introduction/Your_Name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Your_Name/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Introduction/Your_Name/__main__.py -------------------------------------------------------------------------------- /Python/Python/Introduction/Your_Name/input.txt: -------------------------------------------------------------------------------- 1 | Guido 2 | Rossum 3 | -------------------------------------------------------------------------------- /Python/Python/Introduction/Your_Name/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Combinations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Itertools/Combinations/README.md -------------------------------------------------------------------------------- /Python/Python/Itertools/Combinations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Combinations/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Itertools/Combinations/__main__.py -------------------------------------------------------------------------------- /Python/Python/Itertools/Combinations/input.txt: -------------------------------------------------------------------------------- 1 | HACK 2 2 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Combinations/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Combinations_With_Replacement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Combinations_With_Replacement/input.txt: -------------------------------------------------------------------------------- 1 | HACK 2 2 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Combinations_With_Replacement/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Compress_the_String/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Compress_the_String/input.txt: -------------------------------------------------------------------------------- 1 | 1222311 2 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Compress_the_String/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Iterables_and_Iterators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Iterables_and_Iterators/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | a a c d 3 | 2 4 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Iterables_and_Iterators/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Maximize_It/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Maximize_It/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Maximize_It/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Itertools/Maximize_It/__main__.py -------------------------------------------------------------------------------- /Python/Python/Itertools/Maximize_It/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Itertools/Maximize_It/input.txt -------------------------------------------------------------------------------- /Python/Python/Itertools/Maximize_It/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Permutations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Itertools/Permutations/README.md -------------------------------------------------------------------------------- /Python/Python/Itertools/Permutations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Permutations/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Itertools/Permutations/__main__.py -------------------------------------------------------------------------------- /Python/Python/Itertools/Permutations/input.txt: -------------------------------------------------------------------------------- 1 | HACK 2 2 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Permutations/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Product/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Itertools/Product/README.md -------------------------------------------------------------------------------- /Python/Python/Itertools/Product/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Product/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Itertools/Product/__main__.py -------------------------------------------------------------------------------- /Python/Python/Itertools/Product/input.txt: -------------------------------------------------------------------------------- 1 | 1 2 2 | 3 4 3 | -------------------------------------------------------------------------------- /Python/Python/Itertools/Product/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/The_Captains_Room/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Itertools/The_Captains_Room/README.md -------------------------------------------------------------------------------- /Python/Python/Itertools/The_Captains_Room/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Itertools/The_Captains_Room/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Itertools/The_Captains_Room/input.txt -------------------------------------------------------------------------------- /Python/Python/Itertools/The_Captains_Room/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Math/Polar_Coordinates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Math/Polar_Coordinates/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Math/Polar_Coordinates/__main__.py -------------------------------------------------------------------------------- /Python/Python/Math/Polar_Coordinates/input.txt: -------------------------------------------------------------------------------- 1 | 1+2j 2 | -------------------------------------------------------------------------------- /Python/Python/Math/Polar_Coordinates/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Python Functionals/Map_and_Lambda_Functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Python Functionals/Map_and_Lambda_Functions/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Python Functionals/Validating_Email_Address_With_a_Filter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Python Functionals/Validating_Email_Address_With_a_Filter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Introduction_to_Regex_Module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Introduction_to_Regex_Module/input.txt: -------------------------------------------------------------------------------- 1 | 4 2 | 4.0O0 3 | -1.00 4 | +4.54 5 | SomeRandomStuff 6 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Introduction_to_Regex_Module/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Re_Findall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Regex and Parsing/Re_Findall/README.md -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Re_Findall/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Re_Findall/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Re_Groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Re_Groups/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Re_Split/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Re_Split/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Re_Start_End/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Re_Start_End/input.txt: -------------------------------------------------------------------------------- 1 | aaadaa 2 | aa 3 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Re_Start_End/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Regex_Substitution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Regex_Substitution/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Validating_Phone_Numbers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Validating_Phone_Numbers/input.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 9587456281 3 | 1252478965 4 | -------------------------------------------------------------------------------- /Python/Python/Regex and Parsing/Validating_Phone_Numbers/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Check_Strict_Sets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Check_Strict_Sets/README.md -------------------------------------------------------------------------------- /Python/Python/Sets/Check_Strict_Sets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Check_Strict_Sets/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Check_Strict_Sets/__main__.py -------------------------------------------------------------------------------- /Python/Python/Sets/Check_Strict_Sets/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Check_Strict_Sets/input.txt -------------------------------------------------------------------------------- /Python/Python/Sets/Check_Strict_Sets/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Check_Subset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Check_Subset/README.md -------------------------------------------------------------------------------- /Python/Python/Sets/Check_Subset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Check_Subset/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Check_Subset/__main__.py -------------------------------------------------------------------------------- /Python/Python/Sets/Check_Subset/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Check_Subset/input.txt -------------------------------------------------------------------------------- /Python/Python/Sets/Check_Subset/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Introduction_to_Sets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Introduction_to_Sets/README.md -------------------------------------------------------------------------------- /Python/Python/Sets/Introduction_to_Sets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Introduction_to_Sets/input.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Introduction_to_Sets/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/No_Idea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/No_Idea/README.md -------------------------------------------------------------------------------- /Python/Python/Sets/No_Idea/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/No_Idea/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/No_Idea/__main__.py -------------------------------------------------------------------------------- /Python/Python/Sets/No_Idea/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 2 | 1 5 3 3 | 3 1 4 | 5 7 5 | -------------------------------------------------------------------------------- /Python/Python/Sets/No_Idea/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/No_Idea/test/test_no_idea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/No_Idea/test/test_no_idea.py -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Add/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Add/README.md -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Add/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Add/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Add/__main__.py -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Add/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Add/input.txt -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Add/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Add/test/test_set_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Add/test/test_set_add.py -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Difference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Difference/README.md -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Difference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Difference/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Difference/__main__.py -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Difference/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Difference/input.txt -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Difference/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Discard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Discard/README.md -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Discard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Discard/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Discard/__main__.py -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Discard/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Discard/input.txt -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Discard/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Intersection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Intersection/README.md -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Intersection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Intersection/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Intersection/__main__.py -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Intersection/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Intersection/input.txt -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Intersection/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Mutations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Mutations/README.md -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Mutations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Mutations/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Mutations/__main__.py -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Mutations/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Mutations/input.txt -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Mutations/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Symmetric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Symmetric/README.md -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Symmetric/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Symmetric/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Symmetric/__main__.py -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Symmetric/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Symmetric/input.txt -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Symmetric/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Union/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Union/README.md -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Union/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Union/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Union/__main__.py -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Union/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Sets/Set_Union/input.txt -------------------------------------------------------------------------------- /Python/Python/Sets/Set_Union/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Alphabet_Rangoli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Alphabet_Rangoli/README.md -------------------------------------------------------------------------------- /Python/Python/Strings/Alphabet_Rangoli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Alphabet_Rangoli/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Python/Python/Strings/Alphabet_Rangoli/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Capitalize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Capitalize/README.md -------------------------------------------------------------------------------- /Python/Python/Strings/Capitalize/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Capitalize/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Capitalize/__main__.py -------------------------------------------------------------------------------- /Python/Python/Strings/Capitalize/input.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /Python/Python/Strings/Capitalize/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Design_Door_Mat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Design_Door_Mat/README.md -------------------------------------------------------------------------------- /Python/Python/Strings/Design_Door_Mat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Design_Door_Mat/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Design_Door_Mat/__main__.py -------------------------------------------------------------------------------- /Python/Python/Strings/Design_Door_Mat/input.txt: -------------------------------------------------------------------------------- 1 | 7 21 2 | -------------------------------------------------------------------------------- /Python/Python/Strings/Find_a_String/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Find_a_String/README.md -------------------------------------------------------------------------------- /Python/Python/Strings/Find_a_String/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Find_a_String/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Find_a_String/__main__.py -------------------------------------------------------------------------------- /Python/Python/Strings/Find_a_String/input.txt: -------------------------------------------------------------------------------- 1 | strvB. -------------------------------------------------------------------------------- /Python/Python/Strings/Find_a_String/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Merge_the_Tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Merge_the_Tools/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Merge_the_Tools/__main__.py -------------------------------------------------------------------------------- /Python/Python/Strings/Merge_the_Tools/input.txt: -------------------------------------------------------------------------------- 1 | AABCAAADA 2 | 3 3 | -------------------------------------------------------------------------------- /Python/Python/Strings/Merge_the_Tools/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Mutations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Mutations/README.md -------------------------------------------------------------------------------- /Python/Python/Strings/Mutations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Mutations/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Mutations/__main__.py -------------------------------------------------------------------------------- /Python/Python/Strings/Mutations/input.txt: -------------------------------------------------------------------------------- 1 | abracadabra 2 | 5 k 3 | -------------------------------------------------------------------------------- /Python/Python/Strings/Mutations/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/String_Formatting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/String_Formatting/README.md -------------------------------------------------------------------------------- /Python/Python/Strings/String_Formatting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/String_Formatting/input.txt: -------------------------------------------------------------------------------- 1 | 99 2 | -------------------------------------------------------------------------------- /Python/Python/Strings/String_Split_and_Join/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/String_Validators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/String_Validators/README.md -------------------------------------------------------------------------------- /Python/Python/Strings/String_Validators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/String_Validators/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Text_Alignment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Text_Alignment/README.md -------------------------------------------------------------------------------- /Python/Python/Strings/Text_Alignment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Text_Alignment/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Text_Alignment/__main__.py -------------------------------------------------------------------------------- /Python/Python/Strings/Text_Alignment/input.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /Python/Python/Strings/Text_Wrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Text_Wrap/README.md -------------------------------------------------------------------------------- /Python/Python/Strings/Text_Wrap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/Text_Wrap/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/Text_Wrap/__main__.py -------------------------------------------------------------------------------- /Python/Python/Strings/Text_Wrap/input.txt: -------------------------------------------------------------------------------- 1 | ABCDEFGHIJKLIMNOQRSTUVWXYZ 2 | 4 3 | -------------------------------------------------------------------------------- /Python/Python/Strings/Text_Wrap/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/The_Minion_Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/The_Minion_Game/README.md -------------------------------------------------------------------------------- /Python/Python/Strings/The_Minion_Game/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/The_Minion_Game/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/The_Minion_Game/__main__.py -------------------------------------------------------------------------------- /Python/Python/Strings/The_Minion_Game/banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/The_Minion_Game/banana.png -------------------------------------------------------------------------------- /Python/Python/Strings/The_Minion_Game/input.txt: -------------------------------------------------------------------------------- 1 | BANANA 2 | -------------------------------------------------------------------------------- /Python/Python/Strings/The_Minion_Game/input2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/The_Minion_Game/input2.txt -------------------------------------------------------------------------------- /Python/Python/Strings/The_Minion_Game/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/sWAP_cASE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/sWAP_cASE/README.md -------------------------------------------------------------------------------- /Python/Python/Strings/sWAP_cASE/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/sWAP_cASE/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/sWAP_cASE/__main__.py -------------------------------------------------------------------------------- /Python/Python/Strings/sWAP_cASE/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/Python/Strings/sWAP_cASE/test/test_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/Python/Strings/sWAP_cASE/test/test_.py -------------------------------------------------------------------------------- /Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/README.md -------------------------------------------------------------------------------- /Python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/Python/requirements.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/README.md -------------------------------------------------------------------------------- /SQL/Aggregation/average_population.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Aggregation/average_population.sql -------------------------------------------------------------------------------- /SQL/Aggregation/japan_population.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Aggregation/japan_population.sql -------------------------------------------------------------------------------- /SQL/Aggregation/population_density_difference.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Aggregation/population_density_difference.sql -------------------------------------------------------------------------------- /SQL/Aggregation/weather_observation_station_2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Aggregation/weather_observation_station_2.sql -------------------------------------------------------------------------------- /SQL/Join/african_cities.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Join/african_cities.sql -------------------------------------------------------------------------------- /SQL/Join/asian_population.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Join/asian_population.sql -------------------------------------------------------------------------------- /SQL/Join/average_population_of_each_continent.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Join/average_population_of_each_continent.sql -------------------------------------------------------------------------------- /SQL/Join/the_report.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Join/the_report.sql -------------------------------------------------------------------------------- /SQL/Select/japanese_cities_detail.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/japanese_cities_detail.sql -------------------------------------------------------------------------------- /SQL/Select/japanese_cities_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/japanese_cities_name.sql -------------------------------------------------------------------------------- /SQL/Select/more_than_75_marks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/more_than_75_marks.sql -------------------------------------------------------------------------------- /SQL/Select/revising_the_select_query_1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/revising_the_select_query_1.sql -------------------------------------------------------------------------------- /SQL/Select/revising_the_select_query_2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/revising_the_select_query_2.sql -------------------------------------------------------------------------------- /SQL/Select/select_all.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/select_all.sql -------------------------------------------------------------------------------- /SQL/Select/select_by_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/select_by_id.sql -------------------------------------------------------------------------------- /SQL/Select/weather_observation_station_1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/weather_observation_station_1.sql -------------------------------------------------------------------------------- /SQL/Select/weather_observation_station_10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/weather_observation_station_10.sql -------------------------------------------------------------------------------- /SQL/Select/weather_observation_station_11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/weather_observation_station_11.sql -------------------------------------------------------------------------------- /SQL/Select/weather_observation_station_12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/weather_observation_station_12.sql -------------------------------------------------------------------------------- /SQL/Select/weather_observation_station_3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/weather_observation_station_3.sql -------------------------------------------------------------------------------- /SQL/Select/weather_observation_station_4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/weather_observation_station_4.sql -------------------------------------------------------------------------------- /SQL/Select/weather_observation_station_5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/weather_observation_station_5.sql -------------------------------------------------------------------------------- /SQL/Select/weather_observation_station_6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/weather_observation_station_6.sql -------------------------------------------------------------------------------- /SQL/Select/weather_observation_station_7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/weather_observation_station_7.sql -------------------------------------------------------------------------------- /SQL/Select/weather_observation_station_8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/weather_observation_station_8.sql -------------------------------------------------------------------------------- /SQL/Select/weather_observation_station_9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanesatterfield/hacker-rank/HEAD/SQL/Select/weather_observation_station_9.sql --------------------------------------------------------------------------------