Determine if a string has all unique characters: Difference between revisions

m
→‎{{header|R}}: Syntax highlighting.
(Added solution for Action!)
m (→‎{{header|R}}: Syntax highlighting.)
Line 3,241:
=={{header|R}}==
Most of this is adapted from [[Determine if a string has all the same characters#R]].
<lang rrsplus>isAllUnique<-function(string)
{
strLength<-nchar(string)
Line 3,339:
This is a duplicate of the character at index 10.
[1] FALSE</pre>
 
=={{header|Racket}}==
 
331

edits