320x100
728x90
704. Binary Search : https://leetcode.com/problems/binary-search/submissions/
class Solution {
fun search(nums: IntArray, target: Int): Int {
//nums에 특정 값 있는 지 확인
var check = nums.contains(target)
if(check == true){
var idx = nums.indexOf(target) //배열의 인덱스를 확인
return idx
}
else{
return -1
}
}
}
Runtime: 324 ms, faster than 74.40% of Kotlin online submissions for Binary Search.
Memory Usage: 40.1 MB, less than 74.40% of Kotlin online submissions for Binary Search.
1) contains : 특정 값 포함 여부를 확인
2) indexOf : 특정 데이터 인덱스 값을 확인
코틀린 공부하기..
728x90
반응형
'코딩테스트' 카테고리의 다른 글
[kotlin] leetcode - Squares of a Sorted Array (0) | 2022.04.27 |
---|---|
[kotlin] leetcode - Search Insert Position (0) | 2022.04.27 |
[python/연결리스트] leetcode - Add Two Numbers 문제 (0) | 2022.04.20 |
[python/Array] leetcode - two sum 문제 (0) | 2022.04.18 |
[C언어] 두 디렉토리 비교 (0) | 2022.03.28 |