Objective
Write a program that marks the largest clear square inside a text map.
Steps
$ printf '3 . # x\n....\n....\n....\n' | ./largest_clear_square
xxx.\nxxx.\nxxx.\n
$ printf '2 _ # +\n##\n##\n' | ./largest_clear_square
##\n##\n
Expected files
Allowed functions

Objective
Write a program that marks the largest clear square inside a text map.
Steps
$ printf '3 . # x\n....\n....\n....\n' | ./largest_clear_square
xxx.\nxxx.\nxxx.\n
$ printf '2 _ # +\n##\n##\n' | ./largest_clear_square
##\n##\n
Expected files
Allowed functions

Tests
Run the tests to grade your code