프로그래머스 C# 머쓱이보다 키 큰 사람
2023. 4. 11. 02:08ㆍC# 알고리즘 코딩(프로그래머스)
using System;
public class Solution {
public int solution(int[] array, int height) {
int answer = 0;
for(int i=0;i<array.Length;i++)
{
if(array[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[] array, int height) {
int answer = 0;
for(int i : array)
{
if(i > height) answer++;
}
return answer;
}
}
'C# 알고리즘 코딩(프로그래머스)' 카테고리의 다른 글
프로그래머스 C# 직각삼각형 출력하기(파이썬, 자바) (0) | 2023.04.15 |
---|---|
프로그래머스 C# 배열 뒤집기(파이썬, 자바) (0) | 2023.04.14 |
프로그래머스 C# 배열 안에 있는 수를 2배씩 하기 (0) | 2023.04.10 |
프로그래머스 C# 양꼬치(파이썬, 자바) (0) | 2023.04.09 |
프로그래머스 C# 중복된 숫자 개수(파이썬, 자바) (0) | 2023.04.08 |