Created
August 21, 2024 20:12
-
-
Save colonelpanic8/fb07984e085b0e68ee6194fb0e5ea0db to your computer and use it in GitHub Desktop.
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
import enum | |
class SlashType(enum.Enum): | |
FORWARD = enum.auto() | |
BACKWARD = enum.auto() | |
def count_regions_in_slashes_grid(slashes_grid: list[list[SlashType]]): | |
pass | |
assert (count_regions_in_slashes_grid([ | |
[SlashType.FORWARD, SlashType.BACKWARD, SlashType.FORWARD], | |
[SlashType.BACKWARD, SlashType.FORWARD, SlashType.BACKWARD, | |
]]) == 6) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment