Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-266-pseudo-square-root.chinese.md
Oliver Eyton-Williams 61460c8601 fix: insert blank line after ```
search and replace ```\n< with ```\n\n< to ensure there's an empty line
before closing tags
2020-08-16 04:45:20 +05:30

57 lines
969 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
title: 'Problem 266: Pseudo Square Root'
videoUrl: ''
localeTitle: 问题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>