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