다리를 지나는 트럭 썸네일형 리스트형 6/15[문제풀이] 프로그래머스 Lv2 다리를 지나는 트럭 [문제풀이] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 function solution(bridge_length, weight, truck_weights) { let onBridge = new Array(bridge_length - 1).fill(0); onBridge.push(truck_weights.shift()); let count = 1; while (onBridge.reduce((a, b) => a + b) > 0) { onBridge.shift(); if (weight - onBridge.reduce((a, b) => a + b) >= truck_weights[0]) { onBridge.push(t.. 더보기 이전 1 다음