Skip to content

rajasharan/elm-countdown-problem

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)