返回介绍

solution / 0200-0299 / 0247.Strobogrammatic Number II / README_EN

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

247. Strobogrammatic Number II

中文文档

Description

Given an integer n, return all the strobogrammatic numbers that are of length n. You may return the answer in any order.

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

 

Example 1:

Input: n = 2
Output: ["11","69","88","96"]

Example 2:

Input: n = 1
Output: ["0","1","8"]

 

Constraints:

  • 1 <= n <= 14

Solutions

Solution 1

class Solution:
  def findStrobogrammatic(self, n: int) -> List[str]:
    def dfs(u):
      if u == 0:
        return ['']
      if u == 1:
        return ['0', '1', '8']
      ans = []
      for v in dfs(u - 2):
        for l, r in ('11', '88', '69', '96'):
          ans.append(l + v + r)
        if u != n:
          ans.append('0' + v + '0')
      return ans

    return dfs(n)
class Solution {
  private static final int[][] PAIRS = {{1, 1}, {8, 8}, {6, 9}, {9, 6}};
  private int n;

  public List<String> findStrobogrammatic(int n) {
    this.n = n;
    return dfs(n);
  }

  private List<String> dfs(int u) {
    if (u == 0) {
      return Collections.singletonList("");
    }
    if (u == 1) {
      return Arrays.asList("0", "1", "8");
    }
    List<String> ans = new ArrayList<>();
    for (String v : dfs(u - 2)) {
      for (var p : PAIRS) {
        ans.add(p[0] + v + p[1]);
      }
      if (u != n) {
        ans.add(0 + v + 0);
      }
    }
    return ans;
  }
}
class Solution {
public:
  const vector<pair<char, char>> pairs = {{'1', '1'}, {'8', '8'}, {'6', '9'}, {'9', '6'}};

  vector<string> findStrobogrammatic(int n) {
    function<vector<string>(int)> dfs = [&](int u) {
      if (u == 0) return vector<string>{""};
      if (u == 1) return vector<string>{"0", "1", "8"};
      vector<string> ans;
      for (auto& v : dfs(u - 2)) {
        for (auto& [l, r] : pairs) ans.push_back(l + v + r);
        if (u != n) ans.push_back('0' + v + '0');
      }
      return ans;
    };
    return dfs(n);
  }
};
func findStrobogrammatic(n int) []string {
  var dfs func(int) []string
  dfs = func(u int) []string {
    if u == 0 {
      return []string{""}
    }
    if u == 1 {
      return []string{"0", "1", "8"}
    }
    var ans []string
    pairs := [][]string{{"1", "1"}, {"8", "8"}, {"6", "9"}, {"9", "6"}}
    for _, v := range dfs(u - 2) {
      for _, p := range pairs {
        ans = append(ans, p[0]+v+p[1])
      }
      if u != n {
        ans = append(ans, "0"+v+"0")
      }
    }
    return ans
  }
  return dfs(n)
}

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

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

发布评论

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