Files
codeql/python/ql/src/Statements/UnreachableCode.py
2018-11-19 15:10:42 +00:00

6 lines
102 B
Python

import math
def my_div(x, y):
return math.floor(x / y)
remainder = x - math.floor(x / y) * y