Skip to content

Latest commit

 

History

History
 
 

prime-numbers

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Prime factorials

Create a program that given a number it returns a list decomposing that number in primme numbmers, that when you multiply them it gives back the original nummber.

  • 10 → [2, 5]
  • 55 → [5, 11]
  • 60 → [2, 2, 3, 5]