Find Multipliers of a number

Insert an integer number and choose the complexity of the algorithm in order to understand better how different algorithms impact on the same task.
A higher complexity means more execution time, the complexity is O(√n) by default.
Choose Algorithm and Complexity:
- ATTENTION:
If you choose the worst complexity, so O(n^2), depending on the magnitude of the input, the waiting time to find the multipliers could be very long and could crash the browser.
With the worst complexity, so O(n^2), if you don't want your pc to crash insert numbers with a maximum of 5 digits.

- Complexity time is based on magnitude of the input, so depending on how long the input is, slower functions could be faster than the faster ones.
SEE FUNCTIONS USED
Previous researches: 0