13 lines
228 B
Python
13 lines
228 B
Python
class NumberUtils:
|
|
|
|
@staticmethod
|
|
def max_ele(a, b):
|
|
"""
|
|
返回非空最大值
|
|
"""
|
|
if not a:
|
|
return b
|
|
if not b:
|
|
return a
|
|
return max(int(a), int(b))
|