Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More descriptive descriptions in canonical data two-buckets problem #716

Merged
merged 1 commit into from
Mar 12, 2017
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
8 changes: 4 additions & 4 deletions exercises/two-bucket/canonical-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.1",
"cases": [
{
"description": "(3, 5) -> 1, starting with the first bucket",
"description": "Measure using bucket one of size 3 and bucket two of size 5 - start with bucket one",
"property": "measure",
"bucket_one": 3,
"bucket_two": 5,
Expand All @@ -16,7 +16,7 @@
}
},
{
"description": "(3, 5) -> 1, starting with the second bucket",
"description": "Measure using bucket one of size 3 and bucket two of size 5 - start with bucket two",
"property": "measure",
"bucket_one": 3,
"bucket_two": 5,
Expand All @@ -29,7 +29,7 @@
}
},
{
"description": "(7, 11) -> 2, starting with the first bucket",
"description": "Measure using bucket one of size 7 and bucket two of size 11 - start with bucket one",
"property": "measure",
"bucket_one": 7,
"bucket_two": 11,
Expand All @@ -42,7 +42,7 @@
}
},
{
"description": "(7, 11) -> 2, starting with the second bucket",
"description": "Measure using bucket one of size 7 and bucket two of size 11 - start with bucket two",
"property": "measure",
"bucket_one": 7,
"bucket_two": 11,
Expand Down