Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)