返回介绍

solution / 2700-2799 / 2710.Remove Trailing Zeros From a String / README_EN

发布于 2024-06-17 01:03:01 字数 3047 浏览 0 评论 0 收藏 0

2710. Remove Trailing Zeros From a String

中文文档

Description

Given a positive integer num represented as a string, return _the integer _num_ without trailing zeros as a string_.

 

Example 1:

Input: num = "51230100"
Output: "512301"
Explanation: Integer "51230100" has 2 trailing zeros, we remove them and return integer "512301".

Example 2:

Input: num = "123"
Output: "123"
Explanation: Integer "123" has no trailing zeros, we return integer "123".

 

Constraints:

  • 1 <= num.length <= 1000
  • num consists of only digits.
  • num doesn't have any leading zeros.

Solutions

Solution 1

class Solution:
  def removeTrailingZeros(self, num: str) -> str:
    return num.rstrip("0")
class Solution {
  public String removeTrailingZeros(String num) {
    int i = num.length() - 1;
    while (num.charAt(i) == '0') {
      --i;
    }
    return num.substring(0, i + 1);
  }
}
class Solution {
public:
  string removeTrailingZeros(string num) {
    while (num.back() == '0') {
      num.pop_back();
    }
    return num;
  }
};
func removeTrailingZeros(num string) string {
  i := len(num) - 1
  for num[i] == '0' {
    i--
  }
  return num[:i+1]
}
function removeTrailingZeros(num: string): string {
  let i = num.length - 1;
  while (num[i] === '0') {
    --i;
  }
  return num.substring(0, i + 1);
}
impl Solution {
  pub fn remove_trailing_zeros(num: String) -> String {
    let mut i = num.len() - 1;

    while num.chars().nth(i) == Some('0') {
      i -= 1;
    }

    num[..i + 1].to_string()
  }
}

Solution 2

impl Solution {
  pub fn remove_trailing_zeros(num: String) -> String {
    num.chars()
      .rev()
      .skip_while(|&c| c == '0')
      .collect::<String>()
      .chars()
      .rev()
      .collect::<String>()
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文