Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down