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
- Math
- Method
- Class
- two pointers
- string
- SQL
- hash table
- 파이썬
- dynamic programming
- java
- database
- Tree
- 구현
- Counting
- 코테
- Number Theory
- Stack
- greedy
- Matrix
- array
- 코딩테스트
- simulation
- 자바
- Data Structure
- implement
- geometry
- Binary Tree
- bit manipulation
- Binary Search
- sorting
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.1] 없는 숫자 더하기 본문
1. Input
1) 0부터 9까지의 숫자 중 일부가 들어있는 정수 배열 numbers
2. Output
1) numbers에서 찾을 수 없는 0부터 9까지의 숫자를 모두 찾아 더한 수
3. Constraint
1) 1 ≤ numbers의 길이 ≤ 9
2) 0 ≤ numbers의 모든 원소 ≤ 9
3) numbers에는 중복된 원소가 없다.
4. Example
Input: numbers={5,8,0,4,6,7,9} -> Output: 6
설명: 0부터 9까지의 숫자 중 numbers에 없는 수는 1,2,3이므로 합인 6을 반환
5. Code
1) 첫 코드(2022/??)
// 0부터 9까지의 합은 45
// 없는 숫자의 합 = 45 - 있는 숫자의 합
int sum = 45;
for(int i=0 ; i<numbers.length ; i++)
sum -= numbers[i];
return sum;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.1] 숫자 문자열과 영단어 (0) | 2022.11.14 |
---|---|
[프로그래머스/Lv.1] 부족한 금액 계산하기 (0) | 2022.11.11 |
[프로그래머스/Lv.1] 최소직사각형 (0) | 2022.11.09 |
[프로그래머스/Lv.1] 나머지가 1이 되는 수 찾기 (0) | 2022.11.09 |
[프로그래머스/Lv.0] A로 B 만들기 (0) | 2022.11.09 |