Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Okay, this kata should be sent to draft, because the reference solution doesn't even cohere to the description:
no voids, no singletons, no five-card majors
. This is not the standard definition of a balanced hand (no voids, no singletons, at most one doubleton
)2C
rule is wrong: see issue below3-3
and4-4
, which isopen 1D/1C if 3+ D/C cards, take the longer suit, then suit rank if equal
5-5
/6-6
D/C cards respectively (expects1D
instead of1C
, which is the higher suit)NT
>2C
> Major opener (longest suit > highest suit) > Minor opener (4-4
>3-3
> longest suit > highest suit), which I don't think is correct in practiceIn the actual tests
AC KD KC AD 5S TH 9D 2H TS AH KS 2C JS
expects2C
, but this is a balanced hand (4-3-3-3
).The current version of SAYC says
Notrump openings show a balanced hand and may be made with a five-card major suit or a five-card minor suit
. Notably, suits are not limited to minor suit.(I think most SAYC variants does this as well AFAIK)
The description is only describing part of the actual bidding rules: rules for
pass
aren't explained. Are we supposed topass
when no bidding criteria are met?Also, what was the suit order again? It is not universally
DCHS
in every card game.