Files
2022-01-20 20:30:18 +01:00

34 lines
1.4 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5e46f8d6ac417301a38fb92d
title: じゃんけん
challengeType: 10
forumTopicId: 462376
dashedName: rock-paper-scissors
---
# --description--
このチャレンジでは、じゃんけんするプログラムを作成します。 ランダムに選択するプログラムの勝率は、通常は 50% になります。 このチャレンジに合格するには、プログラムで 4 つの異なるボットを相手に試合を行う必要があり、各試合で 60 以上の勝率を達成しなければなりません。
[Replit でプロジェクトの詳細とスターターコード](https://replit.com/github/freeCodeCamp/boilerplate-rock-paper-scissors)にアクセスできます。
このリンクにアクセスした後、プロジェクトをフォークしてください。 'README.md' の指示に基づいてプロジェクトを完了したら、下記にプロジェクトのリンクを送信してください。
機械学習カリキュラム向けの対話型教育パートを引き続き開発中です。 現在、このチャレンジに合格する方法を学ぶには他の資料を活用する必要があります。
# --hints--
すべての Python テストに合格する必要があります。
```js
```
# --solutions--
```py
# Python 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.
```