freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-368-a-kempner-like-...

629 B

id challengeType title videoUrl localeTitle
5900f4dd1000cf542c50ffef 5 Problem 368: A Kempner-like series

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler368();

Solution

// solution required