From d59005678d7b2f294df26c088842ab3e44f85f31 Mon Sep 17 00:00:00 2001 From: enqidu Date: Fri, 10 Jul 2020 20:40:00 +0400 Subject: [PATCH] documentation --- data_structures/skip_list.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/data_structures/skip_list.cpp b/data_structures/skip_list.cpp index dc9b06776..80717050a 100644 --- a/data_structures/skip_list.cpp +++ b/data_structures/skip_list.cpp @@ -35,7 +35,6 @@ struct Node { * Creates node with provided key, level and value * @param key is number that is used for comparision * @param level is the maximum level node's going to added - * */ Node::Node(int key, int level, void* value) { this->key = key;