freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-295-lenticular-hole...

616 B

id challengeType title videoUrl localeTitle
5900f4931000cf542c50ffa6 5 Problem 295: Lenticular holes

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler295();

Solution

// solution required