freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-315-digital-root-cl...

615 B

id challengeType title videoUrl localeTitle
5900f4a71000cf542c50ffba 5 Problem 315: Digital root clocks

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler315();

Solution

// solution required