https://github.com/frectonz/99-elm-problems
99 problems solved using Elm
https://github.com/frectonz/99-elm-problems
Last synced: about 2 months ago
JSON representation
99 problems solved using Elm
- Host: GitHub
- URL: https://github.com/frectonz/99-elm-problems
- Owner: frectonz
- Created: 2022-01-15T13:17:50.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-12T01:20:12.000Z (almost 4 years ago)
- Last Synced: 2025-03-03T17:13:50.613Z (over 1 year ago)
- Language: Elm
- Homepage:
- Size: 21.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 99 Problems solved in Elm
My solution to the problems [here](https://johncrane.gitbooks.io/ninety-nine-elm-problems/).
## Solved Problems
- SplitList (Problem 17)
- SpliceList (Problem 18)
- DropList (Problem 20)
- RotateList (Problem 19)
- InsertAt (Problem 21)
- SortByLength (Problem 28.a)
- IsPrime (Problem 31)
- Last (Problem 1)
- Penultimate (Problem 2)
- ElementAt (Problem 3)
- CountElements (Problem 4)
- MyReverse (Problem 5)
- Palindrome (Problem 6)
- Flatten (Problem 7)
- DropWhile (Extra 1)
- TakeWhile (Extra 2)
- NoDupes (Problem 8)
- Pack (Problem 9)
- RunLength (Problem 10)
- RleEncode (Problem 11)
- RleDecode (Problem 12)
- Duplicate (Problem 14)
## Running the examples
To run the examples you should have elm installed on your system.
```bash
elm reactor
```