240 发简信
IP属地:新疆
  • Resize,w 360,h 240
    2019-05-13 Remove Duplicates from Sorted Array

    1.首先题目要求不能用额外的空间,O(1)解决 2.range(1,len(nums))的范围是[1,len(nums)-1] 3.self.n...

  • Resize,w 360,h 240
    2019-05-13 21 Merge Two Sorted Lists

    题意:合并两个有序链表 思路:1.每一个链表用一个头节点去表示,p = head,head.next相当于是把链表往后遍历,因此除了题目给的需要...

  • Resize,w 360,h 240
    2019-05-08 leetcode 7 Reverse Integer

    1.怎么实现一个数字的反转 2.题目中强调了取值范围,[-2^31,2^31-1] 3.正负数情况如何讨论 res = res * 10 +x%...