在刷算法题的时候碰到了一个问题
Given an array of integers A sorted in non-decreasing order, return an array of the squares of each number, also in sorted non-decreasing order.
B = []
for n in A:
B.append(n**2)
return B.sort()
和
B = []
for n in A:
B.append(n**2)
return sorted(B)
输出结果不一样是为什么
第一个B.sort()输出是[]空列表