mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-26 17:13:17 +00:00
fix: Unify Prompts (#254)
* remove cot * fix prompt template * fix pool matrix * spiral matrix fixed
This commit is contained in:
parent
976e1710a6
commit
2f9d94c1e7
31 changed files with 65 additions and 354 deletions
|
|
@ -8,33 +8,7 @@ QUESTION_TEMPLATE = """Your task is to count how many rectangles are present in
|
|||
|
||||
Single rectangles are outlined with a '#', overlapping rectangles (max 2) are shown with '█'.
|
||||
|
||||
Example:
|
||||
- Input: How many rectangles are in the grid below?
|
||||
|
||||
####
|
||||
# #
|
||||
####
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#########
|
||||
# █##
|
||||
# █ #
|
||||
########█ #
|
||||
# #
|
||||
###
|
||||
- Output: 3
|
||||
- Explanation:
|
||||
- The first rectangle is the 3x4 rectangle in the top right.
|
||||
- The other two rectangles are overlapping in the bottom left corner.
|
||||
- Therefore, the final answer is 3.
|
||||
Your output should be a single number, representing the total count of rectangles.
|
||||
|
||||
Now, it's your turn. How many rectangles do you see in the grid below?
|
||||
{puzzle}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue