Problem 55170. Find all prime factors of the input
Given an input x, find its all prime factors. Return the vector with all factors in ascending order.
Efficiency is the key here.
Example 1:
x = 4
y = [2]
Example 2:
x = 6270
y = [2 3 5 11 19]
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers61
Suggested Problems
-
Back to basics 22 - Rotate a matrix
922 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
12958 Solvers
-
483 Solvers
-
1477 Solvers
-
Return fibonacci sequence do not use loop and condition
711 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!