Replies: 3 comments 1 reply
-
Not a kata, but a port of this Fast Fourier Transform implementation:
The 2D FFT implementation:
|
Beta Was this translation helpful? Give feedback.
1 reply
-
On line 2 of fft, we know that N is an integer, so a faster way to test it's a power of 2 is to see if n&n-1 is zero. I believe this is easier in ivy than in APL.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Yesterday I tried fizzbuzz. Here's the best I found, but I suspect there's a nicer solution to be found.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'd be great if we could share code katas that are fun to solve with ivy, with the solutions possibly.
I'm gonna start with the obvious:
I'll update with a list of problems I had compiled for a work meetup of apl-like languages. In the meantime, please feel free to complete.
Beta Was this translation helpful? Give feedback.
All reactions