Skip to content

[BUG] - Incorrect solution is getting accepted #32533

@Ayxsh03

Description

@Ayxsh03

LeetCode Username

Ayxsh07

Problem Number, Title, and Link

  1. 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

Image

Additional context

No response

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions