From 544fa56a905ed3a376a617e9d9ac4f80bf9822c7 Mon Sep 17 00:00:00 2001 From: vp817 <118466306+vp817@users.noreply.github.com> Date: Fri, 31 Jan 2025 11:56:43 +0300 Subject: [PATCH] Update README.md --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 58acf47..8c46288 100644 --- a/README.md +++ b/README.md @@ -468,26 +468,43 @@ the range list contains the nodes which is the min index and max index for each when inserting you should reduce the amount of nodes there is that is why min and max exists. for example lets say you have an array of min and max nodes(where you must insert them as single since you won't be touching them manually): + `[ + + + + + + + - there shouldn't be any repeats anyway but this is an example to show what it should do so it's here + + + ]` It shall turn into what is below(by your code and remember they must always be sorted): + `[ + + + + + -< + ]` ### ValidDatagram