▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/cells-in-a-range-on-an-excel-sheet/submissions/ Cells in a Range on an Excel Sheet - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com Input: s = "K1:L2" Output: ["K1","K2","L1","L2"] 문자열 s가 주어진다. s는 엑셀과 같이 행(row)은 1부터 n까지의 정수로 나타내고 열(co..