Skip to content

Instantly share code, notes, and snippets.

@grimm26
Created January 10, 2023 02:45
Show Gist options
  • Save grimm26/fb3e01ee25acb8c1888455f517203551 to your computer and use it in GitHub Desktop.
Save grimm26/fb3e01ee25acb8c1888455f517203551 to your computer and use it in GitHub Desktop.
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