Files
freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-290-digital-signature.md

18 lines
238 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: 5900f48f1000cf542c50ffa1
title: 问题290数字签名
challengeType: 5
videoUrl: ''
---
# --hints--
`euler290()`应该返回20444710234716470。
```js
assert.strictEqual(euler290(), 20444710234716470);
```
# --solutions--