中等难度 -通过 / -执行
给定一个压缩过后的字符串,请恢复其原始状态。
uncompress('3(ab)') // 'ababab'uncompress('3(ab2(c))') // 'abccabccabcc'
k
始终思考更好的解决办法