mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-27 17:23:19 +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
|
|
@ -18,13 +18,7 @@ A palindrome is a word that reads the same backward as forward.
|
|||
|
||||
You may return all possible palindrome partitioning in any order.
|
||||
|
||||
Example:
|
||||
- Input: Partition the following string into palindromes: aab
|
||||
- Output: [["a","a","b"],["aa","b"]]
|
||||
- Explanation:
|
||||
- One way to partition the string is "a" | "a" | "b", where each substring is a palindrome.
|
||||
- Another way to partition the string is "aa" | "b", where again each substring is a palindrome.
|
||||
- Therefore, the final result is a list of the two palindrome partitions.
|
||||
Your output should be a list of lists, where each list represents a palindrome partition, e.g. [["a","a","b"],["aa","b"]].
|
||||
|
||||
Partition the following string into palindromes: {string}
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue