Every line of 'greatest integer function in python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
4 def greatest_digit(n): 5 max_digit = int(n % 10) 6 7 while n: 8 if max_digit < n % 10: 9 max_digit = n % 10 10 else: 11 max_digit = max_digit 12 n /= 10 13 return max_digit