name stringlengths 7 23 | description stringlengths 7 23 | code stringlengths 74 123 | seeds int64 12 12 |
|---|---|---|---|
same_color_or_diff_rank | same color or diff rank | if not mainline:
return True
p=mainline[-1]
return (card.color == p.color) or (card.rank != p.rank) | 12 |
ge_rank | ge rank | if not mainline:
return True
p=mainline[-1]
return card.rank >= p.rank | 12 |
diff_color_or_ge_rank | diff color or ge rank | if not mainline:
return True
p=mainline[-1]
return (card.color != p.color) or (card.rank >= p.rank) | 12 |
same_color | same color | if not mainline:
return True
p=mainline[-1]
return card.color == p.color | 12 |
same_suit_or_diff_rank | same suit or diff rank | if not mainline:
return True
p=mainline[-1]
return (card.suit.suit_name == p.suit.suit_name) or (card.rank != p.rank) | 12 |
same_color_or_same_rank | same color or same rank | if not mainline:
return True
p=mainline[-1]
return (card.color == p.color) or (card.rank == p.rank) | 12 |
diff_color_or_diff_rank | diff color or diff rank | if not mainline:
return True
p=mainline[-1]
return (card.color != p.color) or (card.rank != p.rank) | 12 |
diff_suit_or_same_rank | diff suit or same rank | if not mainline:
return True
p=mainline[-1]
return (card.suit.suit_name != p.suit.suit_name) or (card.rank == p.rank) | 12 |
same_color_or_le_rank | same color or le rank | if not mainline:
return True
p=mainline[-1]
return (card.color == p.color) or (card.rank <= p.rank) | 12 |
diff_suit | diff suit | if not mainline:
return True
p=mainline[-1]
return card.suit.suit_name != p.suit.suit_name | 12 |
same_suit_or_same_rank | same suit or same rank | if not mainline:
return True
p=mainline[-1]
return (card.suit.suit_name == p.suit.suit_name) or (card.rank == p.rank) | 12 |
same_suit | same suit | if not mainline:
return True
p=mainline[-1]
return card.suit.suit_name == p.suit.suit_name | 12 |
diff_color | diff color | if not mainline:
return True
p=mainline[-1]
return card.color != p.color | 12 |
same_suit_or_le_rank | same suit or le rank | if not mainline:
return True
p=mainline[-1]
return (card.suit.suit_name == p.suit.suit_name) or (card.rank <= p.rank) | 12 |
diff_color_or_same_suit | diff color or same suit | if not mainline:
return True
p=mainline[-1]
return (card.color != p.color) or (card.suit.suit_name == p.suit.suit_name) | 12 |
same_rank | same rank | if not mainline:
return True
p=mainline[-1]
return card.rank == p.rank | 12 |
same_color_or_ge_rank | same color or ge rank | if not mainline:
return True
p=mainline[-1]
return (card.color == p.color) or (card.rank >= p.rank) | 12 |
README.md exists but content is empty.
- Downloads last month
- 53