chore(i8n,learn): processed translations

This commit is contained in:
Crowdin Bot
2021-02-06 04:42:36 +00:00
committed by Mrugesh Mohapatra
parent 15047f2d90
commit e5c44a3ae5
3274 changed files with 172122 additions and 14164 deletions

View File

@ -1,21 +1,29 @@
---
id: 5900f3a81000cf542c50febb
title: 问题60素数对设置
title: 'Problem 60: Prime pair sets'
challengeType: 5
videoUrl: ''
forumTopicId: 302172
dashedName: problem-60-prime-pair-sets
---
# --description--
素数3,7,109和673非常值得注意。通过取任何两个素数并以任何顺序连接它们结果将始终是素数。例如取7和1097109和1097都是素数。这四个素数的总和792代表具有此属性的一组四个素数的最低和。找到一组五个素数的最低和其中任何两个素数连接以产生另一个素数。
The primes 3, 7, 109, and 673, are quite remarkable. By taking any two primes and concatenating them in any order the result will always be prime. For example, taking 7 and 109, both 7109 and 1097 are prime. The sum of these four primes, 792, represents the lowest sum for a set of four primes with this property.
Find the lowest sum for a set of five primes for which any two primes concatenate to produce another prime.
# --hints--
`euler60()`应返回26033。
`primePairSets()` should return a number.
```js
assert.strictEqual(euler60(), 26033);
assert(typeof primePairSets() === 'number');
```
`primePairSets()` should return 26033.
```js
assert.strictEqual(primePairSets(), 26033);
```
# --seed--