Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pokle/coding-exercise-clojure-robot
A robot simulator
https://github.com/pokle/coding-exercise-clojure-robot
Last synced: 10 days ago
JSON representation
A robot simulator
- Host: GitHub
- URL: https://github.com/pokle/coding-exercise-clojure-robot
- Owner: pokle
- Created: 2014-09-22T20:28:00.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-13T13:22:37.000Z (over 9 years ago)
- Last Synced: 2023-03-11T00:19:10.862Z (over 1 year ago)
- Language: Clojure
- Size: 164 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# coding-exercise-clojure-robot
This is my solution to the robot simulation coding test in Clojure. See [PROBLEM.MD](PROBLEM.MD)
## Running
You'll need Java and Leiningen installed.
Run 'lein run' with the command file as an argument, like in these examples:
> lein run test/sample-a.txt
0,1,NORTH> lein run test/sample-b.txt
0,0,WEST> lein run test/sample-c.txt
3,3,NORTH## Tests
[![Circle CI](https://circleci.com/gh/pokle/coding-exercise-clojure-robot.png?style=badge)](https://circleci.com/gh/pokle/coding-exercise-clojure-robot)
You can run the unit tests like so:
> lein midje
All checks (17) succeeded.----
[My other coding exercises](https://github.com/search?q=user%3Apokle+coding-exercise)