| 1 |
{"name": "Gilbert", "wins": [["straight", "7♣"], ["one pair", "10♥"]]} |
| 2 |
{"name": "Alexa", "wins": [["two pair", "4♠"], ["two pair", "9♠"]]} |
| 3 |
{"name": "May", "wins": []} |
| 4 |
{"name": "Deloise", "wins": [["three of a kind", "5♣"]]} |
| 5 |
{ |
| 6 |
"name": "Gilbert", |
| 7 |
"wins": [ |
| 8 |
[ |
| 9 |
"straight", |
| 10 |
"7♣" |
| 11 |
], |
| 12 |
[ |
| 13 |
"one pair", |
| 14 |
"10♥" |
| 15 |
] |
| 16 |
] |
| 17 |
} |
| 18 |
{ |
| 19 |
"name": "Alexa", |
| 20 |
"wins": [ |
| 21 |
[ |
| 22 |
"two pair", |
| 23 |
"4♠" |
| 24 |
], |
| 25 |
[ |
| 26 |
"two pair", |
| 27 |
"9♠" |
| 28 |
] |
| 29 |
] |
| 30 |
} |
| 31 |
// From https://jsonlines.org/examples/ |
| 32 |
|