freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-369-badugi.arabic.md

55 lines
610 B
Markdown
Raw Normal View History

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