로딩
요청 처리 중입니다...

JAVA_프로그래머스_PCCE 기출문제 6번 물 부족

 JAVA_프로그래머스_PCCE 기출문제 6번 물 부족

JAVA_프로그래머스_PCCE 기출문제 6번 물 부족 풀이 class Solution { public int solution(int storage, int usage, int[] change) { int total_usage = 0; for(int i=0; i storage){ return i; } } return -1; } } 자바 연산자 우선순위가 잘 안먹히는 문제같음 * 출처 https://school.programmers.co.kr/learn/courses/30/lessons/340202...