2024-06-29发表2025-01-15更新LeetCode每日一题几秒读完 (大约63个字)0次访问2710. 移除字符串中的尾随零最长特殊序列 II 难度: easy 原始链接: https://leetcode.cn/problems/remove-trailing-zeros-from-a-string 标签: 模拟 解法一: 模拟go1234567func removeTrailingZeros(num string) string { i := len(num) - 1 for i > 0 && num[i] == '0' { i-- } return num[:i+1]} 2710. 移除字符串中的尾随零https://wuhunyu.top/leetcode/2024/06/remove-trailing-zeros-from-a-string/index.html作者wuhunyu发布于2024-06-29更新于2025-01-15许可协议#模拟