From 084ba9c7829024476681b36ae052a7bd3337bcf9 Mon Sep 17 00:00:00 2001 From: The Coding Aviator <34807532+thecodingaviator@users.noreply.github.com> Date: Thu, 28 Feb 2019 11:54:26 +0530 Subject: [PATCH] fix(formatting): Minor changes in 24 Game challenge --- .../rosetta-code/24-game.english.md | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/24-game.english.md b/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/24-game.english.md index 32966fba58..9d96aea0e4 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/24-game.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/24-game.english.md @@ -6,15 +6,15 @@ challengeType: 5 ## Description
-

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."

+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". - ### Rules: - +

Rules:

+ | Example input | Example output | | --- | --- | @@ -55,7 +55,7 @@ tests:
```js -function solve24 (numStr){ +function solve24(numStr) { // Good luck! return true; } @@ -99,7 +99,7 @@ function include(ansArr, res) { ```js // noprotect -function solve24 (numStr){ +function solve24(numStr) { const digitsArr = numStr.split(''); const answers = [];