9 lines
80 B
Text
9 lines
80 B
Text
|
|
def div_check(x, y)
|
||
|
|
try
|
||
|
|
(x / y)
|
||
|
|
return false
|
||
|
|
catch
|
||
|
|
return true
|
||
|
|
end
|
||
|
|
end
|