返回介绍

solution / 0200-0299 / 0246.Strobogrammatic Number / README_EN

发布于 2024-06-17 01:04:02 字数 2843 浏览 0 评论 0 收藏 0

246. Strobogrammatic Number

中文文档

Description

Given a string num which represents an integer, return true _if_ num _is a strobogrammatic number_.

A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down).

 

Example 1:

Input: num = "69"
Output: true

Example 2:

Input: num = "88"
Output: true

Example 3:

Input: num = "962"
Output: false

 

Constraints:

  • 1 <= num.length <= 50
  • num consists of only digits.
  • num does not contain any leading zeros except for zero itself.

Solutions

Solution 1

class Solution:
  def isStrobogrammatic(self, num: str) -> bool:
    d = [0, 1, -1, -1, -1, -1, 9, -1, 8, 6]
    i, j = 0, len(num) - 1
    while i <= j:
      a, b = int(num[i]), int(num[j])
      if d[a] != b:
        return False
      i, j = i + 1, j - 1
    return True
class Solution {
  public boolean isStrobogrammatic(String num) {
    int[] d = new int[] {0, 1, -1, -1, -1, -1, 9, -1, 8, 6};
    for (int i = 0, j = num.length() - 1; i <= j; ++i, --j) {
      int a = num.charAt(i) - '0', b = num.charAt(j) - '0';
      if (d[a] != b) {
        return false;
      }
    }
    return true;
  }
}
class Solution {
public:
  bool isStrobogrammatic(string num) {
    vector<int> d = {0, 1, -1, -1, -1, -1, 9, -1, 8, 6};
    for (int i = 0, j = num.size() - 1; i <= j; ++i, --j) {
      int a = num[i] - '0', b = num[j] - '0';
      if (d[a] != b) {
        return false;
      }
    }
    return true;
  }
};
func isStrobogrammatic(num string) bool {
  d := []int{0, 1, -1, -1, -1, -1, 9, -1, 8, 6}
  for i, j := 0, len(num)-1; i <= j; i, j = i+1, j-1 {
    a, b := int(num[i]-'0'), int(num[j]-'0')
    if d[a] != b {
      return false
    }
  }
  return true
}

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

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

发布评论

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