Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 758 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 758 Bytes

elm-countdown-problem

  • Pick input numbers greater than 0
  • Pick a target number greater than 0
  • Find all expressions that lead to target using operators +, -, x, /
  • All sub-expressions should be numbers greater than 0
  • Inspired by Graham Huttons's paper: pdf

Dev setup

$ elm-reactor
Listening on http://localhost:8000/

Compilation

$ elm make Main.elm --output build/main.[js|html]
$ cd build
$ lite-server

# Run local webserver using lite-server or python or any framework of choice
# Navigate to .html file where the local server is deployed

The MIT License (MIT)