Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bus710] Week 1 #688

Merged
merged 11 commits into from
Dec 13, 2024
20 changes: 20 additions & 0 deletions contains-duplicate/bus710.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// 주어진 배열을 선형 순회 하므로, 시간 복잡도와 공간 복잡도 모두 O(n)일 것으로 생각합니다.

package week01

// 주어진 배열 nums를 순회하며 준비한 맵에 표시를 하되,
// - 키값에 해당하는 값이 없으면 맵의 해당 키값에 true를 저장하고
// - 키값에 해당하는 값이 있으면 즉시 true를 반환.
// - 순회 후에도 반환하지 않은 경우 중복이 발견되지 않았으므로 false를 반환.
func containsDuplicate(nums []int) bool {
dup := make(map[int]bool, 0)
for _, n := range nums {
if _, ok := dup[n]; !ok {
dup[n] = true
} else {
return true
}
}

return false
}
Loading