Search

다리를 지나는 트럭

알고리즘
스택/큐
플랫폼
프로그래머스
JCF
상태
해결
생성 일시
2024/01/29 08:54
최종 편집 일시
2024/01/31 06:24

문제 설명

해결과정

Solution.java

class Solution { public int solution(int bridge_length, int weight, int[] truck_weights) { int answer = 0; return answer; } }
Java
복사