home/productivity/c9b0459-1

C9b0459 1

GPTClaudeDeepSeek··888 copies·updated 2026-07-14
c9b0459-1.prompt
datasource file: /Users/neoneye/git/simon_arc_lab/run_tasks_result/20241222_033847_task_to_prompt_o3_format/task_to_prompt.jsonl
datasource row: 533
groupname: arcagi
dataset_id: ARC-AGI
task_id: 3c9b0459
test_index: 0
max_prompt_length: 2000
max_response_length: 1000

LLM:
{"system_prompt": null, "pydantic_program_mode": "default", "base_url": "http://localhost:11434", "model": "llama3.1:latest", "temperature": 0.0, "context_window": 3900, "request_timeout": 120.0, "prompt_key": "prompt", "json_mode": false, "additional_kwargs": {}, "is_function_calling_model": true, "keep_alive": null, "class_name": "Ollama_llm"}

SYSTEM PROMPT:
Be concise

---

PROMPT:
Find the common rule that maps an input grid to an output grid, given the examples below.

Example 1:

Input:
2 2 1
2 1 2
2 8 1
Output:
1 8 2
2 1 2
1 2 2

Example 2:

Input:
9 2 4
2 4 4
2 9 2
Output:
2 9 2
4 4 2
4 2 9

Example 3:

Input:
8 8 8
5 5 8
8 5 5
Output:
5 5 8
8 5 5
8 8 8

Example 4:

Input:
3 2 9
9 9 9
2 3 3
Output:
3 3 2
9 9 9
9 2 3

Below is a test input grid. Predict the corresponding output grid by applying the rule you found. Your final answer should just be the text output grid itself.

Input:
6 4 4
6 6 4
4 6 7


---

RESPONSE:
Based on the examples, it appears that the common rule is to rotate the input grid clockwise and then swap the first and last columns of each row. 

Applying this rule to the test input grid:

Input:
6 4 4
6 6 4
4 6 7

Rotating the grid clockwise:

Input:
4 6 7
6 6 4
6 4 4

Swapping the first and last columns of each row:

Output:
7 6 4
4 6 6
4 4 6

---


response byte count: 350
response item count: 118
elapsed: 3.71 seconds

expected output:
[[7, 6, 4], [4, 6, 6], [4, 4, 6]]

predicted output:
[[7, 6, 4], [4, 6, 6], [4, 4, 6]]

status: correct

when to use it

Community prompt sourced from the open-source GitHub repo neoneye/arc-prompt (Apache-2.0). A "C9b0459 1" style prompt — adapt the placeholders and specifics to your task. Imported as-is and not independently retested here, so check the output before relying on it.

tags

productivitycommunitydeveloper

source

neoneye/arc-prompt · Apache-2.0