freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/project-euler/problem-372-pencils-of-rays...

865 B

id challengeType title videoUrl localeTitle
5900f4e11000cf542c50fff3 5 Problem 372: Pencils of rays

Description

Пусть R (M, N) - число точек решетки (x, y), которые удовлетворяют условию M

Примечание: представляет функцию пола.

Instructions

undefined

Tests

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

Challenge Seed

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

euler372();

Solution

// solution required