mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
fix: Unify Prompts (#254)
* remove cot * fix prompt template * fix pool matrix * spiral matrix fixed
This commit is contained in:
parent
49db4ed761
commit
01e1c8f9af
31 changed files with 65 additions and 354 deletions
|
|
@ -18,15 +18,7 @@ QUESTION_TEMPLATE = """Given a string consisting of characters A, B, C, D, and E
|
|||
|
||||
Once you have inserted a character, you have to skip over the substring and the inserted character and continue the search from the next character.
|
||||
|
||||
Example
|
||||
- Input: DDABCDEEDEAB
|
||||
- Output: DDABCDAEEDEABD
|
||||
- Explanation:
|
||||
- Theere are two inserted characters: DDABCD[A]EEDEAB[D] (shown in square brackets)
|
||||
- First, we insert A after ABCD.
|
||||
- Even though with the newly inserted 'A' we can obtain the substring BCD[A], we can't use it to insert another character.
|
||||
- Lastly, we insert D after DEAB.
|
||||
- Therefore, the final answer is DDABCDAEEDEABD (represented as a string, instead of a list of characters).
|
||||
Your output should be a string that has been modified according to the pattern.
|
||||
|
||||
Given the following string, provide the answer after inserting the characters according to the pattern: {string}
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue