[24 / 3 / 14]
I wrote a program that converts numbers into lists with zeroes and lists in them that represent the prime factorization of the numbers in scheme.
For instance
0 = 0
( 0) = 1
( (0)) = 2
( 0 (0) ) = 3
(((0))) = 4
( 0 0 (0) ) = 5
ect
I think I want to write a program that draws them as trees now.
For instance
0 = 0
( 0) = 1
( (0)) = 2
( 0 (0) ) = 3
(((0))) = 4
( 0 0 (0) ) = 5
ect
I think I want to write a program that draws them as trees now.