Longest common subsequence: Difference between revisions

Content added Content deleted
(+ AutoHotkey contributed by Laszlo from ahk forums)
(→‎{{header|AutoHotkey}}: translation of java)
Line 122: Line 122:
</pre>
</pre>
=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==
{{trans|java}} using dynamic programming<br>
ahk forum: [http://www.autohotkey.com/forum/viewtopic.php?t=44657&start=135 discussion]
ahk forum: [http://www.autohotkey.com/forum/viewtopic.php?t=44657&start=135 discussion]
<lang AutoHotkey>lcs(a,b) { ; Longest Common Subsequence of strings, using Dynamic Programming
<lang AutoHotkey>lcs(a,b) { ; Longest Common Subsequence of strings, using Dynamic Programming
Line 150: Line 151:
}
}
Return t
Return t
}</lang>
}</lang>


=={{header|BASIC}}==
=={{header|BASIC}}==