freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-233-lattice-points-...

24 lines
476 B
Markdown
Raw Normal View History

---
id: 5900f4551000cf542c50ff68
title: 问题233圆上的格点
challengeType: 5
videoUrl: ''
---
# --description--
令fN是在通过0,0N00NNN的圆上具有整数坐标的点的数量。可以证明f10000= 36。
所有正整数N≤1011的总和是多少fN= 420
# --hints--
`euler233()`应该返回271204031455541300。
```js
assert.strictEqual(euler233(), 271204031455541300);
```
# --solutions--