Logo

Programming-Idioms

History of Idiom 118 > diff from v54 to v55

Edit summary for version 55 by programming-idioms.org:
Admin deletes impl 3266: See impl 1254

Version 54

2020-12-28, 22:44:27

Version 55

2020-12-28, 22:48:50

Idiom #118 List to set

Create set y from list x.
x may contain duplicates. y is unordered and has no repeated values.

Idiom #118 List to set

Create set y from list x.
x may contain duplicates. y is unordered and has no repeated values.

Variables
y,x
Variables
y,x
Code
set(x)