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.
edit: nvm
haha, thanks I got it to work now :)
This comment is hidden because it contains spoiler information about the solution
I'm getting this issue: "AttributeError: 'NoneType' object has no attribute 'sort' "
Does this mean that the sort function doesnt work? (programming in python). The test cases work on my IDE BTW
Works, thanks!
my code works on my IDE but for some reason it keeps failing the tests. Anybody know why? Heres my code:
seq = [1,1,1,1]
def dict_mult(lista):
binary = [1,2,4,8]
listc = []
for i in range(0, len(lista)):
listc.append(lista[i]*binary[i])
dict_mult(seq)