fix: replace h tags (#40750)

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
This commit is contained in:
Nicholas Carrigan (he/him)
2021-01-21 00:11:46 -08:00
committed by GitHub
parent 83e3d93953
commit 062b1cd424
7 changed files with 9 additions and 19 deletions

View File

@ -16,7 +16,7 @@ The aim of the game is to arrange four numbers in a way that when evaluated, the
Implement a function that takes a string of four digits as its argument, with each digit from 1 to 9 (inclusive) with repetitions allowed, and returns an arithmetic expression that evaluates to the number 24. If no such solution exists, return "no solution exists".
<h4><strong>Rules:</strong></h4>
**Rules:**
<ul>
<li> Only the following operators/functions are allowed: multiplication, division, addition, subtraction. </li>
<li> Division should use floating point or rational arithmetic, etc, to preserve remainders. </li>