Last updated
Was this helpful?
Last updated
Was this helpful?
https://leetcode.com/problems/strobogrammatic-number-ii
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:
Example 2:
Constraints:
1 <= n <= 14