class Solution:
"""
@param A: an integer array
@return: nothing
"""
def sortIntegers(self, A):
# write your code here
return A.sort()
lintcode 463.整数排序
最新推荐文章于 2019-04-25 20:25:17 发布
class Solution:
"""
@param A: an integer array
@return: nothing
"""
def sortIntegers(self, A):
# write your code here
return A.sort()