Skip to content

Instantly share code, notes, and snippets.

View midsonlajeanty's full-sized avatar
🎯
Focusing

Louis Midson Lajeanty midsonlajeanty

🎯
Focusing
View GitHub Profile
@midsonlajeanty
midsonlajeanty / tetris_simulator.py
Created October 23, 2023 22:07
Tetris Simulator - Python | L4 | ESIH
import os
import time
import random
BLANK_CASE:str = ' '
FILLED_CASE:str = '🧱'
BOARD_SIZE: int = 6
clear = lambda: os.system('clear')