freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-162-hexadecimal-num...

55 lines
631 B
Markdown
Raw Normal View History

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