Tetris bag

05. February 2016

Since I did not get any submissions for the Workshopper Challenge I will make this challenge a lot more technical, so you guys will actually feel challenged. Since all of you are probably nineteens kids, you all know Tetris. It is a popular belief that the “tetromino” pieces you are given in a game of Tetris are not randomly selected. What really happens is that all seven pieces are placed into a “bag”. A piece is randomly removed from the bag and presented to the player. This process is repeated until the bag is empty.

Your challenge is to reproduce this. For the first part of this challenge you will only need to focus on the algorithm of randomly removing elements from the bag and filling it once it’s empty. There is one limitation: Repetition of pieces will not be more then twice the same. So you can get twice the same piece but never 3 times the same.

For now you can make the output just log the piece which needs to be dropped, next week we will explore the Tetris game some more. Output a string signifying 50 tetromino pieces given to the player using the random bag system. This will be printed on a single line. Some code to get you started can be found inside this codepen.

The pieces will be represented by letters for now:

  • O
  • I
  • S
  • Z
  • L
  • J
  • T

See the Pen bEmqpK by DailyJavascript (@DailyJavascript) on CodePen.

Submissions can be sent to this Google Form..

Don’t forget to submit before next Friday.

Happy coding.