Skip to content

Instantly share code, notes, and snippets.

@bcowell
Last active March 29, 2019 18:11
Show Gist options
  • Save bcowell/849b72d7b92f1f599702c2e71e538820 to your computer and use it in GitHub Desktop.
Save bcowell/849b72d7b92f1f599702c2e71e538820 to your computer and use it in GitHub Desktop.
Flipping an image
def flipAndInvertImage(self, A: List[List[int]]) -> List[List[int]]:
return [[int(not i) for i in row[::-1]] for row in A]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment