3163. 字符串压缩 III
原文英文,约300词,阅读约需1分钟。发表于: 。Video description: https://youtu.be/92AmZ5xF7yI Problem | Java Solution Given a string word, compress it using the following algorithm: Begin with an empty string comp. While word is not...
给定一个字符串,通过移除最多9个相同字符的前缀,将其长度和字符添加到结果字符串中。例如,'abcde' 压缩为 '1a1b1c1d1e','aaaaaaaaaaaaaabb' 压缩为 '9a5a2b'。