Strobogrammatic Number II
Input: n = 2
Output: ["11","69","88","96"]Solution
class Solution {
public List<String> findStrobogrammatic(int n) {
}
}Last updated
Input: n = 2
Output: ["11","69","88","96"]class Solution {
public List<String> findStrobogrammatic(int n) {
}
}Last updated