From 7a32ed3affc0a552f11aa01ce44fed011f0baf97 Mon Sep 17 00:00:00 2001 From: Asmi Date: Sun, 3 Nov 2024 11:55:39 +0530 Subject: [PATCH] Update Reverse_linked_list.md --- java/Reverse_linked_list.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/Reverse_linked_list.md b/java/Reverse_linked_list.md index 7fad6d8bc..b43388807 100644 --- a/java/Reverse_linked_list.md +++ b/java/Reverse_linked_list.md @@ -88,5 +88,5 @@ public class LinkedList { - *Space Complexity* --O(1), as only a constant amount of space is used. -#*Conclusion* +# *Conclusion* In this article, we learned about reversing a linked list and implemented it in Java.