Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update task.md #183

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions MastermindAdvanced/introduction/task.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Congratulations! The basic version of the **Bulls and cows (Mastermind)** game is ready!
But it's not interesting to play it if the hidden word is always the same, is it?
However, it's not interesting to play if the hidden word is always the same, is it?

<p align="center">
<img src="../../utils/src/main/resources/images/part1/warmup/game.png" alt="Bulls and cows" width="400"/>
Expand All @@ -8,21 +8,21 @@ But it's not interesting to play it if the hidden word is always the same, is it
### Project description

You have already implemented a basic version of the **Bulls and cows (Mastermind)** game.
In this project we will learn two more concepts and improve the game by generating
In this project, we will introduce two more concepts and improve the game by generating
a random secret and adding checks for user inputs.

We put the default implementation of the game into the `Main.kt` file from the last step of the previous task,
feel free to replace it by your own implementation.
We put the default implementation of the game into the `Main.kt` file from the last step of the previous task.
Feel free to replace it with your own implementation.

### Lesson topics

- `random` function;
- generating random strings;
- built-in functions to work with List collection.
- built-in functions for working with the List collection.

### Project example

![The game's example](../../utils/src/main/resources/images/part1/warmup/game.gif "The game's example")

In order for the picture to fit, additional line breaks were added.
To make the picture fit, additional line breaks were added.
You don't need to add them when solving the task.
Loading