Skip to content
Merged
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
11 changes: 10 additions & 1 deletion exercises/list-ops/canonical-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -366,13 +366,22 @@
},
{
"uuid": "fcc03d1e-42e0-4712-b689-d54ad761f360",
"description": "non-empty list",
"description": "non-empty even-length list",
Comment thread
IsaacG marked this conversation as resolved.
"property": "reverse",
"input": {
"list": [1, 3, 5, 7]
},
"expected": [7, 5, 3, 1]
},
{
"uuid": "64d77184-5f74-4845-b158-545d2dd2df98",
"description": "non-empty odd-length list",
"property": "reverse",
"input": {
"list": [1, 3, 5, 7, 9, 11, 13]
},
"expected": [13, 11, 9, 7, 5, 3, 1]
},
{
"uuid": "40872990-b5b8-4cb8-9085-d91fc0d05d26",
"description": "list of lists is not flattened",
Expand Down
Loading