Contains DuplicateGiven an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at leas...
分类:
其他好文 时间:
2015-07-07 18:50:10
阅读次数:
118
Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the arr...
分类:
其他好文 时间:
2015-07-05 22:29:21
阅读次数:
151
原文 My aunt Jennifer is an actress. She must be at least thirty-five years old. In spite of this, she often appears on the stage as a young girl. Jennifer will have to take part in a new play soon...
分类:
其他好文 时间:
2015-07-04 17:03:49
阅读次数:
136
Given an array of sizen, find the majority element. The majority element is the element that appears more than? n/2 ?times.You may assume that the arr...
分类:
其他好文 时间:
2015-07-01 20:35:32
阅读次数:
184
异或巧用:Single Number
今天刷leetcode,碰到了到题Single Number,觉得解答很巧妙,故记之。。。
题目:
Given an array of integers, every element appears twice except for one. Find that single one.
Note:
Your algorithm should have...
分类:
其他好文 时间:
2015-07-01 12:14:53
阅读次数:
116
Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the arr...
分类:
其他好文 时间:
2015-06-30 12:18:02
阅读次数:
100
题目:Given an array of size n, find the majority element. The majority element is the element that appears more than ? n/2 ? times.
找出数组中出现超过? n/2 ?次的数据
三种解法:
1、参考别人的,很巧的解法
2、插入排序,排序后,nums? n/2 ?必定是出...
分类:
其他好文 时间:
2015-06-28 21:40:06
阅读次数:
145
Description:Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twic...
分类:
其他好文 时间:
2015-06-28 00:04:17
阅读次数:
322
Description: Given an array of integers, every element appears three times except for one. Find that single one.只有一个出现一次的数字,其他的都出现了3次,找出出现一次的那个数字。pub....
分类:
其他好文 时间:
2015-06-28 00:02:00
阅读次数:
111
Description:Given an array of integers, every element appears twice except for one. Find that single one.找出只出现一次的数。public class Solution { public i...
分类:
其他好文 时间:
2015-06-25 00:06:10
阅读次数:
179