freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-318-2011-nines.chin...

608 B

id challengeType title videoUrl localeTitle
5900f4ab1000cf542c50ffbd 5 Problem 318: 2011 nines

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler318();

Solution

// solution required