
[Programmers/Java/Lv.1/문자열] 84.[PCCP 기출문제] 1번 / 동영상 재생기
·
👨💻 Coding Test/Programers
문제 설명 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 나의 풀이class Solution { public String solution(String video_len, String pos, String op_start, String op_end, String[] commands) { int videoLen = toSecond(video_len); int cur = toSecond(pos); int opStart = toSecond(op_start); int opEnd = toSecond(op_end); if (opStart videoLen)..