34 lines
1.1 KiB
Markdown
34 lines
1.1 KiB
Markdown
---
|
|
id: 5e46f8d6ac417301a38fb92d
|
|
title: Rock Paper Scissors
|
|
challengeType: 10
|
|
forumTopicId: 462376
|
|
dashedName: rock-paper-scissors
|
|
---
|
|
|
|
# --description--
|
|
|
|
For this challenge, you will create a program to play Rock, Paper, Scissors. A program that picks at random will usually win 50% of the time. To pass this challenge your program must play matches against four different bots, winning at least 60% of the games in each match.
|
|
|
|
You can access [the full project description and starter code on Replit](https://replit.com/github/freeCodeCamp/boilerplate-rock-paper-scissors).
|
|
|
|
After going to that link, fork the project. Once you complete the project based on the instructions in 'README.md', submit your project link below.
|
|
|
|
We are still developing the interactive instructional part of the machine learning curriculum. For now, you will have to use other resources to learn how to pass this challenge.
|
|
|
|
# --hints--
|
|
|
|
It should pass all Python tests.
|
|
|
|
```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.
|
|
```
|