From c1179e22d555991c02c3067d646d2b81b945a99d Mon Sep 17 00:00:00 2001 From: Mudit Mahajan Date: Tue, 17 May 2022 11:57:36 +0000 Subject: [PATCH] Update Day07/Rotate List.cpp --- Day07/Rotate List.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Day07/Rotate List.cpp b/Day07/Rotate List.cpp index d860f4c..8353099 100644 --- a/Day07/Rotate List.cpp +++ b/Day07/Rotate List.cpp @@ -20,4 +20,4 @@ ListNode* rotateRight(ListNode* head, int k) { curr -> next = nullptr; return head; - } \ No newline at end of file + }