246. Strobogrammatic Number
Last updated
Was this helpful?
Last updated
Was this helpful?
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).
1 <= num.length <= 50
num
consists of only digits.
num
does not contain any leading zeros except for zero itself.
GeeksforGeeks
ProgramCreek
YouTube
Input: num = "69"
Output: true