Last active
January 12, 2020 21:04
-
-
Save mabj/c82a039ed45d0749ede70679aa342296 to your computer and use it in GitHub Desktop.
This file contains 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
data = [0, 1, 2, 2, 2, 2, 0, 1, 2, 2, 2, 2] | |
lrs = calculate_lrs(data) # [0, 1, 2, 2, 2, 2] <= First While | |
while lst: | |
lrs = calculate_lrs() | |
# [2, 2] <= Second while |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment