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
- DP
- math
- oracle
- 코테
- binary search
- 코딩테스트
- 프로그래머스
- 문자열
- SWEA
- 알고리즘
- MySQL
- BOJ
- BFS
- 러닝일지
- 시뮬레이션
- priorityqueue
- 이분탐색
- Java
- db
- SQL
- 운동기록
- COS PRO
- dfs
- 문제해결
- 자바
- 건강
- 문제풀이
- 투포인터
- 백준
- greedy
Archives
- Today
- Total
슈콩
[프로그래머스] Lv.1 없는 숫자 더하기 본문
[문제]
https://school.programmers.co.kr/learn/courses/30/lessons/86051
프로그래머스
SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프
programmers.co.kr
[소스 코드]
class Solution {
public int solution(int[] numbers) {
int answer = 0;
boolean[] num = new boolean[10];
for(int i=0;i<numbers.length;i++){
num[numbers[i]] = true;
}
for(int i=1;i<=9;i++){
if(!num[i]) answer += i;
}
return answer;
}
}'Algorithms > Programmers' 카테고리의 다른 글
| [프로그래머스] Lv.1 음양 더하기 (0) | 2026.04.06 |
|---|---|
| [프로그래머스] 약수의 합 (0) | 2025.11.08 |
| [프로그래머스] 최소직사각형 (0) | 2025.10.31 |
| [프로그래머스] 나머지 1이 되는 수 찾기 (0) | 2025.10.26 |
| [프로그래머스] x만큼 간격이 있는 n개의 숫자 (0) | 2025.10.25 |