2017年12月5日
摘要: 问题描述: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 代码 阅读全文
posted @ 2017-12-05 11:06 gtxvs 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 问题描述: Given an array and a value, remove all instances of that value in-place and return the new length. Do not allocate extra space for another array 阅读全文
posted @ 2017-12-05 11:04 gtxvs 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 问题描述: The Hamming distance between two integers is the number of positions at which the corresponding bits are different. Given two integers x and y, 阅读全文
posted @ 2017-12-05 11:03 gtxvs 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 问题描述: Write a function that takes an unsigned integer and returns the number of ’1' bits it has (also known as the Hamming weight). For example, the 3 阅读全文
posted @ 2017-12-05 11:01 gtxvs 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 问题描述: Given a sorted array, remove the duplicates in-place such that each element appear only once and return the new length. Do not allocate extra sp 阅读全文
posted @ 2017-12-05 10:51 gtxvs 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 问题描述: Given a non-negative integer represented as a non-empty array of digits, plus one to the integer. You may assume the integer do not contain any 阅读全文
posted @ 2017-12-05 10:29 gtxvs 阅读(178) 评论(0) 推荐(0) 编辑