Longest substrings without repeating characters: Difference between revisions

Line 603:
=={{header|FutureBasic}}==
<syntaxhighlight lang="future basic">
local fn substrings(@ t as CFStringRef )
int beg, c, f, rpt, max = 0
for beg = 0 to len(t)//-1
Line 640:
{{out}}
[[File:Longest Substrings without Repeated Letters.png]]
 
=={{header|Go}}==
{{trans|Wren}}
68

edits