-
Notifications
You must be signed in to change notification settings - Fork 382
Closed
Description
LeetCode Username
Ayxsh07
Problem Number, Title, and Link
- Strictly Palindromic Number https://leetcode.com/problems/strictly-palindromic-number/
Bug Category
Missing test case (Incorrect/Inefficient Code getting accepted because of missing test cases)
Bug Description
in Strictly Palindromic Number, returning false is accepted with the best time and space complexity. The testcases are insufficient, as it is getting accepted.
Language Used for Code
Java
Code used for Submit/Run operation
class Solution {
public boolean isStrictlyPalindromic(int n) {
return false;
}
}Expected behavior
We needed to write a code that checks if n is strictly pallindromic, but all the testcases results are false.
Screenshots
Additional context
No response
Metadata
Metadata
Assignees
Labels
No labels