Palindrome detection: Difference between revisions

Line 2,491:
'''Find the non-palindrome in the list:'''
<lang PowerShell>
($strings | Where-Object IsPalindrome -EQ $false | Format-Table -AutoSize).Text
</lang>
{{Out}}
<pre>
Nope.
Text IsPalindrome
---- ------------
Nope. False
</pre>
 
308

edits