반응형
문제 링크
https://leetcode.com/problems/search-in-rotated-sorted-array/
내 코드
public int search(int[] nums, int target) {
int count = 0;
for(int i = 0; i < nums.length; i++) {
if(nums[i] == target) return count;
count++;
}
return -1;
}
결과
누가봐도 퀵정렬 문제였지만 혹시 몰라 그냥 for문을 돌려 보았더니 왠일...
상위권에 안착하였다.....
모든 코테가 이런식이면 너무 행복할것 같다.
반응형
'Algorithm' 카테고리의 다른 글
[Algorithm][Array] 문제 풀이 #9 - Sliding Window Maximum (0) | 2022.07.19 |
---|---|
[Algorithm][Array] 문제 풀이 #8 - Search in Rotated Sorted Array II (0) | 2022.07.19 |
[Algorithm][Array] 문제 풀이 #6 - Maximum Subarray (0) | 2022.07.18 |
[Algorithm][Array] 문제 풀이 #5 - Contains Duplicate (0) | 2022.07.17 |
[Algorithm][Array] 문제 풀이 #4 - Product of Array Except Self (0) | 2022.07.17 |