Welcome! This repository contains a series of coding challenges for you to complete as part of our interview process.
- Each challenge lives in its own folder under
challenges/. - Read the challenge's
README.mdfor the problem description, requirements, and expected output. - Solve the challenge in any programming language of your choice.
- Place your solution file(s) inside the challenge folder (e.g.,
challenges/fizzbuzz/solution.py).
- You may use the standard library of your chosen language. Avoid third-party packages unless the problem states otherwise.
- Your solution should be runnable from the command line. Include brief instructions at the top of your file (as a comment) on how to run it, if it isn't obvious.
- Write clean, readable code. We care about quality, not just correctness.
- Feel free to add comments explaining your approach or any trade-offs you considered.
| # | Challenge | Difficulty |
|---|---|---|
| 1 | FizzBuzz | Easy |
Create a branch with your name (e.g., firstname-lastname), commit your solutions, and open a pull request against main.
Good luck!