freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-306-paper-strip-gam...

608 B

id challengeType title videoUrl localeTitle
5900f49f1000cf542c50ffb1 5 Problem 306: Paper-strip Game

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler306();

Solution

// solution required