freeCodeCamp/curriculum/challenges/arabic/08-coding-interview-prep/project-euler/problem-138-special-isoscel...

639 B

id challengeType title videoUrl localeTitle
5900f3f61000cf542c50ff09 5 Problem 138: Special isosceles triangles

Description

undefined

Instructions

undefined

Tests

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

Challenge Seed

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

euler138();

Solution

// solution required