Brainteaser Math Two Pointers 2396. Strictly Palindromic Number ¶ Time: $O(1)$ Space: $O(1)$ C++JavaPython 1 2 3 4 5 6class Solution { public: bool isStrictlyPalindromic(int n) { return false; } }; 1 2 3 4 5class Solution { public boolean isStrictlyPalindromic(int n) { return false; } } 1 2 3class Solution: def isStrictlyPalindromic(self, n: int) -> bool: return False Was this page helpful? Thanks for your feedback! Thanks for your feedback! Help us improve this page by using our feedback form.