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.
done
Couldn't agree more, we aren't Math majors here.
added to the description, thanks :)
Description is not clever, Thanks for the pic, It helps me to understand the question, but anyway I solved this question by finding the pattern.
Aren't mathematics fundamental?
My method was pretty possibly the most brute forcey you could go. I wrote an equation to find which numbers let you skip, but didn't condense it appropriately. Also, it doesn't always work. Once I finished, I resubmitted some odd 20 times to get lucky numbers.
Hi, I have not examined every step of your code, but I can see your
FindWord
helper function was hard-coded to search for10
words in memory. Meanwhile, each player could recall up to2000
different four-letter words. So just use thesize_t n
parameter (which supplies you with the number of words in players' memories per that test) to correct the search of that function. Best of luck!State the language when reporting an issue, please. Is it C?