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.
It doesn't work the way mrchose described.
| * 2 splits the string into tuple of 2 characters. str = 'abba' = [ ('a', 'b'), ('b', 'a') ]
| * 1 encloses each character of the string in a tuple. str = 'abba' = [ ('a'), ('b'), ('b'), ('a') ]
When I put 'group by' and 'order by' statements out of the crosstab function, and select 1 as the value of corresponded category inside crosstab, grouping and summing outside - some of my result values are less than in the results. When I do the same query but with mentioned statements inside the crosstab function I pass the tests. Am I running into some common mistake?
wite -> wRite
This is awesome!
thanks
Equivalent to
iter_s = iter(s); zip(iter_s, iter_s)
orzip(s[::2], s[1::2])
This comment is hidden because it contains spoiler information about the solution
have wrote solution like this for python 3
have wrote solution like this for python 3
have wrote solution like this for python 3
have wrote solution like this for python 3