freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-102-triangle-contai...

56 lines
702 B
Markdown
Raw Normal View History

---
id: 5900f3d21000cf542c50fee5
challengeType: 5
title: 'Problem 102: Triangle containment'
videoUrl: ''
localeTitle: 'Проблема 102: Сохранение треугольника'
---
## Description
undefined
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: ''
testString: 'assert.strictEqual(euler102(), 228, "<code>euler102()</code> should return 228.");'
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler102() {
// Good luck!
return true;
}
euler102();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>