vault backup: 2023-10-30 10:55:49

This commit is contained in:
Louis Gallet 2023-10-30 10:55:49 +01:00
parent 98353b4b7a
commit 3befd5bcb4
Signed by: lgallet
SSH Key Fingerprint: SHA256:qnW7pk4EoMRR0UftZLZQKSMUImbEFsiruLC7jbCHJAY
2 changed files with 4 additions and 21 deletions

View File

@ -7,14 +7,6 @@
"id": "f6fad86667169cdd",
"type": "tabs",
"children": [
{
"id": "424b516a4faa9ad5",
"type": "leaf",
"state": {
"type": "empty",
"state": {}
}
},
{
"id": "ab0d8956c63542fc",
"type": "leaf",
@ -27,8 +19,7 @@
}
}
}
],
"currentTab": 1
]
}
],
"direction": "vertical"

14
Exam.md
View File

@ -1,16 +1,8 @@
## Multiple insertion
```
# let rec remove_x x = function
# let split sep = function
| [] -> []
| e::t ->
if (e = x) then
remove_x x t
else e::remove_x x t
val remove_x: 'a -> 'a list -> 'a list
# let rec remove_duplicates = function
| [] -> []
| e::t -> remove_duplicates (remove_x e)::t
| e::t ->
let aux
```