728x90
SMALL

using System;

public class Solution {
    public int[] solution(int money) {
        int[] answer = new int[2];
        answer[0] = money / 5500;
        answer[1] = money % 5500; //남는 돈= 나머지
        
        return answer;
    }
}

 

파이썬

////

 

def solution(money):

    answer = [money // 5500, money % 5500]
    return answer

 

자바

 

class Solution {
    public int[] solution(int money) {
        return new int[] { money / 5500, money % 5500 };
    }
}
728x90

설정

트랙백

댓글