[JAVA][Programmers][PCCP 기출문제] 1번 / 동영상 재생기 🌟🌟
·
Coding Test/Programmers
import java.util.*;class Solution { static int pM, pS; public String solution(String video_len, String pos, String op_start, String op_end, String[] commands) { String answer = ""; int vM, vS, osM, osS, oeM, oeS; String []tmp = video_len.split(":"); vM = Integer.parseInt(tmp[0]); vS = Integer.parseInt(tmp[1]); tmp = pos.split(":"); p..