Created
December 5, 2020 20:41
-
-
Save DanilSuits/b7ac1be0f7d0f8bc1964fe42b86aa89e 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
def sut(lines): | |
seat_ids = [357] | |
return max(seat_ids) | |
lines = ["FBFBBFFRLR\n"] | |
answer = sut(lines) | |
assert 357 == answer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment