Determine if a string has all the same characters: Difference between revisions

Content deleted Content added
→‎{{header|zkl}}: flagged as needing improvement.
Line 312:
 
=={{header|zkl}}==
 
{{improve|zkl|<br><br> Output is incorrect about ''consists of a single charcter'' (sic)
<br><br> Output is lacking whether or not the characters are the same (or not)
<br><br> Output is missing what the different character is and where it is in the string
<br><br> Output of the word "unique" is misleading and/or incorrect. <br><br> }}
 
<lang zkl>fcn stringSameness(str){ // Does not handle Unicode
sz,unique,uz := str.len(), str.unique(), unique.len();