Skip to content

Instantly share code, notes, and snippets.

@colonelpanic8
Created August 21, 2024 20:12
Show Gist options
  • Save colonelpanic8/fb07984e085b0e68ee6194fb0e5ea0db to your computer and use it in GitHub Desktop.
Save colonelpanic8/fb07984e085b0e68ee6194fb0e5ea0db to your computer and use it in GitHub Desktop.
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