https://github.com/jamilbk/interview_prep
Common coding problems in Elixir
https://github.com/jamilbk/interview_prep
elixir interview-preparation
Last synced: about 1 year ago
JSON representation
Common coding problems in Elixir
- Host: GitHub
- URL: https://github.com/jamilbk/interview_prep
- Owner: jamilbk
- License: mit
- Created: 2020-12-30T20:16:10.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-13T07:04:52.000Z (over 5 years ago)
- Last Synced: 2025-04-04T11:50:01.899Z (about 1 year ago)
- Topics: elixir, interview-preparation
- Language: Elixir
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Elixir Interview Prep
Common coding problems, implemented in Elixir.
Check [the lib directory](./lib) for all the problems.
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `interview_prep` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:interview_prep, "~> 0.1.0"}
]
end
```
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/interview_prep](https://hexdocs.pm/interview_prep).
## Requirements
* Recent version of Elixir and OTP. 1.9 and above should work fine, perhaps
even older.
## Running
All interview problems are implemented as ExUnit tests. Simply run the test
suite with `mix test` from the project root. Failing tests indicate incorrect
answers.