* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | ||
| id: 5900f3ca1000cf542c50fedc
 | ||
| title: 'Problem 93: Arithmetic expressions'
 | ||
| challengeType: 5
 | ||
| forumTopicId: 302210
 | ||
| dashedName: problem-93-arithmetic-expressions
 | ||
| ---
 | ||
| 
 | ||
| # --description--
 | ||
| 
 | ||
| By using each of the digits from the set, {1, 2, 3, 4}, exactly once, and making use of the four arithmetic operations (+, −, \*, /) and brackets/parentheses, it is possible to form different positive integer targets.
 | ||
| 
 | ||
| For example,
 | ||
| 
 | ||
| <div style='margin-left: 4em;'>
 | ||
|   8 = (4 * (1 + 3)) / 2<br>
 | ||
|   14 = 4 * (3 + 1 / 2)<br>
 | ||
|   19 = 4 * (2 + 3) − 1<br>
 | ||
|   36 = 3 * 4 * (2 + 1)
 | ||
| </div>
 | ||
| 
 | ||
| Note that concatenations of the digits, like 12 + 34, are not allowed.
 | ||
| 
 | ||
| Using the set, {1, 2, 3, 4}, it is possible to obtain thirty-one different target numbers of which 36 is the maximum, and each of the numbers 1 to 28 can be obtained before encountering the first non-expressible number.
 | ||
| 
 | ||
| Find the set of four distinct digits, `a` < `b` < `c` < `d`, for which the longest set of consecutive positive integers, 1 to `n`, can be obtained, giving your answer as a string: `abcd`.
 | ||
| 
 | ||
| # --hints--
 | ||
| 
 | ||
| `arithmeticExpressions()` should return a number.
 | ||
| 
 | ||
| ```js
 | ||
| assert(typeof arithmeticExpressions() === 'number');
 | ||
| ```
 | ||
| 
 | ||
| `arithmeticExpressions()` should return 1258.
 | ||
| 
 | ||
| ```js
 | ||
| assert.strictEqual(arithmeticExpressions(), 1258);
 | ||
| ```
 | ||
| 
 | ||
| # --seed--
 | ||
| 
 | ||
| ## --seed-contents--
 | ||
| 
 | ||
| ```js
 | ||
| function arithmeticExpressions() {
 | ||
| 
 | ||
|   return true;
 | ||
| }
 | ||
| 
 | ||
| arithmeticExpressions();
 | ||
| ```
 | ||
| 
 | ||
| # --solutions--
 | ||
| 
 | ||
| ```js
 | ||
| // solution required
 | ||
| ```
 |