From 00086389ad404608cf219ccc69d80c6a74bbae79 Mon Sep 17 00:00:00 2001 From: mjk22071998 Date: Tue, 1 Oct 2024 16:32:38 +0500 Subject: [PATCH] "Updated whitespace and trailing spaces in SortedLinkedList class" --- data_structures/linked_list/sorted_linked_list.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/data_structures/linked_list/sorted_linked_list.py b/data_structures/linked_list/sorted_linked_list.py index 128212912..3a8ff9b0e 100644 --- a/data_structures/linked_list/sorted_linked_list.py +++ b/data_structures/linked_list/sorted_linked_list.py @@ -113,7 +113,7 @@ class SortedLinkedList: >>> linkedList.insert(57) >>> linkedList.insert(45) >>> linkedList.display() - 32 45 57 + 32 45 57 """ temp: Node | None = self.head while temp: @@ -141,11 +141,11 @@ class SortedLinkedList: >>> linkedList.insert(57) >>> linkedList.insert(45) >>> linkedList.display() - 32 45 57 + 32 45 57 >>> linkedList.delete(45) True >>> linkedList.display() - 32 57 + 32 57 """ if self.head is None: return False @@ -163,9 +163,10 @@ class SortedLinkedList: temp_node.next_node = temp_node.next_node.next_node if temp_node.next_node is None: self.tail = temp_node + self.num_nodes -= 1 return True temp_node = temp_node.next_node - self.num_nodes -= 1 + return False def search(self, data: int) -> bool: @@ -251,7 +252,7 @@ class SortedLinkedList: Doctests - >>> linkedList=SortedLinkedListt() + >>> linkedList=SortedLinkedList() >>> linkedList.insert(32) >>> linkedList.insert(57) >>> linkedList.insert(45) @@ -294,10 +295,10 @@ class SortedLinkedList: >>> linkedList.insert(45) >>> linkedList.insert(45) >>> linkedList.display() - 32 45 45 57 + 32 45 45 57 >>> linkedList.remove_duplicates() >>> linkedList.display() - 32 45 57 + 32 45 57 """ temp: Node | None = self.head