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.
"Take 2 strings s1 and s2 including only letters from a to z."
the input is a string
ignore the unhelpful comment above
a recursive function is a function in which the function itself is called within the function definition
However this solution is a list comprehension, with syntax
[value if condition(s) else value for value in iterable]
I'm sure you don't need this information anymore, but posting this just in case anybody else comes across this with the same question