248.Strobogrammatic-Number-III

248. Strobogrammatic Number III

题目地址

https://leetcode.com/problems/strobogrammatic-number-iii/

题目描述

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

Write a function to count the total strobogrammatic numbers that exist in the range of low <= num <= high.

Example:
Input: low = "50", high = "100"
Output: 3 
Explanation: 69, 88, and 96 are three strobogrammatic numbers.

Note:
Because the range might be a large number, the low and high numbers are represented as string.

代码

Approach #1

Approach #2

Time: O(1) && Space: O(1)

Last updated

Was this helpful?