freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-198-ambiguous-numbe...

613 B

id challengeType title videoUrl localeTitle
5900f4331000cf542c50ff45 5 Problem 198: Ambiguous Numbers

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler198();

Solution

// solution required