Skip to content

Instantly share code, notes, and snippets.

@Michael-F-Bryan
Forked from kthakore/README.md
Last active August 3, 2021 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Michael-F-Bryan/b93791e677b410f95905fd1eea278391 to your computer and use it in GitHub Desktop.
Save Michael-F-Bryan/b93791e677b410f95905fd1eea278391 to your computer and use it in GitHub Desktop.
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.

Bonus Points

Add a persistance layer so that state is retained across multiple invocations of the command-line app.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment