246. Strobogrammatic Number
Description
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).
Constraints
1 <= num.length <= 50numconsists of only digits.numdoes not contain any leading zeros except for zero itself.
Approach
Links
GeeksforGeeks
ProgramCreek
YouTube
Examples
Input: num = "69"
Output: true
Input: num = "88"
Output: true
Input: num = "962"
Output: false
Input: num = "1"
Output: true
Solutions
Follow up
Last updated
Was this helpful?