Example #1
0
 public static bool isBackdoorFlushDraw(List <Card> cards)
 {
     return(cards.Count == 3 && FlushHelpers.isSameSuit(cards) ? true : false);
 }
Example #2
0
 public static bool isFlush(List <Card> cards)
 {
     return(cards.Count >= 5 && FlushHelpers.isSameSuit(cards) ? true : false);
 }