freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-426-box-ball-system...

617 B

id challengeType title videoUrl localeTitle
5900f5171000cf542c510029 5 Problem 426: Box-ball system

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler426();

Solution

// solution required