rule stringlengths 10 148 | difficulty stringclasses 5
values | seeds int64 8 8 |
|---|---|---|
color == 'R' | static | 8 |
suit == 'S' | static | 8 |
color != prev_color | cyclic | 8 |
value % 2 == 0 | static | 8 |
suit != prev_suit | sequential | 8 |
suit != 'S' | static | 8 |
value % 2 != prev_value % 2 | sequential | 8 |
value == 1 | static | 8 |
suit != prev_suit and color == prev_color | sequential | 8 |
value in [2, 3, 5, 7, 11, 13] | static | 8 |
value >= 11 | static | 8 |
suit in ['S', 'D'] | static | 8 |
(prev_suit == 'H' and suit == 'S') or (prev_suit == 'S' and suit == 'C') or (prev_suit == 'C' and suit == 'D') or (prev_suit == 'D' and suit == 'H') | cyclic | 8 |
value <= 7 | static | 8 |
color == 'B' and value >= 11 | static | 8 |
(value >= 11) != (prev_value >= 11) | cyclic | 8 |
color == prev_color or value % 2 == prev_value % 2 | conditional | 8 |
value >= prev_value | sequential | 8 |
value >= 5 and value <= 9 | static | 8 |
color == 'R' and value <= 7 | static | 8 |
suit == prev_suit if n % 2 == 1 else suit != prev_suit | positional | 8 |
(value >= 11 and color == 'R') or (value <= 10 and color == 'B') | static | 8 |
(suit in ['H', 'S']) != (prev_suit in ['H', 'S']) | cyclic | 8 |
value >= prev_value if prev_color == 'R' else value < prev_value | conditional | 8 |
suit == prev_suit if prev_value >= 11 else suit != prev_suit | conditional | 8 |
value == prev_value if n % 2 == 1 else value != prev_value | positional | 8 |
README.md exists but content is empty.
- Downloads last month
- 28