프로그래머스 C# 머쓱이보다 키 큰 사람

2023. 4. 11. 02:08C# 알고리즘 코딩(프로그래머스)

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;
    }
}