Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 테스트
- TEST
- binding
- textview
- tabbar
- LifeCycle
- scroll
- CustomScrollView
- Kotlin
- 앱바
- ScrollView
- 계측
- appbar
- android
- Button
- Compose
- Flutter
- textfield
- activity
- livedata
- data
- Navigation
- Dialog
- viewmodel
- intent
- drift
- DART
- 앱
- 안드로이드
- Coroutines
Archives
- Today
- Total
Study Record
[프로그래머스] Level1 - 없는 숫자 더하기 본문
728x90
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> numbers) {
int answer = 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9;
for(int i=0; i<numbers.size(); i++){
answer -= numbers[i];
}
return answer;
}
728x90
'알고리즘' 카테고리의 다른 글
[프로그래머스] Level2 - 기능개발 (0) | 2021.12.03 |
---|---|
[프로그래머스] Level1 - 음양 더하기 / 내적 (0) | 2021.12.03 |
[프로그래머스] Level2 - 카카오프렌즈 컬러링북 (0) | 2021.12.02 |
[프로그래머스] Level1 - 크레인 인형뽑기 게임 <스택> (0) | 2021.12.02 |
[프로그래머스] Level2 - 오픈채팅방 (0) | 2021.12.01 |