Description
Given a array of random integers , write a prompt to print out the elements in a "swiss roll" order, i.e., starts down the first row, then goes down the last column, then left, up, etc. all the way until it curls its way to the center element. The array will be appended to the end of your prompt, separated by 2 newlines, and the LLM should execute it directly without using any tools or code.
Evaluation
Each submission will be tested against 100 randomly generated test cases:
For each of the 100 test cases, the grader will prompt the selected LLM with the submission's prompt concatenated with 2 new line characters and the test case:
Then, each response will be split by the space character and scored on the accuracy of the first 25 elements. The final score will be the mean of all 100 results:
Example
Submission Requirements
- Standard rules apply.
- The output should be separated with a singular space (as is the input) and inside
<answer>
tags. - Maximum input length of 1024 characters.
- Maximum output of 64 tokens.
- No tool-calling.