Skip to content

Commit

Permalink
Updated article release date
Browse files Browse the repository at this point in the history
  • Loading branch information
bovem committed Feb 15, 2024
1 parent 491628d commit 419115f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/posts/dsa/reorder-linked-list/index.md
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down

0 comments on commit 419115f

Please sign in to comment.