freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-303-multiples-with-...

639 B

id challengeType title videoUrl localeTitle
5900f49b1000cf542c50ffae 5 Problem 303: Multiples with small digits

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler303();

Solution

// solution required