2021-05-05 10:13:49 -07:00
|
|
|
|
---
|
|
|
|
|
id: 5e44412c903586ffb414c94c
|
2021-07-02 18:45:29 +05:30
|
|
|
|
title: 算術格式化
|
2021-05-05 10:13:49 -07:00
|
|
|
|
challengeType: 10
|
2021-07-02 18:45:29 +05:30
|
|
|
|
forumTopicId: 462359
|
2021-05-05 10:13:49 -07:00
|
|
|
|
dashedName: arithmetic-formatter
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# --description--
|
|
|
|
|
|
2021-07-02 18:45:29 +05:30
|
|
|
|
創建一個函數,該函數接收屬一個字符串列表,每個字符串代表一個算數問題,並返回垂直並排排列的問題。
|
2021-05-05 10:13:49 -07:00
|
|
|
|
|
2021-07-02 18:45:29 +05:30
|
|
|
|
你可以[在 Replit 上查看整個項目的具體描述和初始代碼](https://replit.com/github/freeCodeCamp/boilerplate-arithmetic-formatter)。
|
2021-05-05 10:13:49 -07:00
|
|
|
|
|
2021-07-02 18:45:29 +05:30
|
|
|
|
訪問此鏈接後,fork 這個項目。 當你根據 “README.md” 中的說明完成了項目,請在下方提交你的項目鏈接。
|
2021-05-05 10:13:49 -07:00
|
|
|
|
|
2021-07-02 18:45:29 +05:30
|
|
|
|
我們仍在開發 Python 課程的交互式教學部分。 目前,freeCodeCamp.org YouTube 頻道上的一些視頻會教授你這個項目需要的所有技能。
|
2021-05-05 10:13:49 -07:00
|
|
|
|
|
|
|
|
|
<ul> <li>
|
2021-07-02 18:45:29 +05:30
|
|
|
|
<a href='https://www.freecodecamp.org/news/python-for-everybody/'>Python for Everybody 視頻課程</a>(14 小時)
|
2021-05-05 10:13:49 -07:00
|
|
|
|
</li>
|
|
|
|
|
<li>
|
2021-07-02 18:45:29 +05:30
|
|
|
|
<a href='https://www.freecodecamp.org/news/learn-python-basics-in-depth-video-course/'>學習 Python 視頻課程</a>(2 小時)
|
2021-05-05 10:13:49 -07:00
|
|
|
|
</li>
|
|
|
|
|
<ul>
|
|
|
|
|
|
|
|
|
|
# --hints--
|
|
|
|
|
|
2021-07-02 18:45:29 +05:30
|
|
|
|
它應該正確地格式化算術問題並通過所有測試。
|
2021-05-05 10:13:49 -07:00
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
# --solutions--
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
/**
|
|
|
|
|
Backend challenges don't need solutions,
|
|
|
|
|
because they would need to be tested against a full working project.
|
|
|
|
|
Please check our contributing guidelines to learn more.
|
|
|
|
|
*/
|
|
|
|
|
```
|