freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-311-biclinic-integr...

55 lines
632 B
Markdown

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