반응형
https://leetcode.com/explore/featured/card/top-interview-questions-easy/92/array/578/
Given an integer array nums, return true if any value appears at least twice in the array, and return false if every element is distinct.
class Solution {
fun containsDuplicate(nums: IntArray): Boolean {
// nums에서 중복제거 된 배열을 정의하고
var distinctArr = nums.distinct()
// 배열 길이 비교해서 차이가 있으면 true
if (nums.size != distinctArr.size)
return true
else
return false
}
}
반응형
'IT > 알고리즘' 카테고리의 다른 글
leetcode] Single Number / Kotlin (1) | 2024.10.16 |
---|---|
leetcode] Rotate Array / Kotlin (0) | 2024.10.16 |
89] 프로그래머스 x 사이의 개수 Kotlin (0) | 2023.12.15 |
88] Kotlin 프로그래머스 문자열 바꿔서 찾기 (0) | 2023.12.11 |
88] 프로그래머스 숨어있는 숫자의 덧셈 (1) Kotlin (0) | 2023.10.23 |
댓글