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,24 +1,46 @@
---
id: 59713bd26bdeb8a594fb9413
title: 计算硬币
title: Count the coins
challengeType: 5
videoUrl: ''
forumTopicId: 302238
dashedName: count-the-coins
---
# --description--
<p> <a href='https://en.wikipedia.org/wiki/United_States' title='链接:https//en.wikipedia.org/wiki/United_States'>美国</a>货币有四种常见硬币: </p>季度25美分硬币10美分5美分和便士1美分 <p>有六种方法可以换15美分 </p>一角钱和一角钱一角钱和5便士3镍2镍和5便士一镍和10便士15便士任务 <p>实现一个功能,以确定使用这些普通硬币改变一美元的方式有多少? 1美元= 100美分</p>参考: <a href='http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-11.html#%_sec_Temp_52' title='链接http//mitpress.mit.edu/sicp/full-text/book/book-Z-H-11.html#%_sec_Temp_52'>麻省理工学院出版社的算法</a>
There are four types of common coins in [US](https://en.wikipedia.org/wiki/United_States) currency:
<ul>
<li>quarters (25 cents)</li>
<li>dimes (10 cents)</li>
<li>nickels (5 cents), and</li>
<li>pennies (1 cent)</li>
</ul>
<p>There are six ways to make change for 15 cents:</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>
</ul>
# --instructions--
Implement a function to determine how many ways there are to make change for a dollar using these common coins (1 dollar = 100 cents)
# --hints--
`countCoins`是一个函数。
`countCoins` should be a function.
```js
assert(typeof countCoins === 'function');
```
`countCoints()`应该返回242
`countCoins()` should return 242.
```js
assert.equal(countCoins(), 242);