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.
This comment is hidden because it contains spoiler information about the solution
crazy, I cant even understand the code
I love this solution - it's certainly the most readable!
Impressive and massive pog dude
The rez variable is unnecessary here. Your solution can be presented in a simpler way:
int sum1 = 0;
int sum2 = 0;
for (int i = 0; i < arr1.Length; i++)
{
sum1 += arr1[i];
}
for (int i = 0; i < arr2.Length; i++)
{
sum2 += arr2[i];
}
return sum1 + sum2;
What is this? This solution is too overly active xDD