프로그래머스(32)
-
프로그래머스 C# 머쓱이보다 키 큰 사람
using System; public class Solution { public int solution(int[] array, int height) { int answer = 0; for(int i=0;i height) { answer++; } } return answer; } } 파이썬 ///// def solution(array, height): return sum(1 for a in array if a > height) /////// def solution(array, height): array.append(height) array.sort(reverse=True) return array.index(height) 자바 class Solution { public int solution(int[] ar..
2023.04.11 -
프로그래머스 C# 양꼬치(파이썬, 자바)
using System; public class Solution { public int solution(int n, int k) { if(n 0 && k >= n/10 && k
2023.04.09 -
프로그래머스 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# 양꼬치(파이썬, 자바)
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