Created
January 10, 2023 02:45
-
-
Save grimm26/fb3e01ee25acb8c1888455f517203551 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
unique_count = 0 | |
last_value = "" | |
for x in some_list: | |
if x != last_value: | |
unique_count += 1 | |
last_value = x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment