Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
That was
f()
this isfoo()
! 😏def f():
a = [1,2,3,4,5]
b = [4,5,6,7,8]
return list(set(a)-set(b))
nope (well, sort of): try this with an empty seq. ;p
A clean substitute for the builtin functions