freeCodeCamp/curriculum/challenges/portuguese/08-coding-interview-prep/project-euler/problem-423-consecutive-die...

649 B

id challengeType title videoUrl localeTitle
5900f5141000cf542c510027 5 Problem 423: Consecutive die throws

Description

undefined

Instructions

Tests

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

Challenge Seed

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

euler423();

Solution

// solution required