lintcode 463.整数排序

class Solution:
    """
    @param A: an integer array
    @return: nothing
    """
    def sortIntegers(self, A):
        # write your code here
        return A.sort()

你可能感兴趣的:(lintcode 463.整数排序)