freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-296-angular-bisecto...

55 lines
628 B
Markdown
Raw Normal View History

---
id: 5900f4941000cf542c50ffa7
challengeType: 5
title: 'Problem 296: Angular Bisector and Tangent'
videoUrl: ''
localeTitle: ''
---
## Description
undefined
## Instructions
undefined
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler296(), 1137208419, "<code>euler296()</code> should return 1137208419.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler296() {
// Good luck!
return true;
}
euler296();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>