Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/johnsaigle/hacker_rank_solutions

Solutions to hacker rank challenges
https://github.com/johnsaigle/hacker_rank_solutions

hackerrank hackerrank-algorithms-solutions hackerrank-python hackerrank-solutions

Last synced: about 3 hours ago
JSON representation

Solutions to hacker rank challenges

Awesome Lists containing this project

README

        

# Hacker Rank Solutions

The files in this repo are solutions or solutions-in-progress for [Hacker Rank](https://www.hackerrank.com) (and a few select other sources). Stored here for easy-sharing as well as bragging rights.

## Problems + Solutions

## **Python**

- [Bus Problem](https://www.hackerrank.com/challenges/bus-station) -- bus_solution.py
- [Land Elevation](http://www.careercup.com/question?id=15380670), an interview problem used by [Palantir](https://www.palantir.com/) -- practice_script.py
- Anagrams, a(nother) sample problem from Palantir -- anagrams.py
- No description, but essentially: taking two strings as input, determine whether they are [anagrams](http://en.wikipedia.org/wiki/Anagram).
- [Make it Anagram](https://www.hackerrank.com/challenges/make-it-anagram) -- make_it_anagram.py
- a modification on the anagram problem
- [Quick Sort 1](https://www.hackerrank.com/challenges/quicksort1) -- quicksort.py
- (Yet another)[Anagram](https://www.hackerrank.com/challenges/anagram) -- anagrams(again).py

### Arrays

- [Arrays: Left Rotation](https://www.hackerrank.com/challenges/ctci-array-left-rotation/problem) -- arrayRotation.py

## Ruby

- [Service Lane](https://www.hackerrank.com/challenges/service-lane) -- service_lane.rb
- [Love Letter](https://www.hackerrank.com/challenges/the-love-letter-mystery) -- love_letter.rb
- [Counting Sort 1](https://www.hackerrank.com/challenges/countingsort1) -- counting_sort.rb

## Haskell -- haskell_junk.hs (contains all challenges)

- [List Length](https://www.hackerrank.com/challenges/fp-list-length)
- [Update List](https://www.hackerrank.com/challenges/fp-update-list)