From 2d61f2e5bbf41749e298cef8c1a389d377c75f36 Mon Sep 17 00:00:00 2001 From: mjk22071998 Date: Tue, 1 Oct 2024 16:11:09 +0500 Subject: [PATCH] Fixed missing closing parenthesis in print statement. --- data_structures/linked_list/sorted_linked_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/linked_list/sorted_linked_list.py b/data_structures/linked_list/sorted_linked_list.py index 98d858e11..9b317acce 100644 --- a/data_structures/linked_list/sorted_linked_list.py +++ b/data_structures/linked_list/sorted_linked_list.py @@ -365,4 +365,4 @@ if __name__ == "__main__": elif choice == "4": break else: - print("Wrong input" \ No newline at end of file + print("Wrong input") \ No newline at end of file