vote up 0 vote down star

Here is a different approach for the Project Euler #1 solution:

+/~.(3*i.>.1000%3),5*i.>.1000%5

How to refactor it?

flag

Did you check project euler forum for problem #1? projecteuler.net/index.php?section=forum&id=1/… – Macarse Oct 12 at 23:57
I got this code from there. But the forum is locked. – Jader Dias Oct 13 at 0:04

2 Answers

vote up 1 vote down check
[:+/@~.@,3 5([*i.@>.@%~)]

usage example:

f =: [:+/@~.@,3 5([*i.@>.@%~)]
f 1000

or

+/~.,3 5([*i.@>.@%~)1000


%~                        = 4 : 'y % x'
i.@>.@%~                  = 4 : 'i. >. y % x'
[*i.@>.@%~                = 4 : 'x * i. >. y % x'
3 5([*i.@>.@%~)]          = 3 : '3 5 * i. >. y % 3 5'
[:+/@~.@,3 5([*i.@>.@%~)] = 3 : '+/ ~. , 3 5 * i. >. y % 3 5'
link|flag
this is legible for you? I am still trying to figure out each step of the refactoring... – Jader Dias Oct 23 at 22:07
thanks for the last edit, that was clarifying – Jader Dias Oct 25 at 12:04
vote up 1 vote down

Here is another approach, using a simple, generic verb

multiplesbelow =: 4 : 'I. 0 = x | i.y'
+/ ~. ,3 5 multiplesbelow"0 [ 1000
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.