RosettaCodeData/Task/Longest-common-subsequence/PowerShell/longest-common-subsequence-3.ps1

2 lines
77 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
Get-Lcs -ReferenceObject @(1,2,3,4) -DifferenceObject @(1,2,2,4,5,3,3,3,2,4)