freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-191-prize-strings.a...

613 B

id challengeType title videoUrl localeTitle
5900f42b1000cf542c50ff3e 5 Problem 191: Prize Strings

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler191();

Solution

// solution required