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.
!-)
Seems to be the oldest thread here from ten years ago, but I don't see it resolved in the code.
Please correct me if I'm mistaken:
In the Haskell property test suite though there is
gen15 = choose (0, 16)
which generates polynomsx^16
as the range ofchoose
is inclusive.I like it :)
It's not a performance kata ( though
qbsort
is definitely a performance algorithm! ), so the solution is valid. But it should not be upvoted, at least not for Best Practice. :]I agree. It feels strange to talk about n log n complexity in the context of BogoSort, but as we are assuming a quantum computation runtime environment, your criticism makes sense. :) Unfortunately I can't revert the solution.
Sorting the list in
O(n log n)
to check if it is sorted, which can be done inO(n)
, is not a Best Practice.( People, please stop upvoting such solutions. )
Random Perl tests produce strings with less than two characters.
Thanks, Johan, I'll try!
I think
++
is killing you ( it'sO(n²)
if recursed into left-associatively ).Could you express the result sequence entirely and directly in terms of itself only, like
fibonacci = 0 : 1 : zipWith (+) fibonacci (tail fibonacci)
?Very cool kata, thanks! My Haskell solution seems to work correctly, but times out with the big test set. Generating 10k entries takes 2-7 seconds on my machine, which is not very satisfying. Currently I have no idea what to improve. :/
You don't like it?
ok but why
yep, that worked. might prevent some downvotes.
dummy issue to force an unpublish for now
Loading more items...