Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-266-pseudo-square-root.md
Oliver Eyton-Williams dec409a4bd fix: s/localeTitle/title/g
2020-10-06 23:10:08 +05:30

56 lines
922 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f4771000cf542c50ff89
challengeType: 5
videoUrl: ''
title: 问题266伪平方根
---
## Description
<section id="description"> 12的除数是1,2,3,4,6和12. 12的最大除数不超过12的平方根是3.我们将称为整数n的最大除数它不超过n的伪平方根PSR的平方根。可以看出PSR3102= 47。 <p>设p是190以下质数的乘积。求PSRpmod 1016。 </p></section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler266()</code>应该返回1096883702440585。
testString: assert.strictEqual(euler266(), 1096883702440585);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function euler266() {
// Good luck!
return true;
}
euler266();
```
</div>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>