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

724 B

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

Description

undefined

Instructions

Tests

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

Challenge Seed

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

euler295();

Solution

// solution required