freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-93-arithmetic-expre...

55 lines
605 B
Markdown

---
id: 5900f3ca1000cf542c50fedc
challengeType: 5
title: 'Problem 93: Arithmetic expressions'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler93(), 1258, "<code>euler93()</code> should return 1258.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler93() {
// Good luck!
return true;
}
euler93();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>