tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
|
|
@ -0,0 +1,22 @@
|
|||
let rec fence s = function
|
||||
[] ->
|
||||
if s >= 3 then
|
||||
[[]]
|
||||
else
|
||||
[]
|
||||
|
||||
| x :: xs ->
|
||||
if s mod 2 = 0 then
|
||||
List.map
|
||||
(fun ys -> x :: ys)
|
||||
(fence (s + 1) xs)
|
||||
@
|
||||
fence s xs
|
||||
else
|
||||
List.map
|
||||
(fun ys -> x :: ys)
|
||||
(fence s xs)
|
||||
@
|
||||
fence (s + 1) xs
|
||||
|
||||
let ncsubseq = fence 0
|
||||
Loading…
Add table
Add a link
Reference in a new issue