编写一个方法,找出两个数字a
和b
中最大的那一个。不得使用if-else或其他比较运算符。
示例:
输入: a = 1, b = 2 输出: 2
示例代码1:
class Solution(object):
def maximum(self, a, b):
"""
:type a: int
:type b: int
:rtype: int
"""
li = []
li.append(a)
li.append(b)
li.sort(reverse=True)
return li[0]
这里想到了列表的排序,利用列表的sort方法对列表进行排序,再把最大数取出来
示例代码2:
class Solution(object):
def maximum(self, a, b):
"""
:type a: int
:type b: int
:rtype: int
"""
return ((a+b)+abs(a-b))/2