From c700813a14fe92730b5e490fd09e3c8f9fe7bfc3 Mon Sep 17 00:00:00 2001 From: Filip Date: Wed, 23 Aug 2023 18:29:07 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 98b7536..5e0177b 100644 --- a/README.md +++ b/README.md @@ -52,9 +52,9 @@ Submit as solution an array of the values in the order that they appear in the l ```json { "linkedList": [ - { "id": "b", "value": 2, "next": "3" }, + { "id": "b", "value": 2, "next": "c" }, { "id": "c", "value": 3, "next": null }, - { "id": "a", "value": 1, "next": "2" } + { "id": "a", "value": 1, "next": "b" } ], "top": "a" }