Skip to content

Instantly share code, notes, and snippets.

@DanilSuits
Created December 5, 2020 20:41
Show Gist options
  • Save DanilSuits/b7ac1be0f7d0f8bc1964fe42b86aa89e to your computer and use it in GitHub Desktop.
Save DanilSuits/b7ac1be0f7d0f8bc1964fe42b86aa89e to your computer and use it in GitHub Desktop.
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