Menu

gitpiper

all_unique python Code Snippet in 2024

listbeginner

Last Updated: 24 March 2024

Checks if all the values in a list are unique.

  • Use set() on the given list to keep only unique occurrences.
  • Use len() to compare the length of the unique values to the original list.
def all_unique(lst): return len(lst) == len(set(lst))
x = [1, 2, 3, 4, 5, 6] y = [1, 2, 2, 3, 4, 5] all_unique(x) # True all_unique(y) # False

python snippet similar to all_unique For You in March 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️