Handbook
Glossary
candidate? ( n -- ? )
Vocabulary
project-euler
.
052
.
private
Inputs
n
an
object
Outputs
?
an
object
Definition
USING:
combinators.short-circuit
math
math.functions
;
IN:
project-euler.052.private
:
candidate?
( n -- ? )
{
[
odd?
]
[
3
divisor?
]
}
1&&
;