Skip to content

Latest commit

 

History

2 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 

Repository files navigation

Factorize a positive integer number into its prime factors.

For example:

 2 -> [2]
 3 -> [3]
 4 -> [2,2]
 6 -> [2,3]
 9 -> [3,3]
12 -> [2,2,3]
15 -> [3,5]

[Source: http://cyber-dojo.org/]

About

Prime Factors

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors