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.
Yeah, as the guy below said, you are able to write it directly on the return level to get rid of redundant variables that are not used within the method
You don't have to use '()' because multiplication always comes before addition.
You could actually write something like this:
return a * b + 1
Since priority first goes to multiplication.