The total is technically the sum of all possible multiplications between a start and n. The highest value, which is what he meant, is indeed, x * n where n is the highest possible value of n.
The if (slen < eLen) checks whether the ending string is longer than the str. If it is, it's impossible for str to end with ending, because a shorter string cannot contain a longer suffix. This is a necessary optimization that saves computation time by immediately returning false in such cases.
You are correct in observing that this condition indirectly accounts for empty strings, but its main purpose is to enforce a size constraint for the suffix check.
If you want to pick a fight, then yes, bad naming. It is the "last multiple of x." Would you prefer that? "last_value" would be more concise.
this is bad naming 'total' this is not total, this is last element value.
nobody:
that one guy:
that makes you start questioning a reason of your existence and reflect on sense of your life with one line of code KEKW.
Sorry! New to Codewars as of today, I didn't think those who haven't solved it yet could see the comments.
Please use spoiler flag next time.
This comment is hidden because it contains spoiler information about the solution
Nice!
The total is technically the sum of all possible multiplications between a start and n. The highest value, which is what he meant, is indeed, x * n where n is the highest possible value of n.
aaaaaaaaaaaaaaaaaaaaaaah, ok thanks a lot
The if (slen < eLen) checks whether the ending string is longer than the str. If it is, it's impossible for str to end with ending, because a shorter string cannot contain a longer suffix. This is a necessary optimization that saves computation time by immediately returning false in such cases.
You are correct in observing that this condition indirectly accounts for empty strings, but its main purpose is to enforce a size constraint for the suffix check.
why the first conditional? even if they are not the same size, first string may end matching the second, is it for the empty strings cases?
I never knew there was an endsWith method! So concise, love it
This comment is hidden because it contains spoiler information about the solution
total will be equal n, not x * n
arguments is a built-in feature in JavaScript that is only available within all non-arrow functions.
Loading more items...