mirror of
https://github.com/TheAlgorithms/Python.git
synced 2026-03-13 09:50:19 +08:00
Improved Code and removed warnings (#482)
Improved Code and removed warnings
This commit is contained in:
@@ -3,7 +3,7 @@ Problem:
|
||||
The prime factors of 13195 are 5,7,13 and 29. What is the largest prime factor of a given number N?
|
||||
e.g. for 10, largest prime factor = 5. For 17, largest prime factor = 17.
|
||||
'''
|
||||
from __future__ import print_function
|
||||
from __future__ import print_function, division
|
||||
|
||||
import math
|
||||
|
||||
|
||||
Reference in New Issue
Block a user