chore(i18n,learn): processed translations (#44866)

This commit is contained in:
camperbot
2022-01-22 20:38:20 +05:30
committed by GitHub
parent d039479e66
commit 43a2a0a395
324 changed files with 2907 additions and 2916 deletions

View File

@ -1,6 +1,6 @@
---
id: 59713bd26bdeb8a594fb9413
title: Count the coins
title: 硬貨を数える
challengeType: 5
forumTopicId: 302238
dashedName: count-the-coins
@ -8,51 +8,51 @@ dashedName: count-the-coins
# --description--
There are four types of common coins in [US](https://en.wikipedia.org/wiki/United_States) currency:
[米国](https://en.wikipedia.org/wiki/United_States) 通貨には4種類の共通硬貨があります。
<ul>
<li>quarters (25 cents)</li>
<li>dimes (10 cents)</li>
<li>nickels (5 cents), and</li>
<li>pennies (1 cent)</li>
<li>25セント硬貨</li>
<li>10セント硬貨</li>
<li>5セント硬貨</li>
<li>1セント硬貨</li>
</ul>
<p>There are six ways to make change for 15 cents:</p>
<p>15セントを両替するには6つの組み合わせがあります。</p>
<ul>
<li>A dime and a nickel</li>
<li>A dime and 5 pennies</li>
<li>3 nickels</li>
<li>2 nickels and 5 pennies</li>
<li>A nickel and 10 pennies</li>
<li>15 pennies</li>
<li>10セント硬貨1枚と5セント硬貨1枚</li>
<li>10セント硬貨1枚と1セント硬貨5枚</li>
<li>5セント硬貨3枚</li>
<li>5セント硬貨2枚と1セント硬貨5枚</li>
<li>5セント硬貨1枚と1セント硬貨10枚</li>
<li>1セント硬貨15枚</li>
</ul>
# --instructions--
Implement a function to determine how many ways there are to make change for a given input, `cents`, that represents an amount of US pennies using these common coins.
米国の1セント硬貨である `cents` での入力値を、共通硬貨を使用して両替する場合、いくつの組み合わせがあるかを求める関数を作成します。
# --hints--
`countCoins` should be a function.
`countCoins` という関数です。
```js
assert(typeof countCoins === 'function');
```
`countCoins(15)` should return `6`.
`countCoins(15)` `6` を返します。
```js
assert.equal(countCoins(15), 6);
```
`countCoins(85)` shouls return `163`.
`countCoins(85)` `163` を返します。
```js
assert.equal(countCoins(85), 163);
```
`countCoins(100)` should return `242`.
`countCoins(100)` `242` を返します。
```js
assert.equal(countCoins(100), 242);