rename: bouncing ball

This commit is contained in:
Inanc Gumus
2019-03-18 16:22:06 +03:00
parent 11f71ff7b3
commit 4b8ffe7f63
11 changed files with 0 additions and 0 deletions

View File

@ -0,0 +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)**
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)**
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]()**
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.