Created
August 21, 2024 20:10
-
-
Save colonelpanic8/f926efe3d79381a8bf055e485ffc8656 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment