Longest common subsequence: Difference between revisions

Content deleted Content added
→‎{{header|AutoHotkey}}: translation of java
m →‎{{header|AutoHotkey}}: Anchors are case-sensitive
Line 122: Line 122:
</pre>
</pre>
=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==
{{trans|java}} using dynamic programming<br>
{{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