Skip to content

Commit 4549a68

Browse files
author
ssuu
committed
add space
1 parent c2f53f1 commit 4549a68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contains-duplicate/gguussuu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ var containsDuplicate = function(nums) {
66
//Set은 중복된 값을 허용하지 않기 때문에, 배열을 Set으로 변환한 후 길이를 비교하여 중복 여부를 확인
77
const hasDuplicate = new Set(nums).size !== nums.length;
88
return hasDuplicate;
9-
};
9+
};

0 commit comments

Comments
 (0)