RosettaCodeData/Task/Longest-increasing-subsequence/Maple/longest-increasing-subsequence-3.maple

5 lines
102 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
L := [3, 2, 6, 4, 5, 1];
M := [0, 8, 4, 12, 2, 10, 6, 14, 1, 9, 5, 13, 3, 11, 7, 15];
LIS(L);
LIS(M);