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

631 B

id challengeType title videoUrl localeTitle
5900f40e1000cf542c50ff21 5 Problem 162: Hexadecimal numbers

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'assert.strictEqual(euler162(), 3D58725572C62302, "<code>euler162()</code> should return 3D58725572C62302.");'

Challenge Seed

function euler162() {
  // Good luck!
  return true;
}

euler162();

Solution

// solution required