* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
2.1 KiB
id, title, challengeType, videoUrl, dashedName
id | title | challengeType | videoUrl | dashedName |
---|---|---|---|---|
bd7158d8c442eddfaeb5bd1c | 建立一个西蒙游戏 | 3 | build-a-simon-game |
--description--
目标: 构建一个功能类似于此的CodePen.io应用程序: https : //codepen.io/freeCodeCamp/full/obYBjE 。完成以下用户故事 。使用您需要的任何库或API。给它你自己的个人风格。 用户故事: 我看到一系列随机按钮。 用户故事: 每当我正确输入一系列按钮时,我会看到同一系列的按钮按下,但还有一个额外的步骤。 用户故事: 当按下一系列按钮时,以及当我亲自按下按钮时,我都会听到与每个按钮相对应的声音。 用户故事: 如果我按下了错误的按钮,我会收到通知,告知我已经这样做了,然后再按一系列按钮开始提醒我模式,这样我就可以再试一次。 用户故事: 我可以看到当前按钮按下的步数。 用户故事: 如果我想重新启动,我可以点击一个按钮来执行此操作,游戏将返回一个步骤。 用户故事: 我可以在严格的模式下玩,如果我按下按钮错误,它会通知我我已经这样做了,并且游戏重新开始按下一系列按钮。 用户故事: 我可以通过一系列正确的20个步骤来赢得游戏。我被告知我的胜利,然后比赛重新开始。 提示: 在这里**,**您可以使用每个按钮的MP3: https://s3.amazonaws.com/freecodecamp/simonSound1.mp3
, https://s3.amazonaws.com/freecodecamp/simonSound2.mp3
, https://s3.amazonaws.com/freecodecamp/simonSound3.mp3
, https://s3.amazonaws.com/freecodecamp/simonSound4.mp3
。如果卡住,请记得使用Read-Search-Ask 。完成后,单击“我已完成此挑战”按钮并包含指向CodePen的链接。您可以通过Facebook上的朋友分享您的项目反馈。
--solutions--
// solution required