Log in Register Dashboard Temp Share Shortlinks Frames API

HTMLify

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

Comments