palindrome-check-uses-slice-reversal

Status: IN

Palindrome detection uses `word == word[::-1]`, creating a full reversed copy (O(m) space) rather than a two-pointer in-place comparison.

Source: entries/2026/06/06/find-first-palindromic-string-in-the-array-solution.md

Depended on by

JSON