Just another update
This commit is contained in:
parent
a25938f123
commit
00a190b0a6
6591 changed files with 94363 additions and 23227 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