From 3df82c004466daf2c975ce8d351cc107bce223d2 Mon Sep 17 00:00:00 2001 From: Inanc Gumus Date: Mon, 18 Mar 2019 16:23:05 +0300 Subject: [PATCH] fix: bouncing ball exercises --- 18-project-bouncing-ball/exercises/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/18-project-bouncing-ball/exercises/README.md b/18-project-bouncing-ball/exercises/README.md index 98dd590..1209331 100644 --- a/18-project-bouncing-ball/exercises/README.md +++ b/18-project-bouncing-ball/exercises/README.md @@ -1,13 +1,13 @@ # Exercises -1. **[Adjust the width and height automatically](https://github.com/inancgumus/learngo/tree/master/18-bouncing-ball-project/exercises/01-width-and-height)** +1. **[Adjust the width and height automatically](https://github.com/inancgumus/learngo/tree/master/18-project-bouncing-ball/exercises/01-width-and-height)** In this exercise, your goal is getting the width and height of the terminal screen from your operating system (instead of setting the width and height manually). -2. **[Previous positions](https://github.com/inancgumus/learngo/tree/master/18-bouncing-ball-project/exercises/02-previous-positions)** +2. **[Previous positions](https://github.com/inancgumus/learngo/tree/master/18-project-bouncing-ball/exercises/02-previous-positions)** Let's optimize the program once more. This time you're going to optimize the clearing off the previous positions. -3. **[Use a single dimensional slice]()** +3. **[Use a single dimensional slice](https://github.com/inancgumus/learngo/tree/master/18-project-bouncing-ball/exercises/03-single-dimensional)** For the board slice, instead of using a multi-dimensional slice, let's use a single-dimensional slice. In this exercise, you'll understand and deeply internalize why I've used a multi-dimensional board slice. \ No newline at end of file