Prime Factors
Problem Description
- You are going to create a function which takes an integer argument and returns a list of its prime factors in numerical, ascending order.
- Use Test Driven Development
- Think carefully about your test cases; remember, you can not test an infinite range.
Example Output
- Given
12
->1,2,3