freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-246-tangents-to-an-...

55 lines
620 B
Markdown
Raw Normal View History

---
id: 5900f4621000cf542c50ff75
challengeType: 5
title: 'Problem 246: Tangents to an ellipse'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler246(), 810834388, "<code>euler246()</code> should return 810834388.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler246() {
// Good luck!
return true;
}
euler246();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>