freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-433-steps-in-euclid...

55 lines
637 B
Markdown
Raw Normal View History

---
id: 5900f51d1000cf542c51002f
challengeType: 5
title: 'Problem 433: Steps in Euclid"s algorithm'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler433(), 326624372659664, "<code>euler433()</code> should return 326624372659664.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler433() {
// Good luck!
return true;
}
euler433();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>