This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PIL import Image | |
def find_islands(image): | |
"""Find islands (cards) in the image.""" | |
width, height = image.size | |
pixels = image.load() | |
visited = set() | |
islands = [] | |
def is_transparent(x, y): |