https://github.com/elixirschool/homework
A collection of coding exercises to be completed in conjunction with the lessons available on elixirschool.com
https://github.com/elixirschool/homework
challenges elixir elixir-lang elixir-school exercises practice
Last synced: 9 months ago
JSON representation
A collection of coding exercises to be completed in conjunction with the lessons available on elixirschool.com
- Host: GitHub
- URL: https://github.com/elixirschool/homework
- Owner: elixirschool
- License: apache-2.0
- Created: 2018-04-29T05:13:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-16T18:06:20.000Z (over 5 years ago)
- Last Synced: 2025-03-27T20:06:11.342Z (10 months ago)
- Topics: challenges, elixir, elixir-lang, elixir-school, exercises, practice
- Language: Elixir
- Homepage: https://elixirschool.com
- Size: 43.9 KB
- Stars: 72
- Watchers: 17
- Forks: 14
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Homework
_Homework_ by [Elixir School](https://github.com/elixirschool) is a collection of coding exercises to be completed in conjunction with our lessons available on [elixirschool.com](https://elixirschool.com).
Each exercise is created as a standalone Mix project requiring a varying degree of code completion to get the include test suite to pass.
## Exercises
| Exercise | Description |
|----------------------|-----------------------|
|[Fizzbuzz](https://github.com/elixirschool/homework/tree/master/fizzbuzz)| Everyone's favorite! Finish implementing Fizzbuzz in Elixir.|
|[Shapes](https://github.com/elixirschool/homework/tree/master/shapes)|Print different shapes to IO like diamonds, squares, and pyramids given their size.|
|[String Cases](https://github.com/elixirschool/homework/tree/master/string_cases)|In this exercise we'll implement functions to convert strings to CamelCase, snake_case, and WaVyCaSe.|
|[Collections](https://github.com/elixirschool/homework/tree/master/collections)|Implement multiple functions that manipulate and retrieve data from within collections.|
|[Word Count](https://github.com/elixirschool/homework/tree/master/word_count)|Using the provided poem _Be Proud of Who You Are_ (found within `word_count/priv`), count the occurrences of each word and print the top 10 most frequent.|
|[Fibonacci](https://github.com/elixirschool/homework/tree/master/fibonacci)|Print out _N_ steps of the Fibonacci sequence.|
|[Markdown](https://github.com/elixirschool/homework/tree/master/markdown)|Finish implementing a Markdown parser in Elixir.|
|[Palindrome](https://github.com/elixirschool/homework/tree/master/palindrome)|Provided with a string of characters ("aabbc"), print all possible palindrome premutations ("abcba", "bacab") to IO.|
|[Simple Bank](/tree/master/simple_bank)|Build a bank using a GenServer to support account registration, deposits, withdrawls, and account balance inquiries.|
## Contributions
We'd love to hear your feedback on how these exercises are working for you.
Have ideas for new exercises?
We're all ears!
Is this is your first time contributing to an [Elixir School](https://github.com/elixirschool) project?
Head on over to our [Campus](https://github.com/elixirschool/campus) to learn a little bit more about us and how we work.