Search posts...
class Solution { public int[] solution(int money) { int[] answer = {money/5500,money%5500}; return answer; } }
class Solution { public int[] solution(int money) { return new int[] { money / 5500, money % 5500 }; } }
silver