chore(i18n,learn): processed translations (#45287)
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
---
|
||||
id: 5900f43f1000cf542c50ff51
|
||||
title: 'Problem 208: Robot Walks'
|
||||
title: 'Problema 208: Passeggiate Robot'
|
||||
challengeType: 5
|
||||
forumTopicId: 301849
|
||||
dashedName: problem-208-robot-walks
|
||||
@ -8,18 +8,22 @@ dashedName: problem-208-robot-walks
|
||||
|
||||
# --description--
|
||||
|
||||
A robot moves in a series of one-fifth circular arcs (72°), with a free choice of a clockwise or an anticlockwise arc for each step, but no turning on the spot.
|
||||
Un robot si muove in una serie di archi di un quinto di cerchio (72°), con la scelta libera di fare l'arco in senso orario o antiorario per ogni step, ma senza potersi girare sul posto.
|
||||
|
||||
One of 70932 possible closed paths of 25 arcs starting northward is
|
||||
Uno dei possibili 70932 percorsi chiusi di 25 archi iniziando verso nord è
|
||||
|
||||
Given that the robot starts facing North, how many journeys of 70 arcs in length can it take that return it, after the final arc, to its starting position? (Any arc may be traversed multiple times.)
|
||||
<img class="img-responsive center-block" alt="percorso chiuso di 25 archi, iniziando verso nord" src="https://cdn.freecodecamp.org/curriculum/project-euler/robot-walks.gif" style="background-color: white; padding: 10px;" />
|
||||
|
||||
Dato che il robot inizia guardando verso nord, quanti viaggi di 70 archi di lunghezza può fare per tornare, dopo l'arco finale, alla sua posizione di partenza?
|
||||
|
||||
**Nota:** Qualsiasi arco può essere attraversato più volte.
|
||||
|
||||
# --hints--
|
||||
|
||||
`euler208()` should return 331951449665644800.
|
||||
`robotWalks()` dovrebbe restituire `331951449665644800`.
|
||||
|
||||
```js
|
||||
assert.strictEqual(euler208(), 331951449665644800);
|
||||
assert.strictEqual(robotWalks(), 331951449665644800);
|
||||
```
|
||||
|
||||
# --seed--
|
||||
@ -27,12 +31,12 @@ assert.strictEqual(euler208(), 331951449665644800);
|
||||
## --seed-contents--
|
||||
|
||||
```js
|
||||
function euler208() {
|
||||
function robotWalks() {
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
euler208();
|
||||
robotWalks();
|
||||
```
|
||||
|
||||
# --solutions--
|
||||
|
Reference in New Issue
Block a user