문자열 형식으로 주어지는 시간을 초단위로 바꾸는 발상을 하는 데에 오래 걸렸지만 그 발상을 하고 나서 구현하는 것은 어렵지 않았다.기본적인 자바 메소드를 다룰 수 있으면 풀 수 있는 문제였다.class Solution { public String solution(String video_len, String pos, String op_start, String op_end, String[] commands) { // 연산하기 편하게 초 단위 int로 변경 int intVideoLen = stringToSec(video_len); int intPos = stringToSec(pos); int intOpStart = stringToSec(op_start); int intOpEnd = stringT..