Our goal was to create a program which takes only one parameter (source file) containing a list of Tetriminos to assemble. Program needs to arrange every Tetriminos with each others in order to make the smallest possible square!
We split this project into three parts:
Run make from terminal and use following command ./fillit [source file].
tetriminos.txt:
....
##..
.#..
.#..
....
####
....
....
#...
###.
....
....
....
##..
.##.
....
execution:
~ make
~ ./fillit tetriminos.txt
DDAA
CDDA
CCCA
BBBB
OR you can just paste this on your terminal: git clone https://github.com/kurval/42-fillit.git fillit && cd fillit && make && ./fillit tetriminos.txt
For more details view my GitHub