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

881 B

id challengeType title videoUrl localeTitle
5900f4e11000cf542c50fff3 5 Problem 372: Pencils of rays Problema 372: Lápis de Raios

Description

Seja R (M, N) o número de pontos de rede (x, y) que satisfazem M

Nota: representa a função floor.

Instructions

Tests

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

Challenge Seed

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

euler372();

Solution

// solution required