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.
Fixed.
The example given in the description has a typo in the class name. It says "SimpleAssebmler" but it should be "SimpleAssembler".
That's 13 in that case.
I honestly don't understand. 13 is prime so it can't be factored into other primes like 2 & 3. How can it be part of the answer?
I suggest you to read the description.
Surely this test case in python is incorrect since 13 is a prime number therefore cannot be factored into primes 2 and 3
primesL = [2,3]
limit = 200
test.assert_equals(count_find_num(primesL, limit), [13, 192])
char two_letters[2] = {a, b}; // << here's your problem
C strings are zero terminated. So allocate 3 chars and add a 0 at the end. Or better yet use string::susbtr.
You're not returning anything from your function.