Files
freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/project-euler/problem-317-firecracker.chinese.md
Kristofer Koishigawa b3213fc892 fix(i18n): chinese test suite (#38220)
* fix: Chinese test suite

Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working.

* fix: ran script, updated testStrings and solutions
2020-03-03 18:49:47 +05:30

1.0 KiB
Raw Blame History

id, challengeType, title, videoUrl, localeTitle
id challengeType title videoUrl localeTitle
5900f4aa1000cf542c50ffbc 5 Problem 317: Firecracker 问题317鞭炮

Description

爆竹在离地面100 m的高度处爆炸。 它分为许多非常小的碎片,它们向各个方向移动。 它们都具有相同的初始速度20 m / s。

我们假设碎片在没有空气阻力的情况下在g = 9.81 m / s2的均匀重力场中运动。

找到碎片到达地面之前通过的区域的体积单位m3。 将答案四舍五入到小数点后四位。

Instructions

Tests

tests:
  - text: <code>euler317()</code>应该返回1856532.8455。
    testString: assert.strictEqual(euler317(), 1856532.8455);

Challenge Seed

function euler317() {
  // Good luck!
  return true;
}

euler317();

Solution

// solution required