일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 독일어
- 세브란스
- 스택
- 구현
- sql
- BFS
- 부주상골
- 백준
- ChatGPT
- SWIFT
- 부주상골수술
- 독일어독학
- 코딩테스트
- 카카오인턴
- 부주상골증후군
- 카카오코테
- dp
- 코테
- 독학
- 분할정복
- IOS
- 리눅스
- DFS
- SQLD
- 부주상골수술후기
- c++
- 롯데정보통신
- istringstream
- 프로그래머스
- 카카오인턴십
Archives
- Today
- Total
슈뢰딩거의 고등어
[프로그래머스] 없는 숫자 더하기 본문
https://programmers.co.kr/learn/courses/30/lessons/86051
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> numbers) {
int answer = 0;
vector <int> checker(10);
for(int i=0; i<numbers.size(); i++) {
checker[numbers[i]] += 1;
}
for (int i=0; i<10; i++) {
if (checker[i] ==0)
answer += i;
}
return answer;
}
다른 사람 코드
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> numbers) {
int answer = 45;
for (int i = 0 ; i < numbers.size() ; i++)
answer -= numbers[i];
return answer;
}
0 ~ 9 의 총합을 미리 저장해놓고 들어오는 값들을 빼는 방법
숫자가 중복되어 들어오지 않는 가정하에 유용한 방법인듯하다
'알고리즘' 카테고리의 다른 글
[프로그래머스] 3진법 뒤집기 (0) | 2022.02.08 |
---|---|
[백준] 12865 평범한 배낭 (0) | 2022.02.08 |
[프로그래머스] 신규아이디 추천 (0) | 2022.02.08 |
[프로그래머스] 문자열 압축 (0) | 2022.02.08 |
[프로그래머스] 행렬 테두리 회전하기 (0) | 2022.02.08 |
Comments