Tagged Questions
3
votes
1answer
161 views
Why do I not get the correct answer for Euler 56 in J?
I've solved 84 of the Project Euler problems, mostly in Haskell. I am now going back and trying to solve in J some of those I already solved in Haskell, as an exercise in learning J.
Currently, I am ...
2
votes
2answers
168 views
How to refactor this in J?
My newbie solution to Project Euler #1
+/((0=3|1+i.1000-1) +. (0=5|1+i.1000-1)) * (1+i.1000-1)
I know that this can be refactored, and transformed into a function, i don't know how to do it, and I ...
1
vote
2answers
171 views
How to refactor this in J?
Here is a different approach for the Project Euler #1 solution:
+/~.(3*i.>.1000%3),5*i.>.1000%5
How to refactor it?