LeetCode 코딩 문제 2020/12/12 - Single Number
[문제]
Given a non-empty array of integers nums, every element appears twice except for one. Find that single one.
Follow up: Could you implement a solution with a linear runtime complexity and without using extra memory?
요약) 요소중 중복되지 않는 숫자를
return
하라.
[풀이]
var singleNumber = function(nums) {
const set = [...new Set(nums)];
const length = set.length
for(let i = 0; i < length; i++) {
const index = nums.indexOf(set[i]);
if(nums.indexOf(set[i], index + 1) < 0) return set[i];
}
};
set
로 중복을 먼저 제거하고, set
요소들중 numbs
배열에서 제일 먼저 찾아진 index
다음에 index
가 없으면 그 수를 return
.
var singleNumber = function(nums) {
for(let i = 0; i < nums.length; i++) {
const index = nums.indexOf(nums[i]);
if(nums.indexOf(nums[i], index + 1) < 0) return nums[i];
}
};
생각해보니 굳이 set
를 쓸 필요가 없어서 자체적으로 찾게끔 refactoring
.
var singleNumber = function(nums) {
for(let i = 0; i < nums.length; i++) {
if(nums.indexOf(nums[i], nums.indexOf(nums[i]) + 1) < 0) return nums[i];
}
};
index
를 따로 변수로 만들어도 한 번만 쓰이니까 그냥 없애서 더 짧게.
Author And Source
이 문제에 관하여(LeetCode 코딩 문제 2020/12/12 - Single Number), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@hemtory/LeetCode20201212
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
var singleNumber = function(nums) {
const set = [...new Set(nums)];
const length = set.length
for(let i = 0; i < length; i++) {
const index = nums.indexOf(set[i]);
if(nums.indexOf(set[i], index + 1) < 0) return set[i];
}
};
set
로 중복을 먼저 제거하고, set
요소들중 numbs
배열에서 제일 먼저 찾아진 index
다음에 index
가 없으면 그 수를 return
.
var singleNumber = function(nums) {
for(let i = 0; i < nums.length; i++) {
const index = nums.indexOf(nums[i]);
if(nums.indexOf(nums[i], index + 1) < 0) return nums[i];
}
};
생각해보니 굳이 set
를 쓸 필요가 없어서 자체적으로 찾게끔 refactoring
.
var singleNumber = function(nums) {
for(let i = 0; i < nums.length; i++) {
if(nums.indexOf(nums[i], nums.indexOf(nums[i]) + 1) < 0) return nums[i];
}
};
index
를 따로 변수로 만들어도 한 번만 쓰이니까 그냥 없애서 더 짧게.
Author And Source
이 문제에 관하여(LeetCode 코딩 문제 2020/12/12 - Single Number), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@hemtory/LeetCode20201212저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)