You are given a string
sconsisting of lowercase English letters.Construct a binary string by replacing each character in
swith the 8-bit binary representation of its ASCII value, including leading zeros, while preserving the original order of the characters.Return
trueif the resulting binary string is a palindrome. Otherwise, returnfalse.
1 | class Solution { |