HackerrankPractice
HackerrankPractice copied to clipboard
170+ solutions to Hackerrank.com practice problems using Python 3, С++ and Oracle SQL
**Fibonacci** ``` # Iterative solution def fibonacci(n): # special case if n == 1: return [0] # initialize the array arr = [0, 1] # and populate it, remember to...
Using single line logic.
updated the code
Adding this easy question on 2D Array
Liked what you all started, added in an inheritance solution. Should be able to provide all solutions for practice areas in C++ if helpful. :)
Added solution to the Transpose and flatten problem.
much more fast to compile (basically for hacktoberfest)