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