HTMLify
LeetCode- A Number After a Double Reversal - Python
Views: 514 | Author: abh
1 2 3 4 | class Solution: def isSameAfterReversals(self, num: int) -> bool: if not num: return True return num % 10 |