freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-450-hypocycloid-and...

786 B

id challengeType title videoUrl localeTitle
5900f52e1000cf542c510041 5 Problem 450: Hypocycloid and Lattice points Задача 450: точки гипоциклоиды и решетки

Description

undefined

Instructions

undefined

Tests

tests:
  - text: <code>euler450()</code> должен вернуть 583333163984220900.
    testString: 'assert.strictEqual(euler450(), 583333163984220900, "<code>euler450()</code> should return 583333163984220900.");'

Challenge Seed

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

euler450();

Solution

// solution required