From 419115f9777c6bb6e8f8e3334c9c7a72659a7dc1 Mon Sep 17 00:00:00 2001 From: bovem Date: Thu, 15 Feb 2024 19:16:06 +0530 Subject: [PATCH] Updated article release date --- content/posts/dsa/reorder-linked-list/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/dsa/reorder-linked-list/index.md b/content/posts/dsa/reorder-linked-list/index.md index 3bed691..3427014 100644 --- a/content/posts/dsa/reorder-linked-list/index.md +++ b/content/posts/dsa/reorder-linked-list/index.md @@ -1,7 +1,7 @@ --- author: "Avnish" title: "Reorder Linked Lists" -date: "2024-02-07" +date: "2024-02-15" description: "Implement a reorderList function that takes the head of a linked list (node(0) -> node(1) -> node(2) -> .. -> node(n-1) -> node(n)) as input and reorders its nodes in the form node(0) -> node(n) -> node(1) -> node(n-1) -> node(2) -> .. ." tags: ["data-structures", "linked-lists", "go", "neetcode-150", "leetcode-medium"] categories: ["Data Structures"]