Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,4 @@
|
|||
fn factors n =
|
||||
(
|
||||
return (for i = 1 to n+1 where mod n i == 0 collect i)
|
||||
)
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
factors 3
|
||||
#(1, 3)
|
||||
factors 7
|
||||
#(1, 7)
|
||||
factors 14
|
||||
#(1, 2, 7, 14)
|
||||
factors 60
|
||||
#(1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30, 60)
|
||||
factors 54
|
||||
#(1, 2, 3, 6, 9, 18, 27, 54)
|
||||
Loading…
Add table
Add a link
Reference in a new issue