394
-
[LeetCode] 394. Decode StringLeetCode 2021. 12. 19. 12:05
https://leetcode.com/problems/decode-string/ Decode String - 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 Decode String - Medium 전체 풀이 코드 class Solution { public: string decodeString(string s) { return run(1,s); } string run(int cnt, string s) { string ret="", temp=""; int chk =..