fix: Unify Prompts (#254)

* remove cot
* fix prompt template
* fix pool matrix
* spiral matrix fixed
This commit is contained in:
Zafir Stojanovski 2025-03-03 21:55:53 +01:00 committed by GitHub
parent 49db4ed761
commit 01e1c8f9af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 65 additions and 354 deletions

View file

@ -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}
"""