Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 245 Bytes

README.md

File metadata and controls

7 lines (5 loc) · 245 Bytes

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]