Skip to content

Instantly share code, notes, and snippets.

@Michael-F-Bryan
Michael-F-Bryan / README.md
Last active August 3, 2021 11:43 — forked from kthakore/README.md
C/C++/Rust Task

Task

Design a simple system that allows HR to track the state of jobs, applications and candidates.

  1. Candiates can register themselves and apply for a job
  2. All applications go through state: applied, interviewed, rejected, accepted
  3. When an application is accepted the job can no longer be applied to

The final deliverable should be a command-line app written in Rust (preferred), otherwise C++ or C are acceptable.