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

connect: adding examples for connect exercise #297

Merged
merged 12 commits into from
Jul 25, 2016
8 changes: 4 additions & 4 deletions connect.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"expected": ""
},
{
"description": "Rectangle black - black wins",
"description": "X wins crossing from left to right",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think these 'minor' changes are a big improvement. 👍

"board": [
". O . .",
" O X X X",
Expand All @@ -55,7 +55,7 @@
"expected": "X"
},
{
"description": "Rectangle white - white wins",
"description": "O wins crossing from top to bottom",
"board": [
". O . .",
" O X X X",
Expand All @@ -66,7 +66,7 @@
"expected": "O"
},
{
"description": "Convoluted path black wins",
"description": "X wins using a convoluted path",
"board": [
". X X . .",
" X . X . X",
Expand All @@ -77,7 +77,7 @@
"expected": "X"
},
{
"description": "spiral black wins",
"description": "X wins using a spiral path",
"board": [
"O X X X X X X X X",
" O X O O O O O O O",
Expand Down