250x250
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 |
Tags
- activity
- viewmodel
- Navigation
- Button
- intent
- TEST
- appbar
- 앱바
- DART
- scroll
- Kotlin
- tabbar
- textview
- data
- livedata
- LifeCycle
- Compose
- binding
- 안드로이드
- android
- 계측
- CustomScrollView
- ScrollView
- 테스트
- Coroutines
- textfield
- drift
- Flutter
- Dialog
- 앱
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 |