Closed ndjapic closed 3 months ago
There is a typo in the section "Implicit Treaps" of the document "Treaps.mdx". In the cpp code of the split function both key and val are used. They should be the same, like in the next code of the same function that follow it.
key
val
can you link to the relevant lines in the Github file?
line 215 and 219. both use an undeclared variable "key", it should be "val"
There is a typo in the section "Implicit Treaps" of the document "Treaps.mdx". In the cpp code of the split function both
key
andval
are used. They should be the same, like in the next code of the same function that follow it.