You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To solve the problem, utilize an exhaustive high-computational approach like simulation, recursion, brute-force or other direct approach. Ignore the problem constraints regarding large input size.
Copy file name to clipboardexpand all lines: alpha_codium/settings/code_contests_prompt_analyze_and_fix.toml
-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
[code_contests_prompt_analyze_and_fix]
2
2
temperature = 0.2
3
-
frequency_penalty = 0.1
4
3
system = """\
5
4
- You must divide the fixed code into small sub-functions, with meaningful names and functionality. Each function should be no longer than 10 lines of code.
6
5
- The fixed code should be robust and general, and work for other input examples as well.
Copy file name to clipboardexpand all lines: alpha_codium/settings/code_contests_prompt_analyze_and_fix_direct.toml
-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
[code_contests_prompt_analyze_and_fix_direct]
2
2
temperature = 0.2
3
-
frequency_penalty = 0.1
4
3
system = """\
5
4
- You must divide the new code into small sub-functions, with meaningful names and functionality. Variable names should also be meaningful.
6
5
- The new code still needs to utilize an exhaustive approach like simulation, recursion, brute-force or direct solution. Ignore the problem constraints regarding large input size.
Copy file name to clipboardexpand all lines: alpha_codium/settings/code_contests_prompts_fix_solution.toml
-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
[code_contests_prompt_fix_solution]
2
2
temperature = 0.3
3
-
frequency_penalty = 0.1
4
3
system="""\
5
4
- You must divide the fixed code into small sub-functions, with meaningful names and functionality. Each function should be no longer than 10 lines of code.
6
5
- The fixed code should be robust and general, and work for other input examples as well.
Copy file name to clipboardexpand all lines: alpha_codium/settings/code_contests_prompts_solve.toml
-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
[code_contests_prompts_solve]
2
2
temperature = 0.3
3
-
frequency_penalty = 0.1
4
3
system= """\
5
4
- You must divide the generated code into small sub-functions, with meaningful names and functionality. Each function should be no longer than 10 lines of code.
6
5
- Double-check the solution code. The generated solution must generalize to any valid input, and not just the provided examples.
Copy file name to clipboardexpand all lines: alpha_codium/settings/code_contests_prompts_solve_direct.toml
-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
[code_contests_prompts_solve_direct]
2
2
temperature = 0.3
3
-
frequency_penalty = 0.1
4
3
system= """\
5
4
- You must divide the generated code into small sub-functions, with meaningful names and functionality. Each function should be no longer than 10 lines of code.
6
5
- The code should ignore the problem constraints for large inputs.
0 commit comments