freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-413-one-child-numbe...

629 B

id challengeType title videoUrl localeTitle
5900f50a1000cf542c51001c 5 Problem 413: One-child Numbers

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler413();

Solution

// solution required