Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 292 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 292 Bytes

Polyominoes in Python

Calculate the number of unique 'ominoes' exist for a given number of squares.

1: 1

#

2: 1

##

3: 2

      #
###   ##

4: 5

       #     ##    ##    #
####   ###   ##   ##    ###

Run with python3 omino.py (no external dependencies).