├── .gitattributes ├── .gitignore ├── .gitmodules ├── Contests ├── 101 Hack Dec 2015 │ └── Straight Flush │ │ └── main.py ├── 30 Days of Code │ ├── Day 0 - Print Hello World! │ │ └── main.py │ ├── Day 1 - Data Types! │ │ └── main.py │ ├── Day 10 - Binary Numbers! │ │ └── main.py │ ├── Day 11 - 2D-Arrays + More Review! │ │ └── main.py │ ├── Day 12 - Inheritance! │ │ └── main.py │ ├── Day 13 - Abstract Classes! │ │ └── main.py │ ├── Day 14 - All about Scope! │ │ └── main.py │ ├── Day 15 - Linked List! │ │ └── main.py │ ├── Day 16 - Sorting! │ │ └── main.py │ ├── Day 17 - Exceptions! │ │ └── main.py │ ├── Day 18 - Queues & Stacks! │ │ └── main.py │ ├── Day 19 - Interfaces! │ │ └── main.cpp │ ├── Day 2 - Arithmetic! │ │ └── main.py │ ├── Day 20 - Review + More String Methods! │ │ └── main.py │ ├── Day 21 - Generics! │ │ └── main.cpp │ ├── Day 22 - Binary Search Trees │ │ └── main.py │ ├── Day 23 - Review+Binary Trees! │ │ └── main.py │ ├── Day 24 - More Review + More Linked Lists! │ │ └── main.py │ ├── Day 25 - Running Time and Complexity! │ │ └── main.py │ ├── Day 26 - Testing Part I + Implementations! │ │ └── main.py │ ├── Day 27 - Testing Part II! │ │ └── main.py │ ├── Day 28 - RegEx, Patterns, and Intro to Databases! │ │ └── main.java │ ├── Day 29 - Look at Everything We've Learned! │ │ └── main.py │ ├── Day 3 - If-Else Statements! │ │ └── main.py │ ├── Day 4 - Logical Operators + Class vs. Instance! │ │ └── main.py │ ├── Day 5 - Loops! │ │ └── main.py │ ├── Day 6 - Let's Review! │ │ └── main.py │ ├── Day 7 - Arrays! │ │ └── main.py │ ├── Day 8 - Dictionaries and Maps! │ │ └── main.py │ └── Day 9 - Recursion! │ │ └── main.py ├── Indeed Prime CodeSprint │ ├── Gretchen and the Play │ │ └── main.py │ ├── Related Species │ │ └── main.py │ └── The Ultimate Question │ │ └── main.py └── ProjectEuler+ │ └── Multiples of 3 and 5 │ └── main.py ├── Domains ├── Algorithms │ ├── Bit Manipulation │ │ ├── Lonely Integer │ │ │ └── main.cpp │ │ ├── LonelyInteger │ │ │ └── main.cpp │ │ └── README.md │ ├── Implementation │ │ ├── Angry Professor │ │ │ └── main.cpp │ │ ├── Cavity Map │ │ │ └── main.cpp │ │ ├── Cut the sticks │ │ │ └── main.cpp │ │ ├── Kangaroo │ │ │ └── main.cpp │ │ ├── README.md │ │ ├── Sherlock and The Beast │ │ │ └── main.cpp │ │ └── Taum and B'day │ │ │ └── main.cpp │ ├── Sorting │ │ ├── Insertion Sort - Part1 │ │ │ ├── input00.txt │ │ │ ├── insertionsort1-English.pdf │ │ │ ├── main.cpp │ │ │ └── output00.txt │ │ ├── Insertion Sort - Part2 │ │ │ ├── input00.txt │ │ │ ├── input01.txt │ │ │ ├── insertionsort2-English.pdf │ │ │ ├── main.cpp │ │ │ ├── output00.txt │ │ │ └── output01.txt │ │ └── README.md │ └── Warmup │ │ ├── A Very Big Sum │ │ ├── main.cpp │ │ └── main.py │ │ ├── README.md │ │ ├── Simple Array Sum │ │ ├── main.cpp │ │ └── main.py │ │ ├── Solve Me First │ │ ├── input00.txt │ │ ├── main.c │ │ ├── main.cpp │ │ ├── main.cs │ │ ├── main.js │ │ ├── main.lua │ │ ├── main.py │ │ ├── main.rb │ │ ├── output00.txt │ │ └── solve-me-first-English.pdf │ │ └── Solve Me Second │ │ ├── input00.txt │ │ ├── main.c │ │ ├── main.cpp │ │ ├── main.cs │ │ ├── output00.txt │ │ └── solve-me-second-English.pdf ├── C++ │ ├── Classes │ │ ├── Abstract Classes - Polymorphism │ │ │ └── main.cpp │ │ ├── Class │ │ │ └── main.cpp │ │ ├── Classes and Objects │ │ │ └── main.cpp │ │ ├── README.md │ │ └── Structs │ │ │ └── main.cpp │ ├── Inheritance │ │ ├── Inheritance Introduction │ │ │ └── main.cpp │ │ ├── Multi Level Inheritance │ │ │ └── main.cpp │ │ ├── README.md │ │ └── Rectangle Area │ │ │ └── main.cpp │ ├── Introduction │ │ ├── Arrays Introduction │ │ │ └── main.cpp │ │ ├── Basic Data Types │ │ │ └── main.cpp │ │ ├── Conditional Statements │ │ │ └── main.cpp │ │ ├── For Loop │ │ │ └── main.cpp │ │ ├── Functions │ │ │ └── main.cpp │ │ ├── Hello, World! │ │ │ ├── input │ │ │ │ └── input00.txt │ │ │ ├── main.cpp │ │ │ └── output │ │ │ │ └── output00.txt │ │ ├── Input and Output │ │ │ └── main.cpp │ │ ├── Pointer │ │ │ └── main.cpp │ │ ├── README.md │ │ └── Variable Sized Arrays │ │ │ └── main.cpp │ ├── Other Concepts │ │ ├── C++ Class Templates │ │ │ └── main.cpp │ │ ├── Operator Overloading │ │ │ └── main.cpp │ │ └── README.md │ ├── STL │ │ ├── Deque-STL │ │ │ └── main.cpp │ │ ├── Lower Bound-STL │ │ │ └── main.cpp │ │ ├── Maps-STL │ │ │ ├── input │ │ │ │ ├── input00.txt │ │ │ │ ├── input01.txt │ │ │ │ ├── input02.txt │ │ │ │ ├── input03.txt │ │ │ │ ├── input04.txt │ │ │ │ ├── input05.txt │ │ │ │ ├── input06.txt │ │ │ │ ├── input07.txt │ │ │ │ ├── input08.txt │ │ │ │ ├── input09.txt │ │ │ │ ├── input10.txt │ │ │ │ ├── input11.txt │ │ │ │ ├── input12.txt │ │ │ │ ├── input13.txt │ │ │ │ ├── input14.txt │ │ │ │ ├── input15.txt │ │ │ │ ├── input16.txt │ │ │ │ ├── input17.txt │ │ │ │ └── input18.txt │ │ │ ├── main.cpp │ │ │ └── output │ │ │ │ ├── output00.txt │ │ │ │ ├── output01.txt │ │ │ │ ├── output02.txt │ │ │ │ ├── output03.txt │ │ │ │ ├── output04.txt │ │ │ │ ├── output05.txt │ │ │ │ ├── output06.txt │ │ │ │ ├── output07.txt │ │ │ │ ├── output08.txt │ │ │ │ ├── output09.txt │ │ │ │ ├── output10.txt │ │ │ │ ├── output11.txt │ │ │ │ ├── output12.txt │ │ │ │ ├── output13.txt │ │ │ │ ├── output14.txt │ │ │ │ ├── output15.txt │ │ │ │ ├── output16.txt │ │ │ │ ├── output17.txt │ │ │ │ └── output18.txt │ │ ├── README.md │ │ ├── Sets-STL │ │ │ └── main.cpp │ │ ├── Vector-Erase │ │ │ └── main.cpp │ │ └── Vector-Sort │ │ │ └── main.cpp │ ├── Strings │ │ ├── Attribute Parser │ │ │ ├── hackerrank.cpp │ │ │ ├── include │ │ │ │ ├── attributequery.h │ │ │ │ ├── elementquery.h │ │ │ │ ├── hrmlattribute.h │ │ │ │ ├── hrmlelement.h │ │ │ │ ├── hrmlparser.h │ │ │ │ ├── queriesparser.h │ │ │ │ └── query.h │ │ │ ├── lib │ │ │ │ └── googletest │ │ │ │ │ ├── libgmock.a │ │ │ │ │ └── libgtest.a │ │ │ ├── src │ │ │ │ ├── attributequery.cpp │ │ │ │ ├── elementquery.cpp │ │ │ │ ├── hrmlattribute.cpp │ │ │ │ ├── hrmlelement.cpp │ │ │ │ ├── hrmlparser.cpp │ │ │ │ ├── queriesparser.cpp │ │ │ │ └── query.cpp │ │ │ └── test │ │ │ │ ├── hrmlparser │ │ │ │ └── hrmlparsertests.cpp │ │ │ │ ├── main.cpp │ │ │ │ └── queriesparser │ │ │ │ └── queriesparsertests.cpp │ │ ├── README.md │ │ ├── StringStream │ │ │ └── main.cpp │ │ └── Strings │ │ │ └── main.cpp │ ├── test_all.sh │ └── test_problem.sh ├── Data Structures │ ├── Arrays │ │ ├── 2D Array - DS │ │ │ └── main.cpp │ │ ├── Array Manipulation │ │ │ └── main.cpp │ │ ├── Arrays - DS │ │ │ └── main.cpp │ │ └── README.md │ ├── Balanced Trees │ │ ├── README.md │ │ └── Self Balancing Tree │ │ │ └── main.cpp │ ├── Linked Lists │ │ ├── Compare two linked lists │ │ │ └── main.cpp │ │ ├── Delete a Node │ │ │ └── main.cpp │ │ ├── Delete duplicate-value nodes from a sorted linked list │ │ │ └── main.cpp │ │ ├── Detect Cycle │ │ │ └── main.cpp │ │ ├── Find Merge Point of Two Lists │ │ │ └── main.cpp │ │ ├── Get Node Value │ │ │ └── main.cpp │ │ ├── Insert a Node at the Tail of a Linked List │ │ │ └── main.cpp │ │ ├── Insert a node at a specific position in a linked list │ │ │ └── main.cpp │ │ ├── Insert a node at the head of a linked list │ │ │ └── main.cpp │ │ ├── Insert a node into a sorted doubly linked list │ │ │ └── main.cpp │ │ ├── Merge two sorted linked lists │ │ │ └── main.cpp │ │ ├── Print in Reverse │ │ │ └── main.cpp │ │ ├── Print the elements of a linked list │ │ │ └── main.cpp │ │ ├── README.md │ │ ├── Reverse a doubly linked list │ │ │ └── main.cpp │ │ └── Reverse a linked list │ │ │ └── main.cpp │ └── Trees │ │ ├── Height of a binary tree │ │ └── main.cpp │ │ ├── Inorder Traversal │ │ └── main.cpp │ │ ├── Insertion │ │ └── main.cpp │ │ ├── Level Order Traversal │ │ └── main.cpp │ │ ├── Lowest Common Ancestor │ │ └── main.cpp │ │ ├── Postorder Traversal │ │ └── main.cpp │ │ ├── Preorder Traversal │ │ └── main.cpp │ │ ├── README.md │ │ ├── Swap Nodes │ │ └── main.cpp │ │ └── Top View │ │ └── main.cpp ├── Linux Shell │ └── Bash │ │ ├── A Personalized Echo │ │ └── main.sh │ │ ├── Arithmetic Operations │ │ └── main.sh │ │ ├── Comparing Numbers │ │ └── main.sh │ │ ├── Getting started with conditionals │ │ └── main.sh │ │ ├── Let's Echo │ │ └── main.sh │ │ ├── Looping and Skipping │ │ └── main.sh │ │ ├── Looping with Numbers │ │ └── main.sh │ │ ├── More on Conditionals │ │ └── main.sh │ │ ├── README.md │ │ └── The World of Numbers │ │ └── main.sh ├── Mathematics │ ├── Fundamentals │ │ ├── Find Point │ │ │ ├── find-point-English.pdf │ │ │ └── main.cs │ │ ├── Handshake │ │ │ ├── handshake-English.pdf │ │ │ └── main.cpp │ │ ├── Minimum Draws │ │ │ └── main.cpp │ │ ├── README.md │ │ └── Sherlock and Moving Tiles │ │ │ ├── input00.txt │ │ │ ├── input01.txt │ │ │ ├── input02.txt │ │ │ ├── input03.txt │ │ │ ├── input04.txt │ │ │ ├── input05.txt │ │ │ ├── main.cs │ │ │ ├── output00.txt │ │ │ ├── output01.txt │ │ │ ├── output02.txt │ │ │ ├── output03.txt │ │ │ ├── output04.txt │ │ │ └── output05.txt │ ├── Geometry │ │ ├── README.md │ │ ├── Rectangular Game │ │ │ ├── input00.txt │ │ │ ├── input01.txt │ │ │ ├── input02.txt │ │ │ ├── input03.txt │ │ │ ├── input04.txt │ │ │ ├── input05.txt │ │ │ ├── input06.txt │ │ │ ├── input07.txt │ │ │ ├── input08.txt │ │ │ ├── input09.txt │ │ │ ├── input10.txt │ │ │ ├── main.cs │ │ │ ├── output00.txt │ │ │ ├── output01.txt │ │ │ ├── output02.txt │ │ │ ├── output03.txt │ │ │ ├── output04.txt │ │ │ ├── output05.txt │ │ │ ├── output06.txt │ │ │ ├── output07.txt │ │ │ ├── output08.txt │ │ │ ├── output09.txt │ │ │ ├── output10.txt │ │ │ └── rectangular-game-English.pdf │ │ └── Stars │ │ │ ├── input00.txt │ │ │ ├── input01.txt │ │ │ ├── input02.txt │ │ │ ├── input03.txt │ │ │ ├── input04.txt │ │ │ ├── input05.txt │ │ │ ├── input06.txt │ │ │ ├── input07.txt │ │ │ ├── input08.txt │ │ │ ├── input09.txt │ │ │ ├── input10.txt │ │ │ ├── main.cs │ │ │ ├── output00.txt │ │ │ ├── output01.txt │ │ │ ├── output02.txt │ │ │ ├── output03.txt │ │ │ ├── output04.txt │ │ │ ├── output05.txt │ │ │ ├── output06.txt │ │ │ ├── output07.txt │ │ │ ├── output08.txt │ │ │ ├── output09.txt │ │ │ ├── output10.txt │ │ │ └── stars-English.pdf │ └── Number Theory │ │ ├── README.md │ │ └── Sherlock and GCD │ │ └── main.cpp ├── Python │ ├── Built-Ins │ │ ├── Any or All │ │ │ └── main.py │ │ ├── Input() │ │ │ └── main.py │ │ ├── Python Evaluation │ │ │ └── main.py │ │ ├── README.md │ │ ├── Sort Data │ │ │ └── main.py │ │ ├── Zipped! │ │ │ └── main.py │ │ └── ginortS │ │ │ └── main.py │ ├── Classes │ │ ├── Dealing with Complex Numbers │ │ │ └── main.py │ │ ├── Find the Torsional Angle │ │ │ └── main.py │ │ └── README.md │ ├── Closures and Decorators │ │ ├── Decorators 2 - Name directory │ │ │ └── main.py │ │ ├── README.md │ │ └── Standardize mobile number using Decorators │ │ │ └── main.py │ ├── Collections │ │ ├── Most Commons │ │ │ └── main.py │ │ ├── README.md │ │ ├── collections.Counter() │ │ │ └── main.py │ │ ├── collections.OrderedDict() │ │ │ └── main.py │ │ ├── collections.deque() │ │ │ └── main.py │ │ └── collections.namedtuple() │ │ │ └── main.py │ ├── Containers │ │ ├── DefaultDict Tutorial │ │ │ └── main.py │ │ ├── No Idea! │ │ │ └── main.py │ │ ├── Piling Up! │ │ │ └── main.py │ │ ├── README.md │ │ └── Word Order │ │ │ └── main.py │ ├── Data Types │ │ ├── Find second largest number in a list │ │ │ └── main.py │ │ ├── List Comprehensions │ │ │ └── main.py │ │ ├── Lists │ │ │ └── main.py │ │ ├── Nested list │ │ │ └── main.py │ │ ├── README.md │ │ ├── Sets - Symmetric Difference │ │ │ └── main.py │ │ └── Tuples │ │ │ └── main.py │ ├── Date and Time │ │ ├── Calendar Module │ │ │ └── main.py │ │ ├── README.md │ │ └── Time Delta │ │ │ └── main.py │ ├── Errors and Exceptions │ │ ├── Exceptions │ │ │ └── main.py │ │ ├── Incorrect Regex │ │ │ └── main.py │ │ └── README.md │ ├── Introduction │ │ ├── Arithmetic Operators │ │ │ └── main.py │ │ ├── Division │ │ │ └── main.py │ │ ├── Finding the percentage │ │ │ └── main.py │ │ ├── Hello World! │ │ │ └── main.py │ │ ├── Integers Come In All Sizes │ │ │ └── main.py │ │ ├── Interchange two numbers │ │ │ └── main.py │ │ ├── Loops │ │ │ └── main.py │ │ ├── Mod Divmod │ │ │ └── main.py │ │ ├── Power - Mod Power │ │ │ └── main.py │ │ ├── Print Function │ │ │ └── main.py │ │ ├── README.md │ │ ├── Raw Input │ │ │ └── main.py │ │ └── What's Your Name │ │ │ └── main.py │ ├── Itertools │ │ ├── Compress the String! │ │ │ └── main.py │ │ ├── Iterables and Iterators │ │ │ └── main.py │ │ ├── Maximize It! │ │ │ └── main.py │ │ ├── README.md │ │ ├── itertools.combinations() │ │ │ └── main.py │ │ ├── itertools.combinations_with_replacement() │ │ │ └── main.py │ │ ├── itertools.permutations() │ │ │ └── main.py │ │ └── itertools.product() │ │ │ └── main.py │ ├── Math │ │ ├── Find Angle MBC │ │ │ └── main.py │ │ ├── Polar Coordinates │ │ │ └── main.py │ │ ├── README.md │ │ ├── Triangle Quest 2 │ │ │ └── main.py │ │ └── Triangle Quest │ │ │ └── main.py │ ├── Numpy │ │ ├── Array Mathematics │ │ │ └── main.py │ │ ├── Arrays │ │ │ └── main.py │ │ ├── Concatenate │ │ │ └── main.py │ │ ├── Dot and Cross │ │ │ └── main.py │ │ ├── Eye and Identity │ │ │ └── main.py │ │ ├── Floor, Ceil and Rint │ │ │ └── main.py │ │ ├── Inner and Outer │ │ │ └── main.py │ │ ├── Linear Algebra │ │ │ └── main.py │ │ ├── Mean, Var and Std │ │ │ └── main.py │ │ ├── Min and Max │ │ │ └── main.py │ │ ├── Polynomials │ │ │ └── main.py │ │ ├── README.md │ │ ├── Shape and Reshape │ │ │ └── main.py │ │ ├── Sum and Prod │ │ │ └── main.py │ │ ├── Transpose and Flatten │ │ │ └── main.py │ │ └── Zeros and Ones │ │ │ └── main.py │ ├── Python Functionals │ │ ├── Map and Lambda Function │ │ │ └── main.py │ │ ├── README.md │ │ └── Validating Email Addresses With a Filter │ │ │ └── main.py │ ├── Regex and Parsing │ │ ├── Detect HTML tags, attributes and attribute values │ │ │ └── main.py │ │ ├── HTML Parser - Part 1 │ │ │ └── main.py │ │ ├── HTML Parser - Part 2 │ │ │ └── main.py │ │ ├── Hex Color Code │ │ │ └── main.py │ │ ├── Introduction to re module │ │ │ └── main.py │ │ ├── Matrix Script │ │ │ └── main.py │ │ ├── README.md │ │ ├── Re.start() & Re.end() │ │ │ └── main.py │ │ ├── Regex Substitution │ │ │ └── main.py │ │ ├── Validating & Parsing Email Addresses │ │ │ └── main.py │ │ ├── Validating Credit Card Numbers │ │ │ └── main.py │ │ ├── Validating Postal Codes │ │ │ └── main.py │ │ ├── Validating Roman Numerals │ │ │ └── main.py │ │ ├── Validating UID │ │ │ └── main.py │ │ ├── Validating phone numbers │ │ │ └── main.py │ │ ├── group(), groups() & groupdict() │ │ │ └── main.py │ │ ├── re.findall() & re.finditer() │ │ │ └── main.py │ │ └── re.split() │ │ │ └── main.py │ ├── Sets │ │ ├── Check Strict Superset │ │ │ └── main.py │ │ ├── Check Subset │ │ │ └── main.py │ │ ├── Introduction to Sets │ │ │ └── main.py │ │ ├── README.md │ │ ├── Set .difference() Operation │ │ │ └── main.py │ │ ├── Set .discard(), .remove() & .pop() │ │ │ └── main.py │ │ ├── Set .intersection() Operation │ │ │ └── main.py │ │ ├── Set .symmetric_difference() Operation │ │ │ └── main.py │ │ ├── Set .union() Operation │ │ │ └── main.py │ │ ├── Set Mutations │ │ │ └── main.py │ │ ├── Set.add() │ │ │ └── main.py │ │ └── The Captain's Room │ │ │ └── main.py │ ├── Strings │ │ ├── Alphabet Rangoli │ │ │ └── main.py │ │ ├── Capitalize! │ │ │ └── main.py │ │ ├── Designer Door Mat │ │ │ └── main.py │ │ ├── Find a string │ │ │ └── main.py │ │ ├── Mutations │ │ │ └── main.py │ │ ├── README.md │ │ ├── String Formatting │ │ │ └── main.py │ │ ├── String Split and Join │ │ │ └── main.py │ │ ├── String Validators │ │ │ └── main.py │ │ ├── Text Alignment │ │ │ └── main.py │ │ ├── Text Wrap │ │ │ └── main.py │ │ ├── The Minion Game │ │ │ └── main.py │ │ └── sWAP cASE │ │ │ └── main.py │ └── XML │ │ ├── README.md │ │ ├── XML 1 - Find the score │ │ └── main.py │ │ └── XML 2 - Find the maximum depth │ │ └── main.py └── Ruby │ ├── Arrays & Hashes │ ├── Array │ │ ├── Addition │ │ │ └── main.rb │ │ ├── Deletion │ │ │ └── main.rb │ │ ├── Index, Part 1 │ │ │ └── main.rb │ │ ├── Index, Part 2 │ │ │ └── main.rb │ │ ├── Initialization │ │ │ └── main.rb │ │ └── Selection │ │ │ └── main.rb │ ├── Hash │ │ ├── Addition, Deletion, Selection │ │ │ └── main.rb │ │ ├── Each │ │ │ └── main.rb │ │ └── Initialization │ │ │ └── main.rb │ └── README.md │ ├── Control Structures │ ├── Case │ │ └── main.rb │ ├── Each │ │ └── main.rb │ ├── Infinite Loop │ │ └── main.rb │ ├── README.md │ ├── Unless │ │ └── main.rb │ └── Until │ │ └── main.rb │ ├── Enumerables │ ├── Introduction │ │ └── main.rb │ ├── README.md │ ├── any, all, none, find │ │ └── main.rb │ ├── collect │ │ └── main.rb │ ├── each_with_index │ │ └── main.rb │ ├── group_by │ │ └── main.rb │ └── reduce │ │ └── main.rb │ ├── Introduction │ ├── Everything is an Object │ │ └── main.rb │ ├── Hello World! │ │ └── main.rb │ ├── Object Method Parameters │ │ └── main.rb │ ├── Object Methods │ │ └── main.rb │ └── README.md │ ├── Methods │ ├── Arguments │ │ └── main.rb │ ├── Introduction │ │ └── main.rb │ ├── Keyword Arguments │ │ └── main.rb │ ├── README.md │ └── Variable Arguments │ │ └── main.rb │ └── Strings │ ├── Encoding │ └── main.rb │ ├── Indexing │ └── main.rb │ ├── Introduction │ └── main.rb │ ├── Iteration │ └── main.rb │ ├── Methods I │ └── main.rb │ ├── Methods II │ └── main.rb │ └── README.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/.gitmodules -------------------------------------------------------------------------------- /Contests/101 Hack Dec 2015/Straight Flush/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/101 Hack Dec 2015/Straight Flush/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 0 - Print Hello World!/main.py: -------------------------------------------------------------------------------- 1 | print("Hello World.", "Welcome to 30 Days of Code.", sep='\n') 2 | -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 1 - Data Types!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 1 - Data Types!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 10 - Binary Numbers!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 10 - Binary Numbers!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 11 - 2D-Arrays + More Review!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 11 - 2D-Arrays + More Review!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 12 - Inheritance!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 12 - Inheritance!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 13 - Abstract Classes!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 13 - Abstract Classes!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 14 - All about Scope!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 14 - All about Scope!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 15 - Linked List!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 15 - Linked List!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 16 - Sorting!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 16 - Sorting!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 17 - Exceptions!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 17 - Exceptions!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 18 - Queues & Stacks!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 18 - Queues & Stacks!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 19 - Interfaces!/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 19 - Interfaces!/main.cpp -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 2 - Arithmetic!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 2 - Arithmetic!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 20 - Review + More String Methods!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 20 - Review + More String Methods!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 21 - Generics!/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 21 - Generics!/main.cpp -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 22 - Binary Search Trees/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 22 - Binary Search Trees/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 23 - Review+Binary Trees!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 23 - Review+Binary Trees!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 24 - More Review + More Linked Lists!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 24 - More Review + More Linked Lists!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 25 - Running Time and Complexity!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 25 - Running Time and Complexity!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 26 - Testing Part I + Implementations!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 26 - Testing Part I + Implementations!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 27 - Testing Part II!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 27 - Testing Part II!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 28 - RegEx, Patterns, and Intro to Databases!/main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 28 - RegEx, Patterns, and Intro to Databases!/main.java -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 29 - Look at Everything We've Learned!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 29 - Look at Everything We've Learned!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 3 - If-Else Statements!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 3 - If-Else Statements!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 4 - Logical Operators + Class vs. Instance!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 4 - Logical Operators + Class vs. Instance!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 5 - Loops!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 5 - Loops!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 6 - Let's Review!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 6 - Let's Review!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 7 - Arrays!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 7 - Arrays!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 8 - Dictionaries and Maps!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 8 - Dictionaries and Maps!/main.py -------------------------------------------------------------------------------- /Contests/30 Days of Code/Day 9 - Recursion!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/30 Days of Code/Day 9 - Recursion!/main.py -------------------------------------------------------------------------------- /Contests/Indeed Prime CodeSprint/Gretchen and the Play/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/Indeed Prime CodeSprint/Gretchen and the Play/main.py -------------------------------------------------------------------------------- /Contests/Indeed Prime CodeSprint/Related Species/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/Indeed Prime CodeSprint/Related Species/main.py -------------------------------------------------------------------------------- /Contests/Indeed Prime CodeSprint/The Ultimate Question/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/Indeed Prime CodeSprint/The Ultimate Question/main.py -------------------------------------------------------------------------------- /Contests/ProjectEuler+/Multiples of 3 and 5/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Contests/ProjectEuler+/Multiples of 3 and 5/main.py -------------------------------------------------------------------------------- /Domains/Algorithms/Bit Manipulation/Lonely Integer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Bit Manipulation/Lonely Integer/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Bit Manipulation/LonelyInteger/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Bit Manipulation/LonelyInteger/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Bit Manipulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Bit Manipulation/README.md -------------------------------------------------------------------------------- /Domains/Algorithms/Implementation/Angry Professor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Implementation/Angry Professor/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Implementation/Cavity Map/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Implementation/Cavity Map/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Implementation/Cut the sticks/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Implementation/Cut the sticks/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Implementation/Kangaroo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Implementation/Kangaroo/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Implementation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Implementation/README.md -------------------------------------------------------------------------------- /Domains/Algorithms/Implementation/Sherlock and The Beast/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Implementation/Sherlock and The Beast/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Implementation/Taum and B'day/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Implementation/Taum and B'day/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Sorting/Insertion Sort - Part1/input00.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 2 4 6 8 3 -------------------------------------------------------------------------------- /Domains/Algorithms/Sorting/Insertion Sort - Part1/insertionsort1-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Sorting/Insertion Sort - Part1/insertionsort1-English.pdf -------------------------------------------------------------------------------- /Domains/Algorithms/Sorting/Insertion Sort - Part1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Sorting/Insertion Sort - Part1/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Sorting/Insertion Sort - Part1/output00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Sorting/Insertion Sort - Part1/output00.txt -------------------------------------------------------------------------------- /Domains/Algorithms/Sorting/Insertion Sort - Part2/input00.txt: -------------------------------------------------------------------------------- 1 | 6 2 | 1 4 3 5 6 2 -------------------------------------------------------------------------------- /Domains/Algorithms/Sorting/Insertion Sort - Part2/input01.txt: -------------------------------------------------------------------------------- 1 | 9 2 | 9 8 6 7 3 5 4 1 2 -------------------------------------------------------------------------------- /Domains/Algorithms/Sorting/Insertion Sort - Part2/insertionsort2-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Sorting/Insertion Sort - Part2/insertionsort2-English.pdf -------------------------------------------------------------------------------- /Domains/Algorithms/Sorting/Insertion Sort - Part2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Sorting/Insertion Sort - Part2/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Sorting/Insertion Sort - Part2/output00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Sorting/Insertion Sort - Part2/output00.txt -------------------------------------------------------------------------------- /Domains/Algorithms/Sorting/Insertion Sort - Part2/output01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Sorting/Insertion Sort - Part2/output01.txt -------------------------------------------------------------------------------- /Domains/Algorithms/Sorting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Sorting/README.md -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/A Very Big Sum/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/A Very Big Sum/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/A Very Big Sum/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/A Very Big Sum/main.py -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/README.md -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Simple Array Sum/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Simple Array Sum/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Simple Array Sum/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Simple Array Sum/main.py -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me First/input00.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me First/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Solve Me First/main.c -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me First/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Solve Me First/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me First/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Solve Me First/main.cs -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me First/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Solve Me First/main.js -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me First/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Solve Me First/main.lua -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me First/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Solve Me First/main.py -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me First/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Solve Me First/main.rb -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me First/output00.txt: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me First/solve-me-first-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Solve Me First/solve-me-first-English.pdf -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me Second/input00.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 3 | 3 7 -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me Second/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Solve Me Second/main.c -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me Second/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Solve Me Second/main.cpp -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me Second/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Solve Me Second/main.cs -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me Second/output00.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 10 -------------------------------------------------------------------------------- /Domains/Algorithms/Warmup/Solve Me Second/solve-me-second-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Algorithms/Warmup/Solve Me Second/solve-me-second-English.pdf -------------------------------------------------------------------------------- /Domains/C++/Classes/Abstract Classes - Polymorphism/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Classes/Abstract Classes - Polymorphism/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Classes/Class/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Classes/Class/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Classes/Classes and Objects/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Classes/Classes and Objects/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Classes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Classes/README.md -------------------------------------------------------------------------------- /Domains/C++/Classes/Structs/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Classes/Structs/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Inheritance/Inheritance Introduction/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Inheritance/Inheritance Introduction/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Inheritance/Multi Level Inheritance/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Inheritance/Multi Level Inheritance/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Inheritance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Inheritance/README.md -------------------------------------------------------------------------------- /Domains/C++/Inheritance/Rectangle Area/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Inheritance/Rectangle Area/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Introduction/Arrays Introduction/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Introduction/Arrays Introduction/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Introduction/Basic Data Types/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Introduction/Basic Data Types/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Introduction/Conditional Statements/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Introduction/Conditional Statements/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Introduction/For Loop/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Introduction/For Loop/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Introduction/Functions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Introduction/Functions/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Introduction/Hello, World!/input/input00.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Domains/C++/Introduction/Hello, World!/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Introduction/Hello, World!/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Introduction/Hello, World!/output/output00.txt: -------------------------------------------------------------------------------- 1 | Hello, World! -------------------------------------------------------------------------------- /Domains/C++/Introduction/Input and Output/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Introduction/Input and Output/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Introduction/Pointer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Introduction/Pointer/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Introduction/README.md -------------------------------------------------------------------------------- /Domains/C++/Introduction/Variable Sized Arrays/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Introduction/Variable Sized Arrays/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Other Concepts/C++ Class Templates/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Other Concepts/C++ Class Templates/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Other Concepts/Operator Overloading/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Other Concepts/Operator Overloading/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Other Concepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Other Concepts/README.md -------------------------------------------------------------------------------- /Domains/C++/STL/Deque-STL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Deque-STL/main.cpp -------------------------------------------------------------------------------- /Domains/C++/STL/Lower Bound-STL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Lower Bound-STL/main.cpp -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input00.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input01.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input02.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input03.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input04.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input05.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input06.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input07.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input08.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input09.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input10.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input11.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input12.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input13.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input14.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input15.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input16.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input17.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/input/input18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/input/input18.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/main.cpp -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output00.txt: -------------------------------------------------------------------------------- 1 | 190 2 | 257 3 | 319 4 | -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output01.txt: -------------------------------------------------------------------------------- 1 | 29 2 | 62 3 | -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output02.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output03.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output04.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output05.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output06.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output07.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output08.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output09.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output10.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output11.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output12.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output13.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output14.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output15.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output16.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Maps-STL/output/output17.txt -------------------------------------------------------------------------------- /Domains/C++/STL/Maps-STL/output/output18.txt: -------------------------------------------------------------------------------- 1 | 30 2 | 20 3 | 0 4 | -------------------------------------------------------------------------------- /Domains/C++/STL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/README.md -------------------------------------------------------------------------------- /Domains/C++/STL/Sets-STL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Sets-STL/main.cpp -------------------------------------------------------------------------------- /Domains/C++/STL/Vector-Erase/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Vector-Erase/main.cpp -------------------------------------------------------------------------------- /Domains/C++/STL/Vector-Sort/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/STL/Vector-Sort/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/hackerrank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/hackerrank.cpp -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/include/attributequery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/include/attributequery.h -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/include/elementquery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/include/elementquery.h -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/include/hrmlattribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/include/hrmlattribute.h -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/include/hrmlelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/include/hrmlelement.h -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/include/hrmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/include/hrmlparser.h -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/include/queriesparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/include/queriesparser.h -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/include/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/include/query.h -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/lib/googletest/libgmock.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/lib/googletest/libgmock.a -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/lib/googletest/libgtest.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/lib/googletest/libgtest.a -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/src/attributequery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/src/attributequery.cpp -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/src/elementquery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/src/elementquery.cpp -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/src/hrmlattribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/src/hrmlattribute.cpp -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/src/hrmlelement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/src/hrmlelement.cpp -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/src/hrmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/src/hrmlparser.cpp -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/src/queriesparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/src/queriesparser.cpp -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/src/query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/src/query.cpp -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/test/hrmlparser/hrmlparsertests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/test/hrmlparser/hrmlparsertests.cpp -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/test/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Strings/Attribute Parser/test/queriesparser/queriesparsertests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Attribute Parser/test/queriesparser/queriesparsertests.cpp -------------------------------------------------------------------------------- /Domains/C++/Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/README.md -------------------------------------------------------------------------------- /Domains/C++/Strings/StringStream/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/StringStream/main.cpp -------------------------------------------------------------------------------- /Domains/C++/Strings/Strings/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/Strings/Strings/main.cpp -------------------------------------------------------------------------------- /Domains/C++/test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/test_all.sh -------------------------------------------------------------------------------- /Domains/C++/test_problem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/C++/test_problem.sh -------------------------------------------------------------------------------- /Domains/Data Structures/Arrays/2D Array - DS/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Arrays/2D Array - DS/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Arrays/Array Manipulation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Arrays/Array Manipulation/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Arrays/Arrays - DS/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Arrays/Arrays - DS/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Arrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Arrays/README.md -------------------------------------------------------------------------------- /Domains/Data Structures/Balanced Trees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Balanced Trees/README.md -------------------------------------------------------------------------------- /Domains/Data Structures/Balanced Trees/Self Balancing Tree/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Balanced Trees/Self Balancing Tree/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Compare two linked lists/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Compare two linked lists/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Delete a Node/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Delete a Node/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Delete duplicate-value nodes from a sorted linked list/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Delete duplicate-value nodes from a sorted linked list/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Detect Cycle/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Detect Cycle/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Find Merge Point of Two Lists/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Find Merge Point of Two Lists/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Get Node Value/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Get Node Value/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Insert a Node at the Tail of a Linked List/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Insert a Node at the Tail of a Linked List/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Insert a node at a specific position in a linked list/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Insert a node at a specific position in a linked list/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Insert a node at the head of a linked list/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Insert a node at the head of a linked list/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Insert a node into a sorted doubly linked list/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Insert a node into a sorted doubly linked list/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Merge two sorted linked lists/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Merge two sorted linked lists/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Print in Reverse/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Print in Reverse/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Print the elements of a linked list/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Print the elements of a linked list/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/README.md -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Reverse a doubly linked list/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Reverse a doubly linked list/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Linked Lists/Reverse a linked list/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Linked Lists/Reverse a linked list/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Trees/Height of a binary tree/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Trees/Height of a binary tree/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Trees/Inorder Traversal/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Trees/Inorder Traversal/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Trees/Insertion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Trees/Insertion/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Trees/Level Order Traversal/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Trees/Level Order Traversal/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Trees/Lowest Common Ancestor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Trees/Lowest Common Ancestor/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Trees/Postorder Traversal/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Trees/Postorder Traversal/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Trees/Preorder Traversal/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Trees/Preorder Traversal/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Trees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Trees/README.md -------------------------------------------------------------------------------- /Domains/Data Structures/Trees/Swap Nodes/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Trees/Swap Nodes/main.cpp -------------------------------------------------------------------------------- /Domains/Data Structures/Trees/Top View/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Data Structures/Trees/Top View/main.cpp -------------------------------------------------------------------------------- /Domains/Linux Shell/Bash/A Personalized Echo/main.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | read name 4 | 5 | echo "Welcome $name" 6 | -------------------------------------------------------------------------------- /Domains/Linux Shell/Bash/Arithmetic Operations/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Linux Shell/Bash/Arithmetic Operations/main.sh -------------------------------------------------------------------------------- /Domains/Linux Shell/Bash/Comparing Numbers/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Linux Shell/Bash/Comparing Numbers/main.sh -------------------------------------------------------------------------------- /Domains/Linux Shell/Bash/Getting started with conditionals/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Linux Shell/Bash/Getting started with conditionals/main.sh -------------------------------------------------------------------------------- /Domains/Linux Shell/Bash/Let's Echo/main.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo HELLO 4 | -------------------------------------------------------------------------------- /Domains/Linux Shell/Bash/Looping and Skipping/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Linux Shell/Bash/Looping and Skipping/main.sh -------------------------------------------------------------------------------- /Domains/Linux Shell/Bash/Looping with Numbers/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Linux Shell/Bash/Looping with Numbers/main.sh -------------------------------------------------------------------------------- /Domains/Linux Shell/Bash/More on Conditionals/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Linux Shell/Bash/More on Conditionals/main.sh -------------------------------------------------------------------------------- /Domains/Linux Shell/Bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Linux Shell/Bash/README.md -------------------------------------------------------------------------------- /Domains/Linux Shell/Bash/The World of Numbers/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Linux Shell/Bash/The World of Numbers/main.sh -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Find Point/find-point-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Find Point/find-point-English.pdf -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Find Point/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Find Point/main.cs -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Handshake/handshake-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Handshake/handshake-English.pdf -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Handshake/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Handshake/main.cpp -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Minimum Draws/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Minimum Draws/main.cpp -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/README.md -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/input00.txt: -------------------------------------------------------------------------------- 1 | 10 1 2 2 | 2 3 | 50 4 | 100 -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/input01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/input01.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/input02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/input02.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/input03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/input03.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/input04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/input04.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/input05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/input05.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/main.cs -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/output00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/output00.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/output01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/output01.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/output02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/output02.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/output03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/output03.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/output04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/output04.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/output05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Fundamentals/Sherlock and Moving Tiles/output05.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/README.md -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/input00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Rectangular Game/input00.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/input01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Rectangular Game/input01.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/input02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Rectangular Game/input02.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/input03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Rectangular Game/input03.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/input04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Rectangular Game/input04.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/input05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Rectangular Game/input05.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/input06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Rectangular Game/input06.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/input07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Rectangular Game/input07.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/input08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Rectangular Game/input08.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/input09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Rectangular Game/input09.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/input10.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 2 3 3 | 3 7 4 | 4 1 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Rectangular Game/main.cs -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/output00.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/output01.txt: -------------------------------------------------------------------------------- 1 | 45 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/output02.txt: -------------------------------------------------------------------------------- 1 | 2550 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/output03.txt: -------------------------------------------------------------------------------- 1 | 10100 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/output04.txt: -------------------------------------------------------------------------------- 1 | 1159920 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/output05.txt: -------------------------------------------------------------------------------- 1 | 33290796 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/output06.txt: -------------------------------------------------------------------------------- 1 | 2632707 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/output07.txt: -------------------------------------------------------------------------------- 1 | 491858036475 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/output08.txt: -------------------------------------------------------------------------------- 1 | 812064852648 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/output09.txt: -------------------------------------------------------------------------------- 1 | 34@ -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/output10.txt: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Rectangular Game/rectangular-game-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Rectangular Game/rectangular-game-English.pdf -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/input00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Stars/input00.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/input01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Stars/input01.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/input02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Stars/input02.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/input03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Stars/input03.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/input04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Stars/input04.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/input05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Stars/input05.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/input06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Stars/input06.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/input07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Stars/input07.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/input08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Stars/input08.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/input09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Stars/input09.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/input10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Stars/input10.txt -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Stars/main.cs -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/output00.txt: -------------------------------------------------------------------------------- 1 | 2358 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/output01.txt: -------------------------------------------------------------------------------- 1 | 4343 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/output02.txt: -------------------------------------------------------------------------------- 1 | 6814 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/output03.txt: -------------------------------------------------------------------------------- 1 | 9703 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/output04.txt: -------------------------------------------------------------------------------- 1 | 14388 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/output05.txt: -------------------------------------------------------------------------------- 1 | 14892 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/output06.txt: -------------------------------------------------------------------------------- 1 | 17767 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/output07.txt: -------------------------------------------------------------------------------- 1 | 19275 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/output08.txt: -------------------------------------------------------------------------------- 1 | 23488 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/output09.txt: -------------------------------------------------------------------------------- 1 | 27171 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/output10.txt: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /Domains/Mathematics/Geometry/Stars/stars-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Geometry/Stars/stars-English.pdf -------------------------------------------------------------------------------- /Domains/Mathematics/Number Theory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Number Theory/README.md -------------------------------------------------------------------------------- /Domains/Mathematics/Number Theory/Sherlock and GCD/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Mathematics/Number Theory/Sherlock and GCD/main.cpp -------------------------------------------------------------------------------- /Domains/Python/Built-Ins/Any or All/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Built-Ins/Any or All/main.py -------------------------------------------------------------------------------- /Domains/Python/Built-Ins/Input()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Built-Ins/Input()/main.py -------------------------------------------------------------------------------- /Domains/Python/Built-Ins/Python Evaluation/main.py: -------------------------------------------------------------------------------- 1 | eval(str(input())) 2 | -------------------------------------------------------------------------------- /Domains/Python/Built-Ins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Built-Ins/README.md -------------------------------------------------------------------------------- /Domains/Python/Built-Ins/Sort Data/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Built-Ins/Sort Data/main.py -------------------------------------------------------------------------------- /Domains/Python/Built-Ins/Zipped!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Built-Ins/Zipped!/main.py -------------------------------------------------------------------------------- /Domains/Python/Built-Ins/ginortS/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Built-Ins/ginortS/main.py -------------------------------------------------------------------------------- /Domains/Python/Classes/Dealing with Complex Numbers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Classes/Dealing with Complex Numbers/main.py -------------------------------------------------------------------------------- /Domains/Python/Classes/Find the Torsional Angle/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Classes/Find the Torsional Angle/main.py -------------------------------------------------------------------------------- /Domains/Python/Classes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Classes/README.md -------------------------------------------------------------------------------- /Domains/Python/Closures and Decorators/Decorators 2 - Name directory/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Closures and Decorators/Decorators 2 - Name directory/main.py -------------------------------------------------------------------------------- /Domains/Python/Closures and Decorators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Closures and Decorators/README.md -------------------------------------------------------------------------------- /Domains/Python/Closures and Decorators/Standardize mobile number using Decorators/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Closures and Decorators/Standardize mobile number using Decorators/main.py -------------------------------------------------------------------------------- /Domains/Python/Collections/Most Commons/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Collections/Most Commons/main.py -------------------------------------------------------------------------------- /Domains/Python/Collections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Collections/README.md -------------------------------------------------------------------------------- /Domains/Python/Collections/collections.Counter()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Collections/collections.Counter()/main.py -------------------------------------------------------------------------------- /Domains/Python/Collections/collections.OrderedDict()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Collections/collections.OrderedDict()/main.py -------------------------------------------------------------------------------- /Domains/Python/Collections/collections.deque()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Collections/collections.deque()/main.py -------------------------------------------------------------------------------- /Domains/Python/Collections/collections.namedtuple()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Collections/collections.namedtuple()/main.py -------------------------------------------------------------------------------- /Domains/Python/Containers/DefaultDict Tutorial/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Containers/DefaultDict Tutorial/main.py -------------------------------------------------------------------------------- /Domains/Python/Containers/No Idea!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Containers/No Idea!/main.py -------------------------------------------------------------------------------- /Domains/Python/Containers/Piling Up!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Containers/Piling Up!/main.py -------------------------------------------------------------------------------- /Domains/Python/Containers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Containers/README.md -------------------------------------------------------------------------------- /Domains/Python/Containers/Word Order/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Containers/Word Order/main.py -------------------------------------------------------------------------------- /Domains/Python/Data Types/Find second largest number in a list/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Data Types/Find second largest number in a list/main.py -------------------------------------------------------------------------------- /Domains/Python/Data Types/List Comprehensions/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Data Types/List Comprehensions/main.py -------------------------------------------------------------------------------- /Domains/Python/Data Types/Lists/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Data Types/Lists/main.py -------------------------------------------------------------------------------- /Domains/Python/Data Types/Nested list/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Data Types/Nested list/main.py -------------------------------------------------------------------------------- /Domains/Python/Data Types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Data Types/README.md -------------------------------------------------------------------------------- /Domains/Python/Data Types/Sets - Symmetric Difference/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Data Types/Sets - Symmetric Difference/main.py -------------------------------------------------------------------------------- /Domains/Python/Data Types/Tuples/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Data Types/Tuples/main.py -------------------------------------------------------------------------------- /Domains/Python/Date and Time/Calendar Module/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Date and Time/Calendar Module/main.py -------------------------------------------------------------------------------- /Domains/Python/Date and Time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Date and Time/README.md -------------------------------------------------------------------------------- /Domains/Python/Date and Time/Time Delta/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Date and Time/Time Delta/main.py -------------------------------------------------------------------------------- /Domains/Python/Errors and Exceptions/Exceptions/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Errors and Exceptions/Exceptions/main.py -------------------------------------------------------------------------------- /Domains/Python/Errors and Exceptions/Incorrect Regex/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Errors and Exceptions/Incorrect Regex/main.py -------------------------------------------------------------------------------- /Domains/Python/Errors and Exceptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Errors and Exceptions/README.md -------------------------------------------------------------------------------- /Domains/Python/Introduction/Arithmetic Operators/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Introduction/Arithmetic Operators/main.py -------------------------------------------------------------------------------- /Domains/Python/Introduction/Division/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Introduction/Division/main.py -------------------------------------------------------------------------------- /Domains/Python/Introduction/Finding the percentage/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Introduction/Finding the percentage/main.py -------------------------------------------------------------------------------- /Domains/Python/Introduction/Hello World!/main.py: -------------------------------------------------------------------------------- 1 | print "Hello World!" 2 | -------------------------------------------------------------------------------- /Domains/Python/Introduction/Integers Come In All Sizes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Introduction/Integers Come In All Sizes/main.py -------------------------------------------------------------------------------- /Domains/Python/Introduction/Interchange two numbers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Introduction/Interchange two numbers/main.py -------------------------------------------------------------------------------- /Domains/Python/Introduction/Loops/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Introduction/Loops/main.py -------------------------------------------------------------------------------- /Domains/Python/Introduction/Mod Divmod/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Introduction/Mod Divmod/main.py -------------------------------------------------------------------------------- /Domains/Python/Introduction/Power - Mod Power/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Introduction/Power - Mod Power/main.py -------------------------------------------------------------------------------- /Domains/Python/Introduction/Print Function/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Introduction/Print Function/main.py -------------------------------------------------------------------------------- /Domains/Python/Introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Introduction/README.md -------------------------------------------------------------------------------- /Domains/Python/Introduction/Raw Input/main.py: -------------------------------------------------------------------------------- 1 | print raw_input() 2 | -------------------------------------------------------------------------------- /Domains/Python/Introduction/What's Your Name/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Introduction/What's Your Name/main.py -------------------------------------------------------------------------------- /Domains/Python/Itertools/Compress the String!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Itertools/Compress the String!/main.py -------------------------------------------------------------------------------- /Domains/Python/Itertools/Iterables and Iterators/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Itertools/Iterables and Iterators/main.py -------------------------------------------------------------------------------- /Domains/Python/Itertools/Maximize It!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Itertools/Maximize It!/main.py -------------------------------------------------------------------------------- /Domains/Python/Itertools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Itertools/README.md -------------------------------------------------------------------------------- /Domains/Python/Itertools/itertools.combinations()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Itertools/itertools.combinations()/main.py -------------------------------------------------------------------------------- /Domains/Python/Itertools/itertools.combinations_with_replacement()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Itertools/itertools.combinations_with_replacement()/main.py -------------------------------------------------------------------------------- /Domains/Python/Itertools/itertools.permutations()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Itertools/itertools.permutations()/main.py -------------------------------------------------------------------------------- /Domains/Python/Itertools/itertools.product()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Itertools/itertools.product()/main.py -------------------------------------------------------------------------------- /Domains/Python/Math/Find Angle MBC/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Math/Find Angle MBC/main.py -------------------------------------------------------------------------------- /Domains/Python/Math/Polar Coordinates/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Math/Polar Coordinates/main.py -------------------------------------------------------------------------------- /Domains/Python/Math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Math/README.md -------------------------------------------------------------------------------- /Domains/Python/Math/Triangle Quest 2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Math/Triangle Quest 2/main.py -------------------------------------------------------------------------------- /Domains/Python/Math/Triangle Quest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Math/Triangle Quest/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Array Mathematics/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Array Mathematics/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Arrays/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Arrays/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Concatenate/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Concatenate/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Dot and Cross/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Dot and Cross/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Eye and Identity/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Eye and Identity/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Floor, Ceil and Rint/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Floor, Ceil and Rint/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Inner and Outer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Inner and Outer/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Linear Algebra/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Linear Algebra/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Mean, Var and Std/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Mean, Var and Std/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Min and Max/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Min and Max/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Polynomials/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Polynomials/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/README.md -------------------------------------------------------------------------------- /Domains/Python/Numpy/Shape and Reshape/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Shape and Reshape/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Sum and Prod/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Sum and Prod/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Transpose and Flatten/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Transpose and Flatten/main.py -------------------------------------------------------------------------------- /Domains/Python/Numpy/Zeros and Ones/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Numpy/Zeros and Ones/main.py -------------------------------------------------------------------------------- /Domains/Python/Python Functionals/Map and Lambda Function/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Python Functionals/Map and Lambda Function/main.py -------------------------------------------------------------------------------- /Domains/Python/Python Functionals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Python Functionals/README.md -------------------------------------------------------------------------------- /Domains/Python/Python Functionals/Validating Email Addresses With a Filter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Python Functionals/Validating Email Addresses With a Filter/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/Detect HTML tags, attributes and attribute values/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/Detect HTML tags, attributes and attribute values/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/HTML Parser - Part 1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/HTML Parser - Part 1/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/HTML Parser - Part 2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/HTML Parser - Part 2/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/Hex Color Code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/Hex Color Code/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/Introduction to re module/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/Introduction to re module/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/Matrix Script/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/Matrix Script/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/README.md -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/Re.start() & Re.end()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/Re.start() & Re.end()/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/Regex Substitution/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/Regex Substitution/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/Validating & Parsing Email Addresses/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/Validating & Parsing Email Addresses/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/Validating Credit Card Numbers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/Validating Credit Card Numbers/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/Validating Postal Codes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/Validating Postal Codes/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/Validating Roman Numerals/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/Validating Roman Numerals/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/Validating UID/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/Validating UID/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/Validating phone numbers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/Validating phone numbers/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/group(), groups() & groupdict()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/group(), groups() & groupdict()/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/re.findall() & re.finditer()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/re.findall() & re.finditer()/main.py -------------------------------------------------------------------------------- /Domains/Python/Regex and Parsing/re.split()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Regex and Parsing/re.split()/main.py -------------------------------------------------------------------------------- /Domains/Python/Sets/Check Strict Superset/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Sets/Check Strict Superset/main.py -------------------------------------------------------------------------------- /Domains/Python/Sets/Check Subset/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Sets/Check Subset/main.py -------------------------------------------------------------------------------- /Domains/Python/Sets/Introduction to Sets/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Sets/Introduction to Sets/main.py -------------------------------------------------------------------------------- /Domains/Python/Sets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Sets/README.md -------------------------------------------------------------------------------- /Domains/Python/Sets/Set .difference() Operation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Sets/Set .difference() Operation/main.py -------------------------------------------------------------------------------- /Domains/Python/Sets/Set .discard(), .remove() & .pop()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Sets/Set .discard(), .remove() & .pop()/main.py -------------------------------------------------------------------------------- /Domains/Python/Sets/Set .intersection() Operation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Sets/Set .intersection() Operation/main.py -------------------------------------------------------------------------------- /Domains/Python/Sets/Set .symmetric_difference() Operation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Sets/Set .symmetric_difference() Operation/main.py -------------------------------------------------------------------------------- /Domains/Python/Sets/Set .union() Operation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Sets/Set .union() Operation/main.py -------------------------------------------------------------------------------- /Domains/Python/Sets/Set Mutations/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Sets/Set Mutations/main.py -------------------------------------------------------------------------------- /Domains/Python/Sets/Set.add()/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Sets/Set.add()/main.py -------------------------------------------------------------------------------- /Domains/Python/Sets/The Captain's Room/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Sets/The Captain's Room/main.py -------------------------------------------------------------------------------- /Domains/Python/Strings/Alphabet Rangoli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Strings/Alphabet Rangoli/main.py -------------------------------------------------------------------------------- /Domains/Python/Strings/Capitalize!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Strings/Capitalize!/main.py -------------------------------------------------------------------------------- /Domains/Python/Strings/Designer Door Mat/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Strings/Designer Door Mat/main.py -------------------------------------------------------------------------------- /Domains/Python/Strings/Find a string/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Strings/Find a string/main.py -------------------------------------------------------------------------------- /Domains/Python/Strings/Mutations/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Strings/Mutations/main.py -------------------------------------------------------------------------------- /Domains/Python/Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Strings/README.md -------------------------------------------------------------------------------- /Domains/Python/Strings/String Formatting/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Strings/String Formatting/main.py -------------------------------------------------------------------------------- /Domains/Python/Strings/String Split and Join/main.py: -------------------------------------------------------------------------------- 1 | print "-".join(raw_input().split(" ")) 2 | -------------------------------------------------------------------------------- /Domains/Python/Strings/String Validators/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Strings/String Validators/main.py -------------------------------------------------------------------------------- /Domains/Python/Strings/Text Alignment/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Strings/Text Alignment/main.py -------------------------------------------------------------------------------- /Domains/Python/Strings/Text Wrap/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Strings/Text Wrap/main.py -------------------------------------------------------------------------------- /Domains/Python/Strings/The Minion Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/Strings/The Minion Game/main.py -------------------------------------------------------------------------------- /Domains/Python/Strings/sWAP cASE/main.py: -------------------------------------------------------------------------------- 1 | print raw_input().swapcase() 2 | -------------------------------------------------------------------------------- /Domains/Python/XML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/XML/README.md -------------------------------------------------------------------------------- /Domains/Python/XML/XML 1 - Find the score/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/XML/XML 1 - Find the score/main.py -------------------------------------------------------------------------------- /Domains/Python/XML/XML 2 - Find the maximum depth/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Python/XML/XML 2 - Find the maximum depth/main.py -------------------------------------------------------------------------------- /Domains/Ruby/Arrays & Hashes/Array/Addition/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Arrays & Hashes/Array/Addition/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Arrays & Hashes/Array/Deletion/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Arrays & Hashes/Array/Deletion/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Arrays & Hashes/Array/Index, Part 1/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Arrays & Hashes/Array/Index, Part 1/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Arrays & Hashes/Array/Index, Part 2/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Arrays & Hashes/Array/Index, Part 2/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Arrays & Hashes/Array/Initialization/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Arrays & Hashes/Array/Initialization/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Arrays & Hashes/Array/Selection/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Arrays & Hashes/Array/Selection/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Arrays & Hashes/Hash/Addition, Deletion, Selection/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Arrays & Hashes/Hash/Addition, Deletion, Selection/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Arrays & Hashes/Hash/Each/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Arrays & Hashes/Hash/Each/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Arrays & Hashes/Hash/Initialization/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Arrays & Hashes/Hash/Initialization/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Arrays & Hashes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Arrays & Hashes/README.md -------------------------------------------------------------------------------- /Domains/Ruby/Control Structures/Case/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Control Structures/Case/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Control Structures/Each/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Control Structures/Each/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Control Structures/Infinite Loop/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Control Structures/Infinite Loop/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Control Structures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Control Structures/README.md -------------------------------------------------------------------------------- /Domains/Ruby/Control Structures/Unless/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Control Structures/Unless/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Control Structures/Until/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Control Structures/Until/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Enumerables/Introduction/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Enumerables/Introduction/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Enumerables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Enumerables/README.md -------------------------------------------------------------------------------- /Domains/Ruby/Enumerables/any, all, none, find/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Enumerables/any, all, none, find/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Enumerables/collect/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Enumerables/collect/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Enumerables/each_with_index/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Enumerables/each_with_index/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Enumerables/group_by/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Enumerables/group_by/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Enumerables/reduce/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Enumerables/reduce/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Introduction/Everything is an Object/main.rb: -------------------------------------------------------------------------------- 1 | print self 2 | -------------------------------------------------------------------------------- /Domains/Ruby/Introduction/Hello World!/main.rb: -------------------------------------------------------------------------------- 1 | print "Hello HackerRank!!" 2 | -------------------------------------------------------------------------------- /Domains/Ruby/Introduction/Object Method Parameters/main.rb: -------------------------------------------------------------------------------- 1 | return a.range?(b, c) 2 | -------------------------------------------------------------------------------- /Domains/Ruby/Introduction/Object Methods/main.rb: -------------------------------------------------------------------------------- 1 | return number.even? 2 | -------------------------------------------------------------------------------- /Domains/Ruby/Introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Introduction/README.md -------------------------------------------------------------------------------- /Domains/Ruby/Methods/Arguments/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Methods/Arguments/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Methods/Introduction/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Methods/Introduction/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Methods/Keyword Arguments/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Methods/Keyword Arguments/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Methods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Methods/README.md -------------------------------------------------------------------------------- /Domains/Ruby/Methods/Variable Arguments/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Methods/Variable Arguments/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Strings/Encoding/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Strings/Encoding/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Strings/Indexing/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Strings/Indexing/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Strings/Introduction/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Strings/Introduction/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Strings/Iteration/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Strings/Iteration/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Strings/Methods I/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Strings/Methods I/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Strings/Methods II/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Strings/Methods II/main.rb -------------------------------------------------------------------------------- /Domains/Ruby/Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/Domains/Ruby/Strings/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leocamello/HackerRank/HEAD/README.md --------------------------------------------------------------------------------