Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 유니온파인드
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- c++
- 카카오
- 서버개발캠프
- 삼성 #코테 #2020상반기 #c++
- 알고리즘
- 소감
- 식단
- 코딩테스트
- 1편
- 카카오인턴
- 중반부
- BaekJoon
- Union-find
- Algorithm
- Smilegate
- 보석쇼핑
- LIS #Algorithm #요소추적
- 백준
- 스마일게이트
- BFS
- 코테
- 투포인터
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 35. Search Insert Position 본문
반응형
간단한 배열 문제였다.
[메인 로직]
배열을 처음부터 탐색해서 target값과 같거나 큰 값을 찾으면 break하면 된다.
단, 그러한 값을 못 찾았을 경우는 target이 배열에 존재하는 값들보다 큰 경우이기 때문에 idx+1을 해주어야 한다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
class Solution {
public:
int searchInsert(vector<int>& nums, int target) {
int idx = 0;
bool check = false;
for(int i=0; i<nums.size(); i++){
idx = i;
if(target==nums[i] || target<nums[i]){
check = true;
break;
}
}
if(check==false){
idx++;
}
return idx;
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 264. Ugly Number II (0) | 2021.01.26 |
---|---|
LeetCode : 67. Add Binary (0) | 2021.01.24 |
64. Minimum Path Sum (0) | 2021.01.22 |
LeetCode : 63. Unique Paths II (0) | 2021.01.22 |
LeetCode : 62. Unique Paths (0) | 2021.01.22 |
Comments