shlogg · Early preview
Judy @esproc_spl

Calculating 24 With Four Cards: SPL Code Solution

Write code to calculate 24 from 4 cards using SPL. Enumerate permutations & operator combinations. Use eval to calculate expressions with different operation orders.

The 24 Point Game is a classic puzzle game played with playing cards. The rules of the game are as follows: Remove the Jokers from a deck of playing cards, leaving 52 cards, randomly draw 4 cards, and use the numbers on the cards (where J, Q, K, A represent 11, 12, 13, 1 respectively) in combination with addition, subtraction, multiplication, division, and parentheses to achieve a result of 24. Each card must be used once and only once.
Write code to calculate 24 for any given four cards, outputting the solution in text format.

try.DEMO
A1 sets the four cards to be used for calculation, B1 en...