Skip to content

gareth-robinson/hello-countdown-numbers-game

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

hello-countdown-numbers-game

I once saw a Trisha Gee presentation where she suggested having a pet project that you try re-implementing every time you learn a new framework, like a richer form of 'Hello World'. While it's not a full stack application, I'm going for a solver for the Countdown Numbers Game, since I once suggested a Kata around the same.

Notes

The aim is not to clone or port the exact same solution into each language (where would be the fun in that?) but to try different things in each language.

Roughly the main two parts needed in each solution is:

  • Create a Reverse Polish Notation evaluator that meets Countdown acceptability rules. In Countdown is it not acceptable to pass through a negative number or a fraction during a calculation. So, given inputs of 2 3 10...
    • a target of 15 could be met by (10 * 3) / 2, but not (3 / 2) * 10
    • a target of 9 could be met by (10 + 2) - 3, but not (2 - 3) + 10
  • Given a target number and input numbers, brute force through all the premutations of inputs and arithmetic symbols, + - * /, until the first acceptable sequence is found that when evaluated has a result that matches the target
    • For example, given a target of 940, and inputs of 50 75 100 25 2 1 it could output: 50 75 25 * 1 + * 100 / 2 +

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published