C# 알고리즘 코딩(프로그래머스)(36)
-
프로그래머스 C# 중복된 숫자 개수(파이썬, 자바)
using System; public class Solution { public int solution(int[] array, int n) { int answer = 0; for(int i = 0; i
2023.04.08 -
프로그래머스 C# 배열의 평균값(Linq, Average)
using System; public class Solution { public double solution(int[] numbers) { double answer = 0; for (int i = 0; i = 0 && numbers[i]
2023.04.06 -
프로그래머스 C# 양꼬치(파이썬, 자바)
using System; public class Solution { public int solution(int n, int k) { if(n 0 && k >= n/10 && k
2023.04.05 -
프로그래머스 C# 짝수의 합(파이썬, 자바)
public class Solution { public int solution(int n) { int answer = 0; int k; if(n0) { for(k=1; k
2023.04.03 -
프로그래머스 C# 중복된 숫자 개수(foreach 파이썬, 자바)
using System; public class Solution { public int solution(int[] array, int n) { int answer = 0; for(int i = 0; i
2023.04.02 -
프로그래머스 C# 각도기(3항 연산자, 파이썬, 자바)
using System; public class Solution { public int solution(int angle) { if(angle 0) { return 1; } //0에서 90도는 1을 리턴 else if(angle == 90) { return 2; } // 90도면 2리턴 else if(angle 90) { return 3; } //90도 초과 180도 미만이면 3을 리턴 else return 4; // 나머지(180도)는 4를 리턴 } } ////// using System; public class Solution { public int solution(int angle) { int answer = angle < 90 ? 1 : angle == 90 ? 2 ..
2023.04.02