일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- logging
- string
- C#
- WPF
- nullable
- windows10
- csharp
- File
- Process
- coding-test
- 코딩테스트
- windows
- tls
- ListView
- git
- Binding
- Github
- log
- algorithm
- chashtag
- programmers
- Microsoft
- IValueConverter
- Visual Studio
- convert
- Coding
- commit
- dotNET
- mysql
- .net
Archives
- Today
- Total
CHashtag
[프로그래머스] [Java] 없는 숫자 더하기 본문
반응형
안녕하세요.
오늘은 프로그래머스 코딩테스트 연습 문제인 "없는 숫자 더하기" 을 풀어보았습니다.
문제 링크
https://programmers.co.kr/learn/courses/30/lessons/86051
문제 풀이 방법
이번 문제의 풀이는 주석으로 달아두었습니다.
또한 이번 문제는 평균 약 0.02ms 정도의 속도로 테스트를 통과하였습니다.
class Solution {
public int solution(int[] numbers) {
// 1 ~ 9 까지의 합인 45에서 numbers의 합을 빼주도록 한다.
int answer = 45;
for(int number : numbers) {
answer -= number;
}
return answer;
}
}
반응형
'알고리즘' 카테고리의 다른 글
[프로그래머스] [C#] 신고 결과 받기 (0) | 2022.02.27 |
---|---|
[프로그래머스] [C#] 거리두기 확인하기 (0) | 2022.01.10 |
[프로그래머스] [C#] 없는 숫자 더하기 (0) | 2021.09.14 |
[프로그래머스] [C#] 상호평가 (0) | 2021.09.09 |
[프로그래머스] [Java] 부족한 금액 계산하기 (2) | 2021.08.02 |