feat(content): hidden test cases

This commit is contained in:
2025-08-06 23:21:42 +01:00
parent 8544efb5bf
commit e0bf8cda01
134 changed files with 2075 additions and 0 deletions

View File

@@ -26,6 +26,14 @@ test_cases:
expected: false
- input: { s: "Aa" }
expected: true
- input: { s: "" }
expected: true
- input: { s: ".,!" }
expected: true
- input: { s: "0P" }
expected: false
- input: { s: "Was it a car or a cat I saw?" }
expected: true
description: |
A phrase is a **palindrome** if, after converting all uppercase letters into lowercase letters and removing all non-alphanumeric characters, it reads the same forward and backward. Alphanumeric characters include letters and numbers.