摘要: 比较简单的模拟题。#905class Solution(object): def sortArrayByParity(self, A): """ :type A: List[int] :rtype: List[int] """ ret = [] for i in A: if i % 2 ... 阅读全文
posted @ 2019-03-08 09:17 miuc 阅读(137) 评论(0) 推荐(0) 编辑