24 game
Author: Filip Sergot
The 24 Game tests one's mental arithmetic.
Write a program that randomly chooses and displays four digits, each from one to nine, with repetitions allowed. The program should prompt for the player to enter an equation using just those, and all of those four digits. The program should check then evaluate the expression. The goal is for the player to enter an expression that evaluates to 24.
Only multiplication, division, addition, and subtraction operators/functions are allowed. Division should use floating point or rational arithmetic, etc, to preserve remainders. Brackets are allowed, if using an infix expression evaluator.
Forming multiple digit numbers from the supplied digits is disallowed. (So an answer of 12+12 when given 1, 2, 2, and 1 is wrong).
The order of the digits when given does not have to be preserved.
Note:
The type of expression evaluator used is not mandated. An RPN evaluator is equally acceptable for example.
The task is not for the program to generate the expression, or test whether an expression is even possible.
More
http://rosettacode.org/wiki/24_game#Raku
What's interesting here?
grammar
eval
prompt
roll
coercion
Source code: 24-game.pl
use v6; use MONKEY-SEE-NO-EVAL; # we use EVAL to process user input grammar Exp24 { token TOP { ^ <exp> $ } token exp { <term> [ <op> <term> ]* } token term { '(' <exp> ')' | \d } token op { '+' | '-' | '*' | '/' } } my @default-digits = roll 4, 1..9; # to a gamer, that's a "4d9" roll sub MAIN ($digits = Nil){ my @digits = $digits.split(/\s+/); @digits = @digits.elems == 4 ?? @digits !! @default-digits; say "Here are your digits: {@digits}"; while my $exp = prompt "\n24-Exp? " { unless is-valid($exp, @digits) { say "Sorry, your expression is not valid!"; next; } my $value = EVAL $exp; say "$exp = $value"; if $value == 24 { say "You win!"; last; } say "Sorry, your expression doesn't evaluate to 24!"; } } sub is-valid($exp, @digits) { unless ?Exp24.parse($exp) { say "Expression doesn't match rules!"; return False; } unless $exp.comb(/\d/).sort.join == @digits.sort.join { say "Expression must contain digits {@digits} only!"; return False; } return True; }