question
stringlengths
142
5.52k
answer
stringlengths
1
5.1k
source_dataset
stringclasses
10 values
metadata_json
stringlengths
168
15.4k
You are a police officer. A maniac has planted a bomb next to a public fountain. To defuse the bomb, you must solve a puzzle. The puzzle is solved when you fill any of the available jugs with the target amount of water. You have three move types: 'fill', 'empty' and 'pour'. To fill Jug A, you 'fill A'. To empty Jug B, you 'empty B'. To pour the contents of Jug A into Jug B, you 'pour A->B'. All jugs are empty to begin with. The empty jugs hold this many litres of water: A:13, B:10, C:3, D:10 And your target is: 5 litres. How do you defuse the bomb? Reply as a JSON-parsable list of moves which result in any of the jugs being filled with the target amount.
["fill C", "pour C->A", "fill C", "pour C->A", "fill C", "pour C->A", "fill C", "pour C->A", "pour A->B", "pour B->C", "pour C->A"]
jugs
{"difficulty": {"difficulty": 10, "num_jugs": 4}, "puzzle": {"jug_capacities": [13, 10, 3, 10], "min_moves": 11, "target": 5}, "source_dataset": "jugs", "source_index": 125}
An anagram is a word formed by rearranging the letters of a different word, using all the original letters exactly once. Your job is to group the anagrams together. You can return the answer in any order. The output is a list of lists of strings, where each outer list contains a group of anagrams, e.g. [["eat", "tea"], ["tan", "nat"]]. Group the following list of words into anagrams: ["tricennial", "encrinital", "queans", "sequan", "disaster", "disrates", "diasters", "warranties", "warrantise", "saki", "sika", "siak", "repermission", "reimpression", "riped", "pride", "aletap", "platea", "palate", "inspect", "incepts", "pectins", "addy", "dyad", "stosh", "hosts", "shots", "pilots", "sploit", "ailments", "stileman", "mentalis", "smaltine", "melanist", "poonac", "acopon", "tawery", "tawyer", "watery", "panduras", "pandarus", "redoubting", "tonguebird", "ric", "cir", "deuteranopic", "preeducation", "admonitions", "dominations", "amnionate", "anamniote", "emanation", "lighters", "relights"]
[["acopon", "poonac"], ["addy", "dyad"], ["admonitions", "dominations"], ["ailments", "melanist", "mentalis", "smaltine", "stileman"], ["aletap", "palate", "platea"], ["amnionate", "anamniote", "emanation"], ["cir", "ric"], ["deuteranopic", "preeducation"], ["diasters", "disaster", "disrates"], ["encrinital", "tricennial"], ["hosts", "shots", "stosh"], ["incepts", "inspect", "pectins"], ["lighters", "relights"], ["pandarus", "panduras"], ["pilots", "sploit"], ["pride", "riped"], ["queans", "sequan"], ["redoubting", "tonguebird"], ["reimpression", "repermission"], ["saki", "siak", "sika"], ["tawery", "tawyer", "watery"], ["warranties", "warrantise"]]
group_anagrams
{"anagram_groups": 22, "difficulty": {"anagram_groups": [10, 50], "words_per_group": [2, 5]}, "solution": [["acopon", "poonac"], ["addy", "dyad"], ["admonitions", "dominations"], ["ailments", "melanist", "mentalis", "smaltine", "stileman"], ["aletap", "palate", "platea"], ["amnionate", "anamniote", "emanation"], ["cir", "ric"], ["deuteranopic", "preeducation"], ["diasters", "disaster", "disrates"], ["encrinital", "tricennial"], ["hosts", "shots", "stosh"], ["incepts", "inspect", "pectins"], ["lighters", "relights"], ["pandarus", "panduras"], ["pilots", "sploit"], ["pride", "riped"], ["queans", "sequan"], ["redoubting", "tonguebird"], ["reimpression", "repermission"], ["saki", "siak", "sika"], ["tawery", "tawyer", "watery"], ["warranties", "warrantise"]], "source_dataset": "group_anagrams", "source_index": 19, "words": ["tricennial", "encrinital", "queans", "sequan", "disaster", "disrates", "diasters", "warranties", "warrantise", "saki", "sika", "siak", "repermission", "reimpression", "riped", "pride", "aletap", "platea", "palate", "inspect", "incepts", "pectins", "addy", "dyad", "stosh", "hosts", "shots", "pilots", "sploit", "ailments", "stileman", "mentalis", "smaltine", "melanist", "poonac", "acopon", "tawery", "tawyer", "watery", "panduras", "pandarus", "redoubting", "tonguebird", "ric", "cir", "deuteranopic", "preeducation", "admonitions", "dominations", "amnionate", "anamniote", "emanation", "lighters", "relights"]}
You are given an n x n grid where each cell can have one of three values: - 0 representing an empty cell - 1 representing a fresh orange - 2 representing a rotten orange Every minute, any fresh orange that is 4-directionally adjacent to a rotten orange becomes rotten. Your task is determine the minimum number of minutes that must elapse until no cell has a fresh orange. If this is impossible, return -1. Now, determine the minimum number of minutes that must elapse until no cell in the grid below has a fresh orange: 0 1 1 0 2 1 1 1 1 1 1 1 0 2 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 2 1 1 2 1 1 1 1 0 0 1 1 0 0 1 0 1 1 0 1 1 1 1 1 1 1 1 1 1 0 1 2 1 1 1 1 1 1 1 1 1 0 0 1 1 2 1 1 1 0 1 1 1 0 1 1 2 1 1 2 1 1 0 2 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 0 0 1 0 2 1 1 0 1 1 1 1 0 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 2 0 0 2 1 1 1 1 1 1 0 1 1 2 0 1 1 1 0 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 0 1 1 1 0 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 2 2 1 1 0 0 1 1 0 1 1 1 1 0 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0 2 1 1 0 1 1 1 1 1 2 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 2 1 0 0 0 2 0 1 1 1 1 0 1 1 1 1 2 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 0 0 1 2 2 1 1 0 1 2 1 1 1 1 1 1 0 2 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 2 0 2 1 0 1 2 0 1 1 1 1 0 1 1 1 1 0 1 1 1 1 1 1 2 0 1 1 1 1 1 1 2 1 1 1 1 1 0 1 1 1 1 1 1 0 0 2 0 1 1 0 1 1 1 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 1 2 0 1 1 1 1 1 0 1 1 1 1 1 1 0 0 1 1 1 1 2 2 1 1 1 2 1 2 0 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 2 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 2 1 1 2 2 1 1 1 1 0 1 1 1 0 1 0 1 1 1 1 0 1 1 1 0 1 1 0 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 2 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 0 1 1 1 1 1 1 1 1 0 2 2 1 1 1 1 1 0 1 0 1 1 1 1 0 2 1 1 0 1 1 1 0 1 1 1 1 1 0 0 1 1 1 1 0 1 2 1 1 1 1 1 1 2 0 1 0 1 1 1 2 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 0 1 0 1 1 2 1 2 1 1 1 1 1 1 1 1 0 1 2 1 1 1 1 1 1 1 1 1 0 1 2 1 1 1 2 1 1 1 0 0 1 1 1 1 2 1 1 1 1 1 1 2 0 0 0 0 1 1 0 1 1 1 1 1 1 0 1 1 0 1 1 0 0 1 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 2 1 1 1 2 1 0 1 1 1 1 1 2 1 1 0 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 0 1 2 1 0 1 0 1 1 1 1 0 2 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 1 0 1 0 1 1 1 1 0 1 0 1 2 1 1 1 1 1 2 1 1 1 1 0 1 1 1 1 0 1 2 1 1 1 1 0 1 1 2 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 2 1 2 0 1 1 1 0 1 1 1 1 1 2 1 1 0 2 0 1 1 1 1 1 2 1 2 1 1 2 1 2 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 0 1 1 2 1 1 1 1 1 1 1 0 1 1 1 1 1 2 0 1 1 1 1 0 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 2 1 1 1 0 1 0 0 1 0 0 1 1 1 1 0 1 1 1 0 0 1 1 1 0 1 1 1 1 1 2 0 0 1 1 1 2 1 1 2 1 1 1 1 0 1 1 1 0 1 1 1 1 0 1 1 2 0 1 0 0 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 2 0 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 0 1 2 1 1 1 0 1 2 2 1 1 0 1 1 1 1 2 1 1 1 1 0 0 1 0 1 1 0 0 0 1 1 1 1 1 1 1 2 0 2 1 1 0 1 1 2 1 2 1 1 1 2 1 1 1 1 1 1 1 1 1 1 2 0 1 0 1 1 2 0 0 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 2 1 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 2 1 1 2 1 1 1 1 1 1 1 1 0 1 1 1 1 2 2 1 1 1 1 2 1 1 2 1 1 1 0 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 0 1 1 1 1 1 1 2 0 0 2 0 1 2 1 1 1 0 1 1 0 1 1 0 1 1 2 1 0 2 1 1 1 0 1 1 1 1 1 1 1 1 1 0 1 2 0 1 1 1 1 0 1 1 1 1 1 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 2 1 1 1 1 2 0 1 1 1 1 1 1 1 1 2 1 1 2 1 1 1 1 0 1 0 1 1 2 0 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 0 1 1 1 1 1 1 2 1 1 2 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 2 1 2 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 2 1 1 1 1 1 1 1 2 1 0 0 0 1 1 2 1 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 2 1 1 1 1 1 0 0 2 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 2 1 1 1 1 1 1 1 0 2 1 1 1 1 0 1 0 0 1 0 1 1 1 0 1 1 0 0 1 1 1 0 1 1 1 1 2 1 1 0 2 1 1 1 1 1 1 1 1 1 1 0 1 2 0 1 1 1 1 1 1 1 1 2 1 1 1 1 0 1 2 1 1 1 1 1 1 0 1 1 1 0 1 1 0 1 1 1 0 1 1 1 1 1 0 2 1 1 1 1 2 1 2 1 1 2 0 2 1 0 1 1 0 2 1 1 0 1 2 1 2 0 1 1 2 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 0 1 1 1 0 1 0 1 1 1 1 2 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 0 1 0 1 1 1 0 1 0 1 1 1 1 1 1 0 1 1 0 1 1 0 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 2 1 0 0 1 1 0 0 1 0 1 1 1 1 0 1 1 1 1 1 1 1 2 1 1 1 1 1 1 2 1 1 0 1 1 1 2 1 1 1 1 1 1 2 1 2 2 0 1 1 1 1 1 0 1 0 0 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 2 1 1 0 1 2 1 2 1 1 1 1 2 1 0 1 1 1 1 1 0 1 1 1 1 0 1 1 0 0 2 1 1 0 1 1 2 1 1 2 1 1 1 1 1 1 2 1 1 1 1 1 0 0 1 1 0 2 1 1 1 1 0 1 0 2 1 1 1 1 1 1 1 1 1 1 0 1 1 0 2 1 1 0 1 1 1 1 1 0 1 0 1 1 1 0 1 2 1 0 1 0 1 1 1 1 1 1 1 1 2 1 1 1 1 1 0 2 1 1 1 0 1 1 2 1 1 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 2 1 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 0 2 1 0 1 1 1 2 2 2 1 2 0 1 1 0 1 1 1 1 1
-1
rotten_oranges
{"difficulty": {"n": [25, 50]}, "matrix": [[0, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 2], [1, 1, 2, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 2, 1, 1], [1, 0, 1, 1, 1, 0, 1, 1, 2, 1, 1, 2, 1, 1, 0, 2, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 2, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 0, 0, 2, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 0, 1, 1, 1, 0, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1], [0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 2, 1, 1, 0, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [0, 0, 2, 1, 0, 0, 0, 2, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 0, 0, 1, 2, 2, 1, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 0, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 2, 0, 2, 1, 0, 1, 2], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 2, 0, 1, 1, 0, 1, 1], [1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 2, 2, 1, 1, 1, 2], [1, 2, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1], [2, 1, 1, 2, 2, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1], [0, 2, 2, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 2, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 2, 0, 1], [0, 1, 1, 1, 2, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0], [1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 2, 1, 1, 1, 0, 0, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1], [1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 2, 1, 0, 1, 1, 1, 1, 1, 2, 1, 1, 0, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 0, 1, 2, 1, 0, 1, 0, 1, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 1, 0, 1, 1, 2, 1], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 2, 1, 2, 0, 1, 1, 1, 0, 1, 1, 1, 1], [1, 2, 1, 1, 0, 2, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 2, 1, 2, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2, 0, 0], [1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 2, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 0, 1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 2, 1, 1, 1, 0, 1, 2, 2, 1, 1, 0, 1, 1, 1, 1, 2, 1, 1, 1, 1, 0], [0, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 2, 0, 2, 1, 1, 0, 1, 1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 1, 0, 1, 1, 2], [0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1], [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 2, 2, 1, 1, 1], [1, 2, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 2, 0, 0, 2], [0, 1, 2, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 2, 1, 0, 2, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 0, 1, 0, 1, 1], [2, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 2, 1, 2, 1], [1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 0, 0, 0, 1, 1, 2, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1], [1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 0, 2, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1], [1, 0, 2, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 2, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2], [0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 2, 1, 1, 1, 1, 2], [1, 2, 1, 1, 2, 0, 2, 1, 0, 1, 1, 0, 2, 1, 1, 0, 1, 2, 1, 2, 0, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1], [1, 0, 1, 0, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0], [1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1], [1, 1, 2, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 2, 2, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 0, 1, 2, 1, 2, 1, 1, 1, 1, 2, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1], [1, 0, 1, 1, 0, 0, 2, 1, 1, 0, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 2, 1, 1, 1, 1, 0, 1, 0, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 1, 1, 0, 2, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 2, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 2], [1, 1, 1, 0, 1, 1, 2, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1], [1, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 2, 1, 0, 1, 1, 1, 2, 2, 2, 1, 2, 0, 1, 1, 0, 1, 1, 1, 1, 1]], "n": 47, "solution": -1, "source_dataset": "rotten_oranges", "source_index": 32}
What will this Game of Life board look like after 2 steps of simulation? Assume a Moore neighborhood and wrapping topology. Reply as array of arrays representing rows in the grid from top to bottom in JSON format. (An empty 3x3 grid would look like this: [[0,0,0],[0,0,0],[0,0,0]]) [[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]].
[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]
game_of_life
{"difficulty": {"filled_cells_weights": 0.2, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2}, "filled_cells": 10, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2, "source_dataset": "game_of_life", "source_index": 77}
You are a police officer. A maniac has planted a bomb next to a public fountain. To defuse the bomb, you must solve a puzzle. The puzzle is solved when you fill any of the available jugs with the target amount of water. You have three move types: 'fill', 'empty' and 'pour'. To fill Jug A, you 'fill A'. To empty Jug B, you 'empty B'. To pour the contents of Jug A into Jug B, you 'pour A->B'. All jugs are empty to begin with. The empty jugs hold this many litres of water: A:3, B:11, C:11, D:11 And your target is: 4 litres. How do you defuse the bomb? Reply as a JSON-parsable list of moves which result in any of the jugs being filled with the target amount.
["fill A", "pour A->B", "fill A", "pour A->B", "fill A", "pour A->B", "fill A", "pour A->B", "pour A->C", "fill A", "pour A->C"]
jugs
{"difficulty": {"difficulty": 10, "num_jugs": 4}, "puzzle": {"jug_capacities": [3, 11, 11, 11], "min_moves": 11, "target": 4}, "source_dataset": "jugs", "source_index": 112}
Your task is to convert a number between two different bases. If the target base is > 10, use lowercase letters a-z for digits above 9. Now, convert the base-11 number 3274a to base-17
9b55
base_conversion
{"decimal_value": 47486, "difficulty": {"base": [9, 18], "value": [10000, 100000]}, "source_base": 11, "source_dataset": "base_conversion", "source_index": 43, "source_repr": "3274a", "target_base": 17, "target_repr": "9b55"}
Sort these numbers in ascending order: -216.41, -10.866, 493.45, 333.111, -1.2756, 254.289, 108.6024, 446.996, -238.675, -101.3982, -169.8, -374.236, -456.19, -350.607, 28.509, 35.74, -258.514, -364.2986, -387.43, 406.55, 44.156, 51.79, 262.169, 208.55, 211.504, 152.2215, 95.56, -342.74, -181.353, 37.82, 457.623, -77.2997, 421.457, -483.26, -487.05, 94.46, 135.91, -64.0893, 388.805, 148.449, -145.8567, 155.341, -397.184, 107.7634, 53.9515, -429.52, 414.384, 72.449, 250.86, 182.8833, -240.069, -497.68, 366.68, -365.518, 218.93, 454.14, -60.978, -375.63, 484.0694, -322.34, 412.354, -327.6382, -459.59, 363.5577, 370.74, -73.47, 168.244, -154.697, 49.893, 235.43, -158.16, 176.1747, -132.0696, -147.8504, -379.1485, 117.38, -45.157, -54.346, 28.687, -386.063, -255.887, -278.69, -116.8, -34.7379, -186.681, 195.699, 197.3645, -23.9913, 131.634, -455.76, 258.02, -391.59, 145.3338, -178.166, -251.6751, 49.466 Please follow the instruction below: ## 1. Let all your answers be a list of numbers. Instead of reporting your answer as -69, -13, 1, 7, 11, 43, 59, 61, use ['-69', '-13', '1', '7', '11', '43', '59', '61'] instead ## 2. Convert all numbers in the square brackets as strings. For example, ['-69', '-13', '1', '7', '11', '43', '59', '61']
['-497.68', '-487.05', '-483.26', '-459.59', '-456.19', '-455.76', '-429.52', '-397.184', '-391.59', '-387.43', '-386.063', '-379.1485', '-375.63', '-374.236', '-365.518', '-364.2986', '-350.607', '-342.74', '-327.6382', '-322.34', '-278.69', '-258.514', '-255.887', '-251.6751', '-240.069', '-238.675', '-216.41', '-186.681', '-181.353', '-178.166', '-169.8', '-158.16', '-154.697', '-147.8504', '-145.8567', '-132.0696', '-116.8', '-101.3982', '-77.2997', '-73.47', '-64.0893', '-60.978', '-54.346', '-45.157', '-34.7379', '-23.9913', '-10.866', '-1.2756', '28.509', '28.687', '35.74', '37.82', '44.156', '49.466', '49.893', '51.79', '53.9515', '72.449', '94.46', '95.56', '107.7634', '108.6024', '117.38', '131.634', '135.91', '145.3338', '148.449', '152.2215', '155.341', '168.244', '176.1747', '182.8833', '195.699', '197.3645', '208.55', '211.504', '218.93', '235.43', '250.86', '254.289', '258.02', '262.169', '333.111', '363.5577', '366.68', '370.74', '388.805', '406.55', '412.354', '414.384', '421.457', '446.996', '454.14', '457.623', '484.0694', '493.45']
number_sorting
{"difficulty": {"decimals": [2, 4], "numbers": [50, 100], "value": [-500, 500]}, "direction": "ascending", "numbers": 96, "original_numbers": ["-216.41", "-10.866", "493.45", "333.111", "-1.2756", "254.289", "108.6024", "446.996", "-238.675", "-101.3982", "-169.8", "-374.236", "-456.19", "-350.607", "28.509", "35.74", "-258.514", "-364.2986", "-387.43", "406.55", "44.156", "51.79", "262.169", "208.55", "211.504", "152.2215", "95.56", "-342.74", "-181.353", "37.82", "457.623", "-77.2997", "421.457", "-483.26", "-487.05", "94.46", "135.91", "-64.0893", "388.805", "148.449", "-145.8567", "155.341", "-397.184", "107.7634", "53.9515", "-429.52", "414.384", "72.449", "250.86", "182.8833", "-240.069", "-497.68", "366.68", "-365.518", "218.93", "454.14", "-60.978", "-375.63", "484.0694", "-322.34", "412.354", "-327.6382", "-459.59", "363.5577", "370.74", "-73.47", "168.244", "-154.697", "49.893", "235.43", "-158.16", "176.1747", "-132.0696", "-147.8504", "-379.1485", "117.38", "-45.157", "-54.346", "28.687", "-386.063", "-255.887", "-278.69", "-116.8", "-34.7379", "-186.681", "195.699", "197.3645", "-23.9913", "131.634", "-455.76", "258.02", "-391.59", "145.3338", "-178.166", "-251.6751", "49.466"], "sorted_numbers": ["-497.68", "-487.05", "-483.26", "-459.59", "-456.19", "-455.76", "-429.52", "-397.184", "-391.59", "-387.43", "-386.063", "-379.1485", "-375.63", "-374.236", "-365.518", "-364.2986", "-350.607", "-342.74", "-327.6382", "-322.34", "-278.69", "-258.514", "-255.887", "-251.6751", "-240.069", "-238.675", "-216.41", "-186.681", "-181.353", "-178.166", "-169.8", "-158.16", "-154.697", "-147.8504", "-145.8567", "-132.0696", "-116.8", "-101.3982", "-77.2997", "-73.47", "-64.0893", "-60.978", "-54.346", "-45.157", "-34.7379", "-23.9913", "-10.866", "-1.2756", "28.509", "28.687", "35.74", "37.82", "44.156", "49.466", "49.893", "51.79", "53.9515", "72.449", "94.46", "95.56", "107.7634", "108.6024", "117.38", "131.634", "135.91", "145.3338", "148.449", "152.2215", "155.341", "168.244", "176.1747", "182.8833", "195.699", "197.3645", "208.55", "211.504", "218.93", "235.43", "250.86", "254.289", "258.02", "262.169", "333.111", "363.5577", "366.68", "370.74", "388.805", "406.55", "412.354", "414.384", "421.457", "446.996", "454.14", "457.623", "484.0694", "493.45"], "source_dataset": "number_sorting", "source_index": 5}
Transform the word ladder 'HOW' to 'WOP' by changing one letter at a time. Provide your answer as a comma-separated sequence of uppercase letters without spaces. Each step must be a valid English word.
HOW,HOP,WOP
word_ladder
{"chain_length": 3, "difficulty": {"word_length": [3, 5]}, "end_word": "WOP", "source_dataset": "word_ladder", "source_index": 0, "start_word": "HOW", "word_length": 3}
Decrypt this Caesar cipher text: VG FGL UZSJYW S XWW XGJ SUUWKK UGHQAFY GJ VAKLJATMLAFY SFQ HJGBWUL OGJCK MFDWKK QGM UGEHDQ OALZ HSJSYJSHZ. Provide only the decrypted text as your final answer.
DO NOT CHARGE A FEE FOR ACCESS COPYING OR DISTRIBUTING ANY PROJECT WORKS UNLESS YOU COMPLY WITH PARAGRAPH
caesar_cipher
{"cipher_text": "VG FGL UZSJYW S XWW XGJ SUUWKK UGHQAFY GJ VAKLJATMLAFY SFQ HJGBWUL OGJCK MFDWKK QGM UGEHDQ OALZ HSJSYJSHZ", "clear_text": "DO NOT CHARGE A FEE FOR ACCESS COPYING OR DISTRIBUTING ANY PROJECT WORKS UNLESS YOU COMPLY WITH PARAGRAPH", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 18, "rotation": 18, "source_dataset": "caesar_cipher", "source_index": 148}
You are given an n x n grid where each cell can have one of three values: - 0 representing an empty cell - 1 representing a fresh orange - 2 representing a rotten orange Every minute, any fresh orange that is 4-directionally adjacent to a rotten orange becomes rotten. Your task is determine the minimum number of minutes that must elapse until no cell has a fresh orange. If this is impossible, return -1. Now, determine the minimum number of minutes that must elapse until no cell in the grid below has a fresh orange: 1 1 0 1 1 1 1 1 1 1 1 2 2 1 1 1 0 1 2 2 1 1 1 0 0 1 2 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 0 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 1 2 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 0 0 1 1 1 2 1 1 0 1 2 1 1 1 1 2 1 0 1 1 0 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 2 0 1 1 2 1 1 2 2 1 1 1 1 1 1 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 2 1 1 1 1 1 2 1 0 1 0 1 1 1 1 1 2 1 2 0 0 2 2 1 1 1 1 1 1 1 2 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 1 2 1 1 1 1 1 0 1 1 1 2 0 1 1 0 1 1 1 2 1 1 1 1 0 1 1 1 1 0 1 1 1 1 1 0 1 0 0 1 2 1 1 2 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 0 2 1 1 1 1 1 2 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 0 1 1 2 0 0 1 1 1 1 0 1 1 1 1 1 0 1 0 1 1 1 1 1 1 2 1 1 0 0 0 2 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 2 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 2 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 2 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 0 1 2 1 1 1 1 1 1 0 1 2 1 0 1 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 1 0 1 1 1 1 1 0 1 2 1 1 1 1 2 1 1 2 2 1 0 0 1 1 0 1 1 2 0 1 1 1 1 2 1 0 1 2 1 0 1 2 0 1 1 2 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 0 1 0 1 1 0 1 0 1 1 0 0 0 1 1 2 1 2 1 0 2 0 2 1 1 1 1 1 1 1 2 1 1 1 1 0 0 1 1 2 2 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 2 1 1 0 1 1 1 1 2 2 1 1 1 1 2 1 1 0 2 1 1 1 0 1 1 0 0 1 1 1 1 1 0 1 0 1 1 1 1 1 0 1 0 0 2 1 1 1 1 1 1 0 1 1 1 1 2 1 1 1 2 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 0 1 1 0 2 2 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
7
rotten_oranges
{"difficulty": {"n": [25, 50]}, "matrix": [[1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 0, 1, 2, 2, 1, 1, 1, 0, 0, 1, 2, 0], [2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0], [1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 2, 1, 1, 0, 1, 2, 1, 1, 1, 1, 2], [1, 0, 1, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1], [2, 0, 1, 1, 2, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 1], [1, 1, 1, 2, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 0, 0, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2], [1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1], [2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 0, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 0, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1], [1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 0, 1, 1, 2, 0, 0, 1, 1, 1], [1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 2, 1, 1, 0, 0, 0, 2, 1, 1, 1, 1, 1], [1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 0, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 2, 1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 0, 1, 1, 1], [1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 1, 0, 1, 2, 1, 1, 1, 1, 2, 1, 1, 2, 2, 1, 0, 0, 1, 1, 0, 1, 1, 2, 0, 1, 1, 1], [1, 2, 1, 0, 1, 2, 1, 0, 1, 2, 0, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 1, 2, 1, 2, 1, 0, 2, 0, 2, 1, 1], [1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 0, 0, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 1, 1], [0, 2, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 2], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1], [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1], [0, 2, 2, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]], "n": 28, "solution": 7, "source_dataset": "rotten_oranges", "source_index": 109}
Solve this cryptarithm: ZEERE EZDZ LLZL EFFD DZTEL RHHLE TIZL TIR + ZHDZ -------- ZEVDLE Each letter stands for a unique digit (0-9). No leading letter can be zero. Provide a comma separated mapping from letters to digits that satisfies the equation in your final answer. Output format: "A=1,B=2,C=3" (without quotes)
D=2,E=5,F=0,H=8,I=7,L=4,R=9,T=3,V=6,Z=1
cryptarithm
{"difficulty": {"words": [5, 10]}, "digit_to_letter": {"0": "F", "1": "Z", "2": "D", "3": "T", "4": "L", "5": "E", "6": "V", "7": "I", "8": "H", "9": "R"}, "letter_to_digit": {"D": 2, "E": 5, "F": 0, "H": 8, "I": 7, "L": 4, "R": 9, "T": 3, "V": 6, "Z": 1}, "letters": ["L", "R", "H", "Z", "V", "I", "E", "D", "F", "T"], "result_letters": "ZEVDLE", "source_dataset": "cryptarithm", "source_index": 139, "sum_number": 156245, "word_values": [15595, 5121, 4414, 5002, 21354, 98845, 3714, 379, 1821], "words_letters": ["ZEERE", "EZDZ", "LLZL", "EFFD", "DZTEL", "RHHLE", "TIZL", "TIR", "ZHDZ"]}
Given a square matrix, your job is to rotate it clockwise. Your output should be a matrix in the same format as the input. Rotate the matrix below by 810 degrees clockwise: 2 6 0 2 0 4 1 8 0 3 7 4 3 7 2 9 6 3 7 9 8 9 8 5 6 9 5 3 1 8 0 9 5 8 1 9 2 5 1 4 4 5 2 0 7 3 1 7 2 3 9 9 0 5 5 6 1 1 5 9 1 4 7 2 6 2 3 2 2 9 1 6 9 3 0 7 8 6 2 9 4 7 8 1 2 0 3 1 0 7 6 9 6 1 9 7 7 3 8 7 1 5 2 2 2 4 3 3 8 0 7 5 8 1 9 0 1 8 4 2 5 6 8 8 8 7 3 5 1 4 5 4 5 2 1 7 3 1 1 7 8 4 8 6 0 1 7 1 4 1 9 5 3 3 7 8 1 0 1 2 1 0 3 0 7 0 4 3 7 0 5 6 4 0 4 9 8 5 3 8 1 2 7 7 0 5 8 3 8 6 8 9 0 3 1 4 9 5 7 6 5 0 3 8 6 8 1 2 3 2 4 1 8 0 7 7 4 1 1 9 9 2 0 1 0 2 8 4 4 9 6 3 0 2 3 2 6 7 6 5 4 1 7 6 6 8 2 8 0 5 6 1 0 4 0 6 0 7 9 0 3 1 5 1 6 8 8 7 5 3 3 1 2 9 5 8 9 9 5 8 1 5 7 5 9 9 3 5 2 0 0 8 5 1 3 0 5 6 1 9 7 7 2 8 7 5 4 7 6 4 8 4 2 8 5 8 9 8 6 1 9 8 9 4 0 7 7 2 4 6 3 7 8 1 8 3 1 9 9 3 8 4 6 3 2 0 9 1 5 1 7 2 0 6 1 4 9 3 6 8 7 8 5 5 8 3 9 4 3 8 1 8 7 5 5 3 6 8 4 8 9 4 6 8 4 2 8 1 7 1 9 4 6 5 1 0 2 7 3 1 9 2 8 1 1 0 4 6 8 9 9 8 1 5 4 0 4 1 3 0 3 1 2 3 4 9 8 2 1 1 3 0 6 6 9 1 2 2 1 2 3 5 9 6 0 8 7 4 8 0 5 5 9 2 8 1 0 9 9 7 5 3 5 4 8 2 6 9 0 6 8 7 2 7 4 0 2 0 8 4 4 3 1 4 2 8 3 8 3 1 4 1 2 2 8 7 0 3 5 3 1 3 7 2 0 5 6 8 8 7 3 2 4 0 7 1 1 7 7 3 2 4 6 4 5 1 8 3 3 8 5 8 5 6 4 2 1 3 9 2 1 5 8 1 2 9 3 1 9 8 5 2 4 8 9 0 8 3 2 9 6 1 1 5 9 4 4 5 1 4 5 7 5 3 9 7 8 0 6 5 2 4 5 2 5 4 0 1 3 2 7 3 1 7 3 4 2 2 3 2 5 9 0 4 6 8 5 3 1 0 9 3 8 2 8 9 9 1 8 1 1 7 5 0 6 5 1 0 8 8 2 0 2 7 3 5 2 1 9 1 2 9 3 3 5 8 7 8 5 2 0 4 9 5 9 2 4 1 5 7 6 4 7 8 6 9 0 0 3 7 1 4 0 5 6 3 5 8 7 6 6 3 3 8 1 5 8 7 5 8 6 6 1 6 8 1 4 8 0 2 8 5 3 4 9 9 3 7 9 6 0 0 9 1 7 3 1 9 8 2 2 2 8 3 5 6 5 2 5 0 8 4 7 6 8 4 3 0 3 2 9 6 5 2 1 2 2 8 4 6 6 0 7 6 8 9 3 6 6 5 3 9 4 7 6 2 0 9 5 8 6 7 1 7 6 6 2 4 9 8 2 2 1 5 4 6 6 5 2 9 0 7 9 9 0 6 5 4 9 8 5 4 1 0 7 0 5 1 4 1 2 2 7 2 2 8 3 6 5 3 5 0 1 0 6 2 6 7 1 8 9 5 0 1 1 5 8 4 1 9 0 0 5 3 8 2 6 1 6 8 2 6 0 3 0 0 1 7 5 6 4 6 8 7 9 9 0 6 3 0 1 2 4 8 1 4 5 8 7 2 5 7 9 0 6 8 7 6 3 8 4 5 5 3 9 5 9 4 9 4 2 8 1 5 1 1 7 1 3 2 2 3 0 4 9 0 7 5 8 5 4 1 5 5 2 0 5 8 7 3 0 5 5 1 7 6 3 5 1 2 1 5 3 0 9 2 4 4 1 9 9 2 3 2 0 0 3 1 3 2 4 8 5 7 2 8 7 4 3 1 0 5 1 5 3 8 5 7 2 6 2 2 1 4 2 7 1 4 7 8 0 9 7 9 4 1 6 9 5 9 5 9 3 4 1 8 1 6 7 1 0 3 1 5 4 3 6 5 2 8 7 5 9 2 2 2 9 2 6 0 6 4 3 8 5 6 6 2 7 9 9 4 5 2 4 5 9 4 9 3 1 7 7 9 7 7 4 9 1 0 2 0 1 7 4 1 9 0 5 2 8 2 7 4 6 6 5 7 0 3 9 0 9 5 8 4 6 2 8 7 3 1 4 8 8 5 9 8 1 0 4 4 1 8 5 2 5 7 5 7 2 6 4 3 1 2 9 4 2 3 6 0 2 4 1 7 0 4 7 0 2 0 2 1 9 3 2 9 4 7 9 4 8 8 6 4 4 3 7 0 4 0 8 4 0 0 3 9 6 4 6 8 2 4 1 2 1 7 7 7 6 8 3 2 2 2 4 7 8 8 1 8 5 5 5 0 2 8 5 8 7 7 2 4 0 0 0 0 9 0 4 4 8 5 2 5 6 2 2 8 2 0 9 4 8 9 8 6 4 1 8 9 2 2 2 1 6 4 8 6 9 8 4 0 5 8 2 2 6 6 4 9 2 8 9 0 0 0 6 8 4 5 8 9 9 1 8 7 0 4 3 1 6 3 8 9 5 0 4 6 9 2 4 9 4 4 4 9 6 1 1 3 3 8 8 3 4 5 8 0 7 6 5 6 1 2 8 5 4 7 3 6 3 4 3 9 2 4 1 7 6 6 5 4 7 4 0 2 8 9 0 1 2 6 5 6 3 3 4 1 9 4 6 3 4 3 1 0 0 0 6 0 8 9 4 4 0 3 7 7 1 2 7 6 4 4 2 1 2 3 2 8 9 0 5 6 7 0 1 1 6 6 0 9 7 5 6 5 5 9 2 8 6 9 0 2 7 4 3 3 1 3 7 2 3 1 5 7 5 8 1 7 5 0 0 1 6 4 3 6 3 4 7 5 7 2 3 6 9 4 2 4 2 4 2 4 9 6 1 6 1 7 3 6 8 5 9 4 1 2 6 8 3 3
6 1 9 5 9 8 8 9 1 4 9 7 9 0 1 8 9 3 8 1 7 1 5 5 8 0 3 9 6 7 8 4 8 3 9 8 1 2 4 1 4 6 1 6 8 4 8 1 2 8 2 4 4 4 8 9 3 5 8 0 7 6 7 9 0 4 3 5 7 9 9 3 0 6 4 6 3 6 6 1 8 4 1 8 5 9 6 0 3 9 5 1 5 4 5 8 5 9 5 4 0 9 3 6 2 4 5 6 0 7 1 2 4 0 6 6 3 2 7 1 8 8 2 0 0 9 2 0 8 9 4 7 6 7 2 3 3 2 3 7 1 8 0 7 3 3 3 8 8 9 5 2 3 0 4 8 0 8 5 6 5 5 6 7 0 7 7 0 1 6 5 5 0 8 9 1 5 5 2 4 9 6 3 0 1 1 4 4 2 0 4 9 3 5 4 9 5 4 7 2 4 9 0 5 2 0 0 2 2 8 4 2 7 3 3 3 3 2 1 4 1 2 4 0 2 7 0 4 7 7 1 4 3 2 5 4 5 8 3 4 3 8 5 5 7 0 5 6 9 8 8 9 1 5 4 8 5 8 2 3 9 1 5 8 7 1 5 5 0 7 1 2 0 3 7 2 8 1 1 5 7 3 0 9 0 6 5 9 0 2 3 4 9 1 1 4 9 2 5 2 6 1 3 8 7 6 0 3 6 2 2 7 2 7 5 6 3 4 9 8 5 5 8 1 9 9 6 1 7 8 8 7 7 2 5 6 7 1 8 2 1 0 2 5 0 6 3 1 8 0 6 4 6 9 2 1 0 2 1 8 4 6 2 1 5 5 2 2 2 1 2 8 8 7 6 0 8 0 7 3 3 5 6 3 8 6 5 4 4 6 6 5 4 5 6 6 4 6 7 8 4 8 2 8 0 6 1 9 0 5 9 6 5 3 8 3 2 7 6 9 0 4 9 4 8 0 3 6 2 9 8 5 8 1 1 7 6 1 1 1 4 1 5 9 1 4 6 8 9 5 0 0 7 1 3 4 9 2 8 3 5 8 7 8 1 5 7 5 5 2 7 6 2 1 8 4 5 1 5 2 6 0 3 6 1 9 5 4 3 7 3 0 9 3 4 8 9 9 0 6 7 4 2 7 9 9 7 0 6 8 2 7 4 8 7 7 2 9 8 6 0 5 4 8 8 1 8 0 5 7 9 7 2 6 4 2 4 9 2 0 9 0 9 3 2 5 3 2 7 6 3 0 6 5 5 3 8 8 6 1 9 6 1 7 6 4 1 6 0 2 4 9 4 4 6 8 4 0 4 3 4 4 8 8 8 6 2 6 0 2 4 0 4 1 7 7 6 0 3 1 5 6 8 3 4 9 5 9 2 0 0 1 9 4 0 3 2 9 5 1 7 7 4 0 2 2 3 8 7 6 0 9 3 2 9 2 6 9 7 6 1 7 5 6 5 6 4 2 3 7 2 0 0 9 3 0 2 8 4 3 5 3 8 4 2 5 8 5 1 8 2 7 1 7 8 8 5 8 2 0 4 1 6 3 2 7 7 6 4 5 0 6 6 9 4 1 3 0 5 0 3 9 9 3 6 1 3 5 4 4 2 3 7 9 9 2 3 5 5 9 1 7 4 4 7 6 9 8 0 4 0 5 5 6 1 5 3 0 6 8 6 4 9 0 2 2 0 0 2 1 8 4 9 8 2 6 2 7 1 9 9 3 1 5 4 2 9 6 2 8 9 7 0 5 9 1 5 2 5 9 0 8 7 4 7 2 1 9 5 0 3 0 4 4 1 7 5 8 6 3 2 4 4 2 0 8 4 4 4 1 5 1 5 7 3 2 2 9 0 8 3 8 1 0 2 2 5 7 5 5 1 0 7 3 9 9 1 1 7 7 4 6 4 2 1 6 9 0 1 7 9 5 5 1 1 3 3 2 1 9 1 8 3 8 8 7 2 6 8 4 3 8 1 8 6 3 6 4 9 6 4 4 7 2 3 3 5 6 4 6 0 5 2 7 7 0 7 0 7 4 5 1 3 2 0 1 0 9 1 7 4 5 1 7 4 0 6 4 8 1 0 8 1 1 3 3 9 4 1 4 2 9 1 2 3 8 7 4 9 1 9 4 0 0 7 8 1 1 7 6 7 2 4 2 1 9 5 2 4 7 7 5 8 5 4 6 0 6 8 6 4 7 4 3 3 3 6 0 4 6 8 4 7 5 7 5 2 9 3 3 2 8 1 2 2 1 7 3 7 4 5 1 2 8 6 6 4 0 0 3 2 2 2 1 0 4 3 3 5 0 4 3 8 2 6 5 6 1 1 9 3 8 5 7 0 1 9 3 7 2 8 7 2 5 6 0 5 5 2 9 4 4 8 6 8 7 1 6 1 8 4 2 2 3 8 5 2 0 3 9 6 7 2 4 7 6 2 1 1 9 6 2 6 9 6 2 3 6 6 2 7 8 1 8 3 0 1 1 8 2 3 1 5 7 3 1 8 0 2 7 0 8 7 5 6 5 5 9 7 9 0 1 3 1 2 1 4 8 4 9 8 1 0 7 9 2 6 4 2 8 9 5 2 2 8 0 2 6 2 8 4 2 2 3 1 0 1 0 7 7 5 9 5 1 5 3 8 9 7 8 5 9 9 7 0 3 2 0 4 8 8 6 3 0 8 8 1 5 9 8 2 0 1 6 8 7 6 3 8 1 9 5 1 8 0 8 5 3 6 0 2 7 1 3 9 9 1 1 9 5 4 6 2 3 9 9 1 7 1 9 7 3 9 9 8 1 7 2 0 9 8 3 5 1 5 1 1 3 0 0 7 8 1 5 2 7 0 6 5 8 0 2 3 8 0 5 4 2 1 0 5 9 9 9 6 9 4 4 3 1 5 5 3 9 9 1 1 5 1 0 6 8 6 5 5 3 8 4 9 2 2 1 2 9 2 4 3 1 0 0 3 8 6 3 6 4 3 4 9 4 6 9 7 5 0 8 4 7 9 1 8 0 6 3 0 5 4 2 9 0 0 2 7 4 2 2 1 6 6 2 3 3 8 5 8 1 2 0 8 3 7 1 2 3 1 5 3 9 3 0 7 4 7 8 8 4 4 4 1 2 1 1 2 4 1 5 6 2 3 5 5 1 5 2 8 4 4 8 2 6 8 8 9 8 0 2 3 1 0 1 6 9 9 7 7 4 7 2 4 9 3 8 5 4 5 2 8 8 3 4 8 2 1 1 8 4 8 8 4 6 5 1 7 5
rotate_matrix
{"difficulty": {"n": [25, 50], "num_rotations": [5, 15]}, "matrix": [[2, 6, 0, 2, 0, 4, 1, 8, 0, 3, 7, 4, 3, 7, 2, 9, 6, 3, 7, 9, 8, 9, 8, 5, 6, 9, 5, 3, 1, 8, 0, 9, 5, 8, 1, 9, 2, 5], [1, 4, 4, 5, 2, 0, 7, 3, 1, 7, 2, 3, 9, 9, 0, 5, 5, 6, 1, 1, 5, 9, 1, 4, 7, 2, 6, 2, 3, 2, 2, 9, 1, 6, 9, 3, 0, 7], [8, 6, 2, 9, 4, 7, 8, 1, 2, 0, 3, 1, 0, 7, 6, 9, 6, 1, 9, 7, 7, 3, 8, 7, 1, 5, 2, 2, 2, 4, 3, 3, 8, 0, 7, 5, 8, 1], [9, 0, 1, 8, 4, 2, 5, 6, 8, 8, 8, 7, 3, 5, 1, 4, 5, 4, 5, 2, 1, 7, 3, 1, 1, 7, 8, 4, 8, 6, 0, 1, 7, 1, 4, 1, 9, 5], [3, 3, 7, 8, 1, 0, 1, 2, 1, 0, 3, 0, 7, 0, 4, 3, 7, 0, 5, 6, 4, 0, 4, 9, 8, 5, 3, 8, 1, 2, 7, 7, 0, 5, 8, 3, 8, 6], [8, 9, 0, 3, 1, 4, 9, 5, 7, 6, 5, 0, 3, 8, 6, 8, 1, 2, 3, 2, 4, 1, 8, 0, 7, 7, 4, 1, 1, 9, 9, 2, 0, 1, 0, 2, 8, 4], [4, 9, 6, 3, 0, 2, 3, 2, 6, 7, 6, 5, 4, 1, 7, 6, 6, 8, 2, 8, 0, 5, 6, 1, 0, 4, 0, 6, 0, 7, 9, 0, 3, 1, 5, 1, 6, 8], [8, 7, 5, 3, 3, 1, 2, 9, 5, 8, 9, 9, 5, 8, 1, 5, 7, 5, 9, 9, 3, 5, 2, 0, 0, 8, 5, 1, 3, 0, 5, 6, 1, 9, 7, 7, 2, 8], [7, 5, 4, 7, 6, 4, 8, 4, 2, 8, 5, 8, 9, 8, 6, 1, 9, 8, 9, 4, 0, 7, 7, 2, 4, 6, 3, 7, 8, 1, 8, 3, 1, 9, 9, 3, 8, 4], [6, 3, 2, 0, 9, 1, 5, 1, 7, 2, 0, 6, 1, 4, 9, 3, 6, 8, 7, 8, 5, 5, 8, 3, 9, 4, 3, 8, 1, 8, 7, 5, 5, 3, 6, 8, 4, 8], [9, 4, 6, 8, 4, 2, 8, 1, 7, 1, 9, 4, 6, 5, 1, 0, 2, 7, 3, 1, 9, 2, 8, 1, 1, 0, 4, 6, 8, 9, 9, 8, 1, 5, 4, 0, 4, 1], [3, 0, 3, 1, 2, 3, 4, 9, 8, 2, 1, 1, 3, 0, 6, 6, 9, 1, 2, 2, 1, 2, 3, 5, 9, 6, 0, 8, 7, 4, 8, 0, 5, 5, 9, 2, 8, 1], [0, 9, 9, 7, 5, 3, 5, 4, 8, 2, 6, 9, 0, 6, 8, 7, 2, 7, 4, 0, 2, 0, 8, 4, 4, 3, 1, 4, 2, 8, 3, 8, 3, 1, 4, 1, 2, 2], [8, 7, 0, 3, 5, 3, 1, 3, 7, 2, 0, 5, 6, 8, 8, 7, 3, 2, 4, 0, 7, 1, 1, 7, 7, 3, 2, 4, 6, 4, 5, 1, 8, 3, 3, 8, 5, 8], [5, 6, 4, 2, 1, 3, 9, 2, 1, 5, 8, 1, 2, 9, 3, 1, 9, 8, 5, 2, 4, 8, 9, 0, 8, 3, 2, 9, 6, 1, 1, 5, 9, 4, 4, 5, 1, 4], [5, 7, 5, 3, 9, 7, 8, 0, 6, 5, 2, 4, 5, 2, 5, 4, 0, 1, 3, 2, 7, 3, 1, 7, 3, 4, 2, 2, 3, 2, 5, 9, 0, 4, 6, 8, 5, 3], [1, 0, 9, 3, 8, 2, 8, 9, 9, 1, 8, 1, 1, 7, 5, 0, 6, 5, 1, 0, 8, 8, 2, 0, 2, 7, 3, 5, 2, 1, 9, 1, 2, 9, 3, 3, 5, 8], [7, 8, 5, 2, 0, 4, 9, 5, 9, 2, 4, 1, 5, 7, 6, 4, 7, 8, 6, 9, 0, 0, 3, 7, 1, 4, 0, 5, 6, 3, 5, 8, 7, 6, 6, 3, 3, 8], [1, 5, 8, 7, 5, 8, 6, 6, 1, 6, 8, 1, 4, 8, 0, 2, 8, 5, 3, 4, 9, 9, 3, 7, 9, 6, 0, 0, 9, 1, 7, 3, 1, 9, 8, 2, 2, 2], [8, 3, 5, 6, 5, 2, 5, 0, 8, 4, 7, 6, 8, 4, 3, 0, 3, 2, 9, 6, 5, 2, 1, 2, 2, 8, 4, 6, 6, 0, 7, 6, 8, 9, 3, 6, 6, 5], [3, 9, 4, 7, 6, 2, 0, 9, 5, 8, 6, 7, 1, 7, 6, 6, 2, 4, 9, 8, 2, 2, 1, 5, 4, 6, 6, 5, 2, 9, 0, 7, 9, 9, 0, 6, 5, 4], [9, 8, 5, 4, 1, 0, 7, 0, 5, 1, 4, 1, 2, 2, 7, 2, 2, 8, 3, 6, 5, 3, 5, 0, 1, 0, 6, 2, 6, 7, 1, 8, 9, 5, 0, 1, 1, 5], [8, 4, 1, 9, 0, 0, 5, 3, 8, 2, 6, 1, 6, 8, 2, 6, 0, 3, 0, 0, 1, 7, 5, 6, 4, 6, 8, 7, 9, 9, 0, 6, 3, 0, 1, 2, 4, 8], [1, 4, 5, 8, 7, 2, 5, 7, 9, 0, 6, 8, 7, 6, 3, 8, 4, 5, 5, 3, 9, 5, 9, 4, 9, 4, 2, 8, 1, 5, 1, 1, 7, 1, 3, 2, 2, 3], [0, 4, 9, 0, 7, 5, 8, 5, 4, 1, 5, 5, 2, 0, 5, 8, 7, 3, 0, 5, 5, 1, 7, 6, 3, 5, 1, 2, 1, 5, 3, 0, 9, 2, 4, 4, 1, 9], [9, 2, 3, 2, 0, 0, 3, 1, 3, 2, 4, 8, 5, 7, 2, 8, 7, 4, 3, 1, 0, 5, 1, 5, 3, 8, 5, 7, 2, 6, 2, 2, 1, 4, 2, 7, 1, 4], [7, 8, 0, 9, 7, 9, 4, 1, 6, 9, 5, 9, 5, 9, 3, 4, 1, 8, 1, 6, 7, 1, 0, 3, 1, 5, 4, 3, 6, 5, 2, 8, 7, 5, 9, 2, 2, 2], [9, 2, 6, 0, 6, 4, 3, 8, 5, 6, 6, 2, 7, 9, 9, 4, 5, 2, 4, 5, 9, 4, 9, 3, 1, 7, 7, 9, 7, 7, 4, 9, 1, 0, 2, 0, 1, 7], [4, 1, 9, 0, 5, 2, 8, 2, 7, 4, 6, 6, 5, 7, 0, 3, 9, 0, 9, 5, 8, 4, 6, 2, 8, 7, 3, 1, 4, 8, 8, 5, 9, 8, 1, 0, 4, 4], [1, 8, 5, 2, 5, 7, 5, 7, 2, 6, 4, 3, 1, 2, 9, 4, 2, 3, 6, 0, 2, 4, 1, 7, 0, 4, 7, 0, 2, 0, 2, 1, 9, 3, 2, 9, 4, 7], [9, 4, 8, 8, 6, 4, 4, 3, 7, 0, 4, 0, 8, 4, 0, 0, 3, 9, 6, 4, 6, 8, 2, 4, 1, 2, 1, 7, 7, 7, 6, 8, 3, 2, 2, 2, 4, 7], [8, 8, 1, 8, 5, 5, 5, 0, 2, 8, 5, 8, 7, 7, 2, 4, 0, 0, 0, 0, 9, 0, 4, 4, 8, 5, 2, 5, 6, 2, 2, 8, 2, 0, 9, 4, 8, 9], [8, 6, 4, 1, 8, 9, 2, 2, 2, 1, 6, 4, 8, 6, 9, 8, 4, 0, 5, 8, 2, 2, 6, 6, 4, 9, 2, 8, 9, 0, 0, 0, 6, 8, 4, 5, 8, 9], [9, 1, 8, 7, 0, 4, 3, 1, 6, 3, 8, 9, 5, 0, 4, 6, 9, 2, 4, 9, 4, 4, 4, 9, 6, 1, 1, 3, 3, 8, 8, 3, 4, 5, 8, 0, 7, 6], [5, 6, 1, 2, 8, 5, 4, 7, 3, 6, 3, 4, 3, 9, 2, 4, 1, 7, 6, 6, 5, 4, 7, 4, 0, 2, 8, 9, 0, 1, 2, 6, 5, 6, 3, 3, 4, 1], [9, 4, 6, 3, 4, 3, 1, 0, 0, 0, 6, 0, 8, 9, 4, 4, 0, 3, 7, 7, 1, 2, 7, 6, 4, 4, 2, 1, 2, 3, 2, 8, 9, 0, 5, 6, 7, 0], [1, 1, 6, 6, 0, 9, 7, 5, 6, 5, 5, 9, 2, 8, 6, 9, 0, 2, 7, 4, 3, 3, 1, 3, 7, 2, 3, 1, 5, 7, 5, 8, 1, 7, 5, 0, 0, 1], [6, 4, 3, 6, 3, 4, 7, 5, 7, 2, 3, 6, 9, 4, 2, 4, 2, 4, 2, 4, 9, 6, 1, 6, 1, 7, 3, 6, 8, 5, 9, 4, 1, 2, 6, 8, 3, 3]], "n": 38, "num_rotations": 9, "solution": [[6, 1, 9, 5, 9, 8, 8, 9, 1, 4, 9, 7, 9, 0, 1, 8, 9, 3, 8, 1, 7, 1, 5, 5, 8, 0, 3, 9, 6, 7, 8, 4, 8, 3, 9, 8, 1, 2], [4, 1, 4, 6, 1, 6, 8, 4, 8, 1, 2, 8, 2, 4, 4, 4, 8, 9, 3, 5, 8, 0, 7, 6, 7, 9, 0, 4, 3, 5, 7, 9, 9, 3, 0, 6, 4, 6], [3, 6, 6, 1, 8, 4, 1, 8, 5, 9, 6, 0, 3, 9, 5, 1, 5, 4, 5, 8, 5, 9, 5, 4, 0, 9, 3, 6, 2, 4, 5, 6, 0, 7, 1, 2, 4, 0], [6, 6, 3, 2, 7, 1, 8, 8, 2, 0, 0, 9, 2, 0, 8, 9, 4, 7, 6, 7, 2, 3, 3, 2, 3, 7, 1, 8, 0, 7, 3, 3, 3, 8, 8, 9, 5, 2], [3, 0, 4, 8, 0, 8, 5, 6, 5, 5, 6, 7, 0, 7, 7, 0, 1, 6, 5, 5, 0, 8, 9, 1, 5, 5, 2, 4, 9, 6, 3, 0, 1, 1, 4, 4, 2, 0], [4, 9, 3, 5, 4, 9, 5, 4, 7, 2, 4, 9, 0, 5, 2, 0, 0, 2, 2, 8, 4, 2, 7, 3, 3, 3, 3, 2, 1, 4, 1, 2, 4, 0, 2, 7, 0, 4], [7, 7, 1, 4, 3, 2, 5, 4, 5, 8, 3, 4, 3, 8, 5, 5, 7, 0, 5, 6, 9, 8, 8, 9, 1, 5, 4, 8, 5, 8, 2, 3, 9, 1, 5, 8, 7, 1], [5, 5, 0, 7, 1, 2, 0, 3, 7, 2, 8, 1, 1, 5, 7, 3, 0, 9, 0, 6, 5, 9, 0, 2, 3, 4, 9, 1, 1, 4, 9, 2, 5, 2, 6, 1, 3, 8], [7, 6, 0, 3, 6, 2, 2, 7, 2, 7, 5, 6, 3, 4, 9, 8, 5, 5, 8, 1, 9, 9, 6, 1, 7, 8, 8, 7, 7, 2, 5, 6, 7, 1, 8, 2, 1, 0], [2, 5, 0, 6, 3, 1, 8, 0, 6, 4, 6, 9, 2, 1, 0, 2, 1, 8, 4, 6, 2, 1, 5, 5, 2, 2, 2, 1, 2, 8, 8, 7, 6, 0, 8, 0, 7, 3], [3, 5, 6, 3, 8, 6, 5, 4, 4, 6, 6, 5, 4, 5, 6, 6, 4, 6, 7, 8, 4, 8, 2, 8, 0, 6, 1, 9, 0, 5, 9, 6, 5, 3, 8, 3, 2, 7], [6, 9, 0, 4, 9, 4, 8, 0, 3, 6, 2, 9, 8, 5, 8, 1, 1, 7, 6, 1, 1, 1, 4, 1, 5, 9, 1, 4, 6, 8, 9, 5, 0, 0, 7, 1, 3, 4], [9, 2, 8, 3, 5, 8, 7, 8, 1, 5, 7, 5, 5, 2, 7, 6, 2, 1, 8, 4, 5, 1, 5, 2, 6, 0, 3, 6, 1, 9, 5, 4, 3, 7, 3, 0, 9, 3], [4, 8, 9, 9, 0, 6, 7, 4, 2, 7, 9, 9, 7, 0, 6, 8, 2, 7, 4, 8, 7, 7, 2, 9, 8, 6, 0, 5, 4, 8, 8, 1, 8, 0, 5, 7, 9, 7], [2, 6, 4, 2, 4, 9, 2, 0, 9, 0, 9, 3, 2, 5, 3, 2, 7, 6, 3, 0, 6, 5, 5, 3, 8, 8, 6, 1, 9, 6, 1, 7, 6, 4, 1, 6, 0, 2], [4, 9, 4, 4, 6, 8, 4, 0, 4, 3, 4, 4, 8, 8, 8, 6, 2, 6, 0, 2, 4, 0, 4, 1, 7, 7, 6, 0, 3, 1, 5, 6, 8, 3, 4, 9, 5, 9], [2, 0, 0, 1, 9, 4, 0, 3, 2, 9, 5, 1, 7, 7, 4, 0, 2, 2, 3, 8, 7, 6, 0, 9, 3, 2, 9, 2, 6, 9, 7, 6, 1, 7, 5, 6, 5, 6], [4, 2, 3, 7, 2, 0, 0, 9, 3, 0, 2, 8, 4, 3, 5, 3, 8, 4, 2, 5, 8, 5, 1, 8, 2, 7, 1, 7, 8, 8, 5, 8, 2, 0, 4, 1, 6, 3], [2, 7, 7, 6, 4, 5, 0, 6, 6, 9, 4, 1, 3, 0, 5, 0, 3, 9, 9, 3, 6, 1, 3, 5, 4, 4, 2, 3, 7, 9, 9, 2, 3, 5, 5, 9, 1, 7], [4, 4, 7, 6, 9, 8, 0, 4, 0, 5, 5, 6, 1, 5, 3, 0, 6, 8, 6, 4, 9, 0, 2, 2, 0, 0, 2, 1, 8, 4, 9, 8, 2, 6, 2, 7, 1, 9], [9, 3, 1, 5, 4, 2, 9, 6, 2, 8, 9, 7, 0, 5, 9, 1, 5, 2, 5, 9, 0, 8, 7, 4, 7, 2, 1, 9, 5, 0, 3, 0, 4, 4, 1, 7, 5, 8], [6, 3, 2, 4, 4, 2, 0, 8, 4, 4, 4, 1, 5, 1, 5, 7, 3, 2, 2, 9, 0, 8, 3, 8, 1, 0, 2, 2, 5, 7, 5, 5, 1, 0, 7, 3, 9, 9], [1, 1, 7, 7, 4, 6, 4, 2, 1, 6, 9, 0, 1, 7, 9, 5, 5, 1, 1, 3, 3, 2, 1, 9, 1, 8, 3, 8, 8, 7, 2, 6, 8, 4, 3, 8, 1, 8], [6, 3, 6, 4, 9, 6, 4, 4, 7, 2, 3, 3, 5, 6, 4, 6, 0, 5, 2, 7, 7, 0, 7, 0, 7, 4, 5, 1, 3, 2, 0, 1, 0, 9, 1, 7, 4, 5], [1, 7, 4, 0, 6, 4, 8, 1, 0, 8, 1, 1, 3, 3, 9, 4, 1, 4, 2, 9, 1, 2, 3, 8, 7, 4, 9, 1, 9, 4, 0, 0, 7, 8, 1, 1, 7, 6], [7, 2, 4, 2, 1, 9, 5, 2, 4, 7, 7, 5, 8, 5, 4, 6, 0, 6, 8, 6, 4, 7, 4, 3, 3, 3, 6, 0, 4, 6, 8, 4, 7, 5, 7, 5, 2, 9], [3, 3, 2, 8, 1, 2, 2, 1, 7, 3, 7, 4, 5, 1, 2, 8, 6, 6, 4, 0, 0, 3, 2, 2, 2, 1, 0, 4, 3, 3, 5, 0, 4, 3, 8, 2, 6, 5], [6, 1, 1, 9, 3, 8, 5, 7, 0, 1, 9, 3, 7, 2, 8, 7, 2, 5, 6, 0, 5, 5, 2, 9, 4, 4, 8, 6, 8, 7, 1, 6, 1, 8, 4, 2, 2, 3], [8, 5, 2, 0, 3, 9, 6, 7, 2, 4, 7, 6, 2, 1, 1, 9, 6, 2, 6, 9, 6, 2, 3, 6, 6, 2, 7, 8, 1, 8, 3, 0, 1, 1, 8, 2, 3, 1], [5, 7, 3, 1, 8, 0, 2, 7, 0, 8, 7, 5, 6, 5, 5, 9, 7, 9, 0, 1, 3, 1, 2, 1, 4, 8, 4, 9, 8, 1, 0, 7, 9, 2, 6, 4, 2, 8], [9, 5, 2, 2, 8, 0, 2, 6, 2, 8, 4, 2, 2, 3, 1, 0, 1, 0, 7, 7, 5, 9, 5, 1, 5, 3, 8, 9, 7, 8, 5, 9, 9, 7, 0, 3, 2, 0], [4, 8, 8, 6, 3, 0, 8, 8, 1, 5, 9, 8, 2, 0, 1, 6, 8, 7, 6, 3, 8, 1, 9, 5, 1, 8, 0, 8, 5, 3, 6, 0, 2, 7, 1, 3, 9, 9], [1, 1, 9, 5, 4, 6, 2, 3, 9, 9, 1, 7, 1, 9, 7, 3, 9, 9, 8, 1, 7, 2, 0, 9, 8, 3, 5, 1, 5, 1, 1, 3, 0, 0, 7, 8, 1, 5], [2, 7, 0, 6, 5, 8, 0, 2, 3, 8, 0, 5, 4, 2, 1, 0, 5, 9, 9, 9, 6, 9, 4, 4, 3, 1, 5, 5, 3, 9, 9, 1, 1, 5, 1, 0, 6, 8], [6, 5, 5, 3, 8, 4, 9, 2, 2, 1, 2, 9, 2, 4, 3, 1, 0, 0, 3, 8, 6, 3, 6, 4, 3, 4, 9, 4, 6, 9, 7, 5, 0, 8, 4, 7, 9, 1], [8, 0, 6, 3, 0, 5, 4, 2, 9, 0, 0, 2, 7, 4, 2, 2, 1, 6, 6, 2, 3, 3, 8, 5, 8, 1, 2, 0, 8, 3, 7, 1, 2, 3, 1, 5, 3, 9], [3, 0, 7, 4, 7, 8, 8, 4, 4, 4, 1, 2, 1, 1, 2, 4, 1, 5, 6, 2, 3, 5, 5, 1, 5, 2, 8, 4, 4, 8, 2, 6, 8, 8, 9, 8, 0, 2], [3, 1, 0, 1, 6, 9, 9, 7, 7, 4, 7, 2, 4, 9, 3, 8, 5, 4, 5, 2, 8, 8, 3, 4, 8, 2, 1, 1, 8, 4, 8, 8, 4, 6, 5, 1, 7, 5]], "source_dataset": "rotate_matrix", "source_index": 59}
An anagram is a word formed by rearranging the letters of a different word, using all the original letters exactly once. Your job is to group the anagrams together. You can return the answer in any order. The output is a list of lists of strings, where each outer list contains a group of anagrams, e.g. [["eat", "tea"], ["tan", "nat"]]. Group the following list of words into anagrams: ["genitorial", "religation", "headraces", "scarehead", "unsoot", "tonous", "recock", "cocker", "moderatist", "stromateid", "quip", "piqu", "erie", "eire", "healder", "hederal", "potshard", "hardtops", "egocentrically", "geocentrically", "rastling", "starling", "xylosma", "xylomas", "stingo", "tigons", "ingots", "cytophagous", "cytopahgous", "spurner", "pruners", "boney", "ebony", "wilson", "lowsin", "stackmen", "tacksmen", "titulars", "ultraist", "altruist", "impressario", "impresarios", "adenous", "douanes", "tilts", "stilt", "gup", "pug", "heatsman", "anthemas", "obfirm", "biform", "besoms", "emboss", "tace", "cate", "teca", "theines", "teenish", "livening", "nievling", "levining", "repassant", "apartness", "thermotypic", "phytometric", "damasse", "amassed", "groining", "ignoring", "affairs", "raffias", "lamellose", "semolella", "intire", "tinier", "macro", "carom", "marco", "coram", "dtd", "ddt", "senegal", "angeles", "onrushing", "unhorsing", "formly", "formyl", "burglarise", "burglaries", "ratals", "tarsal", "talars", "altars", "astral", "treeing", "integer", "giterne", "retinge", "insular", "urinals", "lysing", "lyings", "callosum", "mollusca"]
[["adenous", "douanes"], ["affairs", "raffias"], ["altars", "astral", "ratals", "talars", "tarsal"], ["altruist", "titulars", "ultraist"], ["amassed", "damasse"], ["angeles", "senegal"], ["anthemas", "heatsman"], ["apartness", "repassant"], ["besoms", "emboss"], ["biform", "obfirm"], ["boney", "ebony"], ["burglaries", "burglarise"], ["callosum", "mollusca"], ["carom", "coram", "macro", "marco"], ["cate", "tace", "teca"], ["cocker", "recock"], ["cytopahgous", "cytophagous"], ["ddt", "dtd"], ["egocentrically", "geocentrically"], ["eire", "erie"], ["formly", "formyl"], ["genitorial", "religation"], ["giterne", "integer", "retinge", "treeing"], ["groining", "ignoring"], ["gup", "pug"], ["hardtops", "potshard"], ["headraces", "scarehead"], ["healder", "hederal"], ["impresarios", "impressario"], ["ingots", "stingo", "tigons"], ["insular", "urinals"], ["intire", "tinier"], ["lamellose", "semolella"], ["levining", "livening", "nievling"], ["lowsin", "wilson"], ["lyings", "lysing"], ["moderatist", "stromateid"], ["onrushing", "unhorsing"], ["phytometric", "thermotypic"], ["piqu", "quip"], ["pruners", "spurner"], ["rastling", "starling"], ["stackmen", "tacksmen"], ["stilt", "tilts"], ["teenish", "theines"], ["tonous", "unsoot"], ["xylomas", "xylosma"]]
group_anagrams
{"anagram_groups": 47, "difficulty": {"anagram_groups": [10, 50], "words_per_group": [2, 5]}, "solution": [["adenous", "douanes"], ["affairs", "raffias"], ["altars", "astral", "ratals", "talars", "tarsal"], ["altruist", "titulars", "ultraist"], ["amassed", "damasse"], ["angeles", "senegal"], ["anthemas", "heatsman"], ["apartness", "repassant"], ["besoms", "emboss"], ["biform", "obfirm"], ["boney", "ebony"], ["burglaries", "burglarise"], ["callosum", "mollusca"], ["carom", "coram", "macro", "marco"], ["cate", "tace", "teca"], ["cocker", "recock"], ["cytopahgous", "cytophagous"], ["ddt", "dtd"], ["egocentrically", "geocentrically"], ["eire", "erie"], ["formly", "formyl"], ["genitorial", "religation"], ["giterne", "integer", "retinge", "treeing"], ["groining", "ignoring"], ["gup", "pug"], ["hardtops", "potshard"], ["headraces", "scarehead"], ["healder", "hederal"], ["impresarios", "impressario"], ["ingots", "stingo", "tigons"], ["insular", "urinals"], ["intire", "tinier"], ["lamellose", "semolella"], ["levining", "livening", "nievling"], ["lowsin", "wilson"], ["lyings", "lysing"], ["moderatist", "stromateid"], ["onrushing", "unhorsing"], ["phytometric", "thermotypic"], ["piqu", "quip"], ["pruners", "spurner"], ["rastling", "starling"], ["stackmen", "tacksmen"], ["stilt", "tilts"], ["teenish", "theines"], ["tonous", "unsoot"], ["xylomas", "xylosma"]], "source_dataset": "group_anagrams", "source_index": 77, "words": ["genitorial", "religation", "headraces", "scarehead", "unsoot", "tonous", "recock", "cocker", "moderatist", "stromateid", "quip", "piqu", "erie", "eire", "healder", "hederal", "potshard", "hardtops", "egocentrically", "geocentrically", "rastling", "starling", "xylosma", "xylomas", "stingo", "tigons", "ingots", "cytophagous", "cytopahgous", "spurner", "pruners", "boney", "ebony", "wilson", "lowsin", "stackmen", "tacksmen", "titulars", "ultraist", "altruist", "impressario", "impresarios", "adenous", "douanes", "tilts", "stilt", "gup", "pug", "heatsman", "anthemas", "obfirm", "biform", "besoms", "emboss", "tace", "cate", "teca", "theines", "teenish", "livening", "nievling", "levining", "repassant", "apartness", "thermotypic", "phytometric", "damasse", "amassed", "groining", "ignoring", "affairs", "raffias", "lamellose", "semolella", "intire", "tinier", "macro", "carom", "marco", "coram", "dtd", "ddt", "senegal", "angeles", "onrushing", "unhorsing", "formly", "formyl", "burglarise", "burglaries", "ratals", "tarsal", "talars", "altars", "astral", "treeing", "integer", "giterne", "retinge", "insular", "urinals", "lysing", "lyings", "callosum", "mollusca"]}
What will this Game of Life board look like after 2 steps of simulation? Assume a Moore neighborhood and wrapping topology. Reply as array of arrays representing rows in the grid from top to bottom in JSON format. (An empty 3x3 grid would look like this: [[0,0,0],[0,0,0],[0,0,0]]) [[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]].
[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]
game_of_life
{"difficulty": {"filled_cells_weights": 0.2, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2}, "filled_cells": 10, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2, "source_dataset": "game_of_life", "source_index": 21}
What will this Game of Life board look like after 2 steps of simulation? Assume a Moore neighborhood and wrapping topology. Reply as array of arrays representing rows in the grid from top to bottom in JSON format. (An empty 3x3 grid would look like this: [[0,0,0],[0,0,0],[0,0,0]]) [[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0], [0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]].
[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]
game_of_life
{"difficulty": {"filled_cells_weights": 0.2, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2}, "filled_cells": 10, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2, "source_dataset": "game_of_life", "source_index": 114}
What will this Game of Life board look like after 2 steps of simulation? Assume a Moore neighborhood and wrapping topology. Reply as array of arrays representing rows in the grid from top to bottom in JSON format. (An empty 3x3 grid would look like this: [[0,0,0],[0,0,0],[0,0,0]]) [[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]].
[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]
game_of_life
{"difficulty": {"filled_cells_weights": 0.2, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2}, "filled_cells": 10, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2, "source_dataset": "game_of_life", "source_index": 59}
What will this Game of Life board look like after 2 steps of simulation? Assume a Moore neighborhood and wrapping topology. Reply as array of arrays representing rows in the grid from top to bottom in JSON format. (An empty 3x3 grid would look like this: [[0,0,0],[0,0,0],[0,0,0]]) [[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]].
[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]
game_of_life
{"difficulty": {"filled_cells_weights": 0.2, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2}, "filled_cells": 10, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2, "source_dataset": "game_of_life", "source_index": 40}
Your task is to convert a number between two different bases. If the target base is > 10, use lowercase letters a-z for digits above 9. Now, convert the base-15 number 1b155 to base-9
143708
base_conversion
{"decimal_value": 88055, "difficulty": {"base": [9, 18], "value": [10000, 100000]}, "source_base": 15, "source_dataset": "base_conversion", "source_index": 119, "source_repr": "1b155", "target_base": 9, "target_repr": "143708"}
Transform the word ladder 'KNOWN' to 'BRAVO' by changing one letter at a time. Provide your answer as a comma-separated sequence of uppercase letters without spaces. Each step must be a valid English word.
KNOWN,KNOWS,KNOBS,SNOBS,SLOBS,GLOBS,GLOBE,GLOVE,GROVE,GRAVE,BRAVE,BRAVO
word_ladder
{"chain_length": 12, "difficulty": {"word_length": [3, 5]}, "end_word": "BRAVO", "source_dataset": "word_ladder", "source_index": 52, "start_word": "KNOWN", "word_length": 5}
Your task is to convert a number between two different bases. If the target base is > 10, use lowercase letters a-z for digits above 9. Now, convert the base-13 number a315 to hexadecimal
57df
base_conversion
{"decimal_value": 22495, "difficulty": {"base": [9, 18], "value": [10000, 100000]}, "source_base": 13, "source_dataset": "base_conversion", "source_index": 88, "source_repr": "a315", "target_base": 16, "target_repr": "57df"}
You are a police officer. A maniac has planted a bomb next to a public fountain. To defuse the bomb, you must solve a puzzle. The puzzle is solved when you fill any of the available jugs with the target amount of water. You have three move types: 'fill', 'empty' and 'pour'. To fill Jug A, you 'fill A'. To empty Jug B, you 'empty B'. To pour the contents of Jug A into Jug B, you 'pour A->B'. All jugs are empty to begin with. The empty jugs hold this many litres of water: A:11, B:13, C:11, D:11 And your target is: 1 litres. How do you defuse the bomb? Reply as a JSON-parsable list of moves which result in any of the jugs being filled with the target amount.
["fill A", "pour A->B", "fill A", "pour A->B", "empty B", "pour A->B", "fill A", "pour A->B", "empty B", "pour A->B", "fill A", "pour A->B", "empty B", "pour A->B", "fill A", "pour A->B", "empty B", "pour A->B", "fill A", "pour A->B"]
jugs
{"difficulty": {"difficulty": 10, "num_jugs": 4}, "puzzle": {"jug_capacities": [11, 13, 11, 11], "min_moves": 20, "target": 1}, "source_dataset": "jugs", "source_index": 108}
You are a police officer. A maniac has planted a bomb next to a public fountain. To defuse the bomb, you must solve a puzzle. The puzzle is solved when you fill any of the available jugs with the target amount of water. You have three move types: 'fill', 'empty' and 'pour'. To fill Jug A, you 'fill A'. To empty Jug B, you 'empty B'. To pour the contents of Jug A into Jug B, you 'pour A->B'. All jugs are empty to begin with. The empty jugs hold this many litres of water: A:11, B:11, C:9, D:11 And your target is: 3 litres. How do you defuse the bomb? Reply as a JSON-parsable list of moves which result in any of the jugs being filled with the target amount.
["fill C", "pour C->A", "fill C", "pour C->A", "empty A", "pour C->A", "fill C", "pour C->A", "pour C->B", "pour A->C", "pour C->B"]
jugs
{"difficulty": {"difficulty": 10, "num_jugs": 4}, "puzzle": {"jug_capacities": [11, 11, 9, 11], "min_moves": 10, "target": 3}, "source_dataset": "jugs", "source_index": 115}
Sort these numbers in ascending order: 157.2, 465.473, -408.6585, -317.464, -335.77, 428.696, -328.096, -431.82, 344.37, -471.93, -272.496, 149.8606, -398.66, -218.04, 102.954, 106.3597, 58.366, -398.0783, -373.616, -257.421, 72.8524, -119.24, 37.788, 410.449, -243.044, -189.919, 57.26, -269.6, 353.347, 231.371, -95.2965, 405.95, -304.293, 273.04, -152.38, -6.33, 128.475, 387.118, 131.5742, -213.92, -242.15, 408.9081, 320.929, -371.16, 403.12, -229.467, 207.1871, 400.79, -458.3041, -265.0375, 43.207, -182.3324, 273.97, 227.98, -405.728, 428.365, -50.22, -452.85, -182.0577, -63.29, -260.81, -107.51, 23.156, 53.53, -475.0, -261.8931, 344.785, 135.9525, -394.11, -354.6305, -344.5766, 216.23, 265.4918, 289.186, 65.55, -310.68, -381.72, 192.842, -8.333, -412.322, -442.73, 48.22, -257.34, 193.895, 478.468 Please follow the instruction below: ## 1. Let all your answers be a list of numbers. Instead of reporting your answer as -69, -13, 1, 7, 11, 43, 59, 61, use ['-69', '-13', '1', '7', '11', '43', '59', '61'] instead ## 2. Convert all numbers in the square brackets as strings. For example, ['-69', '-13', '1', '7', '11', '43', '59', '61']
['-475.0', '-471.93', '-458.3041', '-452.85', '-442.73', '-431.82', '-412.322', '-408.6585', '-405.728', '-398.66', '-398.0783', '-394.11', '-381.72', '-373.616', '-371.16', '-354.6305', '-344.5766', '-335.77', '-328.096', '-317.464', '-310.68', '-304.293', '-272.496', '-269.6', '-265.0375', '-261.8931', '-260.81', '-257.421', '-257.34', '-243.044', '-242.15', '-229.467', '-218.04', '-213.92', '-189.919', '-182.3324', '-182.0577', '-152.38', '-119.24', '-107.51', '-95.2965', '-63.29', '-50.22', '-8.333', '-6.33', '23.156', '37.788', '43.207', '48.22', '53.53', '57.26', '58.366', '65.55', '72.8524', '102.954', '106.3597', '128.475', '131.5742', '135.9525', '149.8606', '157.2', '192.842', '193.895', '207.1871', '216.23', '227.98', '231.371', '265.4918', '273.04', '273.97', '289.186', '320.929', '344.37', '344.785', '353.347', '387.118', '400.79', '403.12', '405.95', '408.9081', '410.449', '428.365', '428.696', '465.473', '478.468']
number_sorting
{"difficulty": {"decimals": [2, 4], "numbers": [50, 100], "value": [-500, 500]}, "direction": "ascending", "numbers": 85, "original_numbers": ["157.2", "465.473", "-408.6585", "-317.464", "-335.77", "428.696", "-328.096", "-431.82", "344.37", "-471.93", "-272.496", "149.8606", "-398.66", "-218.04", "102.954", "106.3597", "58.366", "-398.0783", "-373.616", "-257.421", "72.8524", "-119.24", "37.788", "410.449", "-243.044", "-189.919", "57.26", "-269.6", "353.347", "231.371", "-95.2965", "405.95", "-304.293", "273.04", "-152.38", "-6.33", "128.475", "387.118", "131.5742", "-213.92", "-242.15", "408.9081", "320.929", "-371.16", "403.12", "-229.467", "207.1871", "400.79", "-458.3041", "-265.0375", "43.207", "-182.3324", "273.97", "227.98", "-405.728", "428.365", "-50.22", "-452.85", "-182.0577", "-63.29", "-260.81", "-107.51", "23.156", "53.53", "-475.0", "-261.8931", "344.785", "135.9525", "-394.11", "-354.6305", "-344.5766", "216.23", "265.4918", "289.186", "65.55", "-310.68", "-381.72", "192.842", "-8.333", "-412.322", "-442.73", "48.22", "-257.34", "193.895", "478.468"], "sorted_numbers": ["-475.0", "-471.93", "-458.3041", "-452.85", "-442.73", "-431.82", "-412.322", "-408.6585", "-405.728", "-398.66", "-398.0783", "-394.11", "-381.72", "-373.616", "-371.16", "-354.6305", "-344.5766", "-335.77", "-328.096", "-317.464", "-310.68", "-304.293", "-272.496", "-269.6", "-265.0375", "-261.8931", "-260.81", "-257.421", "-257.34", "-243.044", "-242.15", "-229.467", "-218.04", "-213.92", "-189.919", "-182.3324", "-182.0577", "-152.38", "-119.24", "-107.51", "-95.2965", "-63.29", "-50.22", "-8.333", "-6.33", "23.156", "37.788", "43.207", "48.22", "53.53", "57.26", "58.366", "65.55", "72.8524", "102.954", "106.3597", "128.475", "131.5742", "135.9525", "149.8606", "157.2", "192.842", "193.895", "207.1871", "216.23", "227.98", "231.371", "265.4918", "273.04", "273.97", "289.186", "320.929", "344.37", "344.785", "353.347", "387.118", "400.79", "403.12", "405.95", "408.9081", "410.449", "428.365", "428.696", "465.473", "478.468"], "source_dataset": "number_sorting", "source_index": 130}
An anagram is a word formed by rearranging the letters of a different word, using all the original letters exactly once. Your job is to group the anagrams together. You can return the answer in any order. The output is a list of lists of strings, where each outer list contains a group of anagrams, e.g. [["eat", "tea"], ["tan", "nat"]]. Group the following list of words into anagrams: ["physa", "shapy", "fritts", "strift", "tonger", "groten", "counterreply", "colpeurynter", "strey", "resty", "tyres", "treys", "realgars", "resalgar", "bismethyl", "bimethyls", "ramp", "pram", "feedable", "befleaed", "simon", "minos", "chilean", "nichael", "echinal", "chinela", "barless", "braless", "promisee", "reimpose", "velating", "valeting", "leafy", "afley", "fleay", "enigmatist", "estimating", "leefang", "fenagle", "scientology", "insectology", "unlyrical", "runically"]
[["afley", "fleay", "leafy"], ["barless", "braless"], ["befleaed", "feedable"], ["bimethyls", "bismethyl"], ["chilean", "chinela", "echinal", "nichael"], ["colpeurynter", "counterreply"], ["enigmatist", "estimating"], ["fenagle", "leefang"], ["fritts", "strift"], ["groten", "tonger"], ["insectology", "scientology"], ["minos", "simon"], ["physa", "shapy"], ["pram", "ramp"], ["promisee", "reimpose"], ["realgars", "resalgar"], ["resty", "strey", "treys", "tyres"], ["runically", "unlyrical"], ["valeting", "velating"]]
group_anagrams
{"anagram_groups": 19, "difficulty": {"anagram_groups": [10, 50], "words_per_group": [2, 5]}, "solution": [["afley", "fleay", "leafy"], ["barless", "braless"], ["befleaed", "feedable"], ["bimethyls", "bismethyl"], ["chilean", "chinela", "echinal", "nichael"], ["colpeurynter", "counterreply"], ["enigmatist", "estimating"], ["fenagle", "leefang"], ["fritts", "strift"], ["groten", "tonger"], ["insectology", "scientology"], ["minos", "simon"], ["physa", "shapy"], ["pram", "ramp"], ["promisee", "reimpose"], ["realgars", "resalgar"], ["resty", "strey", "treys", "tyres"], ["runically", "unlyrical"], ["valeting", "velating"]], "source_dataset": "group_anagrams", "source_index": 4, "words": ["physa", "shapy", "fritts", "strift", "tonger", "groten", "counterreply", "colpeurynter", "strey", "resty", "tyres", "treys", "realgars", "resalgar", "bismethyl", "bimethyls", "ramp", "pram", "feedable", "befleaed", "simon", "minos", "chilean", "nichael", "echinal", "chinela", "barless", "braless", "promisee", "reimpose", "velating", "valeting", "leafy", "afley", "fleay", "enigmatist", "estimating", "leefang", "fenagle", "scientology", "insectology", "unlyrical", "runically"]}
Your task is to convert a number between two different bases. If the target base is > 10, use lowercase letters a-z for digits above 9. Now, convert the base-11 number 17712 to base-13
b3b1
base_conversion
{"decimal_value": 24818, "difficulty": {"base": [9, 18], "value": [10000, 100000]}, "source_base": 11, "source_dataset": "base_conversion", "source_index": 109, "source_repr": "17712", "target_base": 13, "target_repr": "b3b1"}
Sort these numbers in descending order: 48.26, 447.38, -83.811, -468.41, -102.551, 315.53, 43.0553, -74.43, -281.54, -183.95, -112.2407, -143.566, 254.79, -393.9469, 13.0593, 433.342, -387.9253, 34.95, 106.798, -410.1112, 33.2, 448.082, 223.71, 300.952, 136.9828, 236.2311, 270.0, -327.1054, 405.36, -264.9021, -399.3155, -30.116, 105.78, 79.4268, 145.44, -30.239, 183.67, -478.825, 14.255, -27.87, 313.8892, 1.384, -132.5057, 314.983, -108.98, -109.0343, 314.79, -75.443, -275.39, -417.9, -337.2108, -390.4, 415.17, -297.85, 356.044, 289.1324, -498.83, 347.191, -143.92, -426.37, -80.932, -280.5742, -63.32, 454.94, -68.9646, 239.0461, 48.65 Please follow the instruction below: ## 1. Let all your answers be a list of numbers. Instead of reporting your answer as -69, -13, 1, 7, 11, 43, 59, 61, use ['-69', '-13', '1', '7', '11', '43', '59', '61'] instead ## 2. Convert all numbers in the square brackets as strings. For example, ['-69', '-13', '1', '7', '11', '43', '59', '61']
['454.94', '448.082', '447.38', '433.342', '415.17', '405.36', '356.044', '347.191', '315.53', '314.983', '314.79', '313.8892', '300.952', '289.1324', '270.0', '254.79', '239.0461', '236.2311', '223.71', '183.67', '145.44', '136.9828', '106.798', '105.78', '79.4268', '48.65', '48.26', '43.0553', '34.95', '33.2', '14.255', '13.0593', '1.384', '-27.87', '-30.116', '-30.239', '-63.32', '-68.9646', '-74.43', '-75.443', '-80.932', '-83.811', '-102.551', '-108.98', '-109.0343', '-112.2407', '-132.5057', '-143.566', '-143.92', '-183.95', '-264.9021', '-275.39', '-280.5742', '-281.54', '-297.85', '-327.1054', '-337.2108', '-387.9253', '-390.4', '-393.9469', '-399.3155', '-410.1112', '-417.9', '-426.37', '-468.41', '-478.825', '-498.83']
number_sorting
{"difficulty": {"decimals": [2, 4], "numbers": [50, 100], "value": [-500, 500]}, "direction": "descending", "numbers": 67, "original_numbers": ["48.26", "447.38", "-83.811", "-468.41", "-102.551", "315.53", "43.0553", "-74.43", "-281.54", "-183.95", "-112.2407", "-143.566", "254.79", "-393.9469", "13.0593", "433.342", "-387.9253", "34.95", "106.798", "-410.1112", "33.2", "448.082", "223.71", "300.952", "136.9828", "236.2311", "270.0", "-327.1054", "405.36", "-264.9021", "-399.3155", "-30.116", "105.78", "79.4268", "145.44", "-30.239", "183.67", "-478.825", "14.255", "-27.87", "313.8892", "1.384", "-132.5057", "314.983", "-108.98", "-109.0343", "314.79", "-75.443", "-275.39", "-417.9", "-337.2108", "-390.4", "415.17", "-297.85", "356.044", "289.1324", "-498.83", "347.191", "-143.92", "-426.37", "-80.932", "-280.5742", "-63.32", "454.94", "-68.9646", "239.0461", "48.65"], "sorted_numbers": ["454.94", "448.082", "447.38", "433.342", "415.17", "405.36", "356.044", "347.191", "315.53", "314.983", "314.79", "313.8892", "300.952", "289.1324", "270.0", "254.79", "239.0461", "236.2311", "223.71", "183.67", "145.44", "136.9828", "106.798", "105.78", "79.4268", "48.65", "48.26", "43.0553", "34.95", "33.2", "14.255", "13.0593", "1.384", "-27.87", "-30.116", "-30.239", "-63.32", "-68.9646", "-74.43", "-75.443", "-80.932", "-83.811", "-102.551", "-108.98", "-109.0343", "-112.2407", "-132.5057", "-143.566", "-143.92", "-183.95", "-264.9021", "-275.39", "-280.5742", "-281.54", "-297.85", "-327.1054", "-337.2108", "-387.9253", "-390.4", "-393.9469", "-399.3155", "-410.1112", "-417.9", "-426.37", "-468.41", "-478.825", "-498.83"], "source_dataset": "number_sorting", "source_index": 45}
Your task is to convert a number between two different bases. If the target base is > 10, use lowercase letters a-z for digits above 9. Now, convert the base-17 number 10b72 to base-13
30697
base_conversion
{"decimal_value": 86821, "difficulty": {"base": [9, 18], "value": [10000, 100000]}, "source_base": 17, "source_dataset": "base_conversion", "source_index": 53, "source_repr": "10b72", "target_base": 13, "target_repr": "30697"}
Decrypt this Caesar cipher text: GLQRCYB MD ZCGLE RFC CYPRF AFPMLGAJC GQ CTCPW KMPLGLE QNMICL RM GL GLRCPCQRGLE AMLTCPQYRGMLQ UGRF YLB JCYPL RFC LCUQ MD RFC BYW. Provide only the decrypted text as your final answer.
INSTEAD OF BEING THE EARTH CHRONICLE IS EVERY MORNING SPOKEN TO IN INTERESTING CONVERSATIONS WITH AND LEARN THE NEWS OF THE DAY
caesar_cipher
{"cipher_text": "GLQRCYB MD ZCGLE RFC CYPRF AFPMLGAJC GQ CTCPW KMPLGLE QNMICL RM GL GLRCPCQRGLE AMLTCPQYRGMLQ UGRF YLB JCYPL RFC LCUQ MD RFC BYW", "clear_text": "INSTEAD OF BEING THE EARTH CHRONICLE IS EVERY MORNING SPOKEN TO IN INTERESTING CONVERSATIONS WITH AND LEARN THE NEWS OF THE DAY", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 22, "rotation": 24, "source_dataset": "caesar_cipher", "source_index": 12}
An anagram is a word formed by rearranging the letters of a different word, using all the original letters exactly once. Your job is to group the anagrams together. You can return the answer in any order. The output is a list of lists of strings, where each outer list contains a group of anagrams, e.g. [["eat", "tea"], ["tan", "nat"]]. Group the following list of words into anagrams: ["lithophone", "thiophenol", "betoyan", "bayonet", "doralium", "ordalium", "spinotectal", "tectospinal", "entoplastic", "tenoplastic", "tarkashi", "kitharas", "tyrrheni", "erythrin", "bistro", "orbits", "latvian", "valiant", "strawish", "swartish", "overtimes", "oversmite", "sweetclover", "twelvescore", "spuke", "pukes", "solicits", "sciolist", "scottie", "cottise", "egre", "geer", "gree", "gere", "slandering", "sanderling", "evilest", "velites", "nut", "tun", "apsid", "sapid", "spaid", "farde", "fared", "demanded", "maddened", "loamy", "amylo", "tensometer", "stenometer", "sermonette", "raylet", "realty", "elytra", "spearer", "reapers", "shoder", "reshod", "hordes", "rhodes", "defacers", "frescade", "vade", "deva", "dave", "veda", "reorients", "orneriest", "licensers", "silencers", "videnda", "invaded", "brigantes", "breasting", "catalyte", "cattleya", "robs", "bros", "elatha", "althea", "matrons", "transom", "typer", "perty", "plotful", "topfull", "patee", "etape", "wartless", "wrastles", "warstles", "rabatine", "atabrine", "geoemtry", "geometry", "indicators", "ancistroid", "coronels", "consoler", "parazoan", "zaparoan", "trac", "cart", "ceboids", "bodices", "patties", "stipate", "tapetis"]
[["althea", "elatha"], ["amylo", "loamy"], ["ancistroid", "indicators"], ["apsid", "sapid", "spaid"], ["atabrine", "rabatine"], ["bayonet", "betoyan"], ["bistro", "orbits"], ["bodices", "ceboids"], ["breasting", "brigantes"], ["bros", "robs"], ["cart", "trac"], ["catalyte", "cattleya"], ["consoler", "coronels"], ["cottise", "scottie"], ["dave", "deva", "vade", "veda"], ["defacers", "frescade"], ["demanded", "maddened"], ["doralium", "ordalium"], ["egre", "geer", "gere", "gree"], ["elytra", "raylet", "realty"], ["entoplastic", "spinotectal", "tectospinal", "tenoplastic"], ["erythrin", "tyrrheni"], ["etape", "patee"], ["evilest", "velites"], ["farde", "fared"], ["geoemtry", "geometry"], ["hordes", "reshod", "rhodes", "shoder"], ["invaded", "videnda"], ["kitharas", "tarkashi"], ["latvian", "valiant"], ["licensers", "silencers"], ["lithophone", "thiophenol"], ["matrons", "transom"], ["nut", "tun"], ["orneriest", "reorients"], ["oversmite", "overtimes"], ["parazoan", "zaparoan"], ["patties", "stipate", "tapetis"], ["perty", "typer"], ["plotful", "topfull"], ["pukes", "spuke"], ["reapers", "spearer"], ["sanderling", "slandering"], ["sciolist", "solicits"], ["sermonette", "stenometer", "tensometer"], ["strawish", "swartish"], ["sweetclover", "twelvescore"], ["warstles", "wartless", "wrastles"]]
group_anagrams
{"anagram_groups": 48, "difficulty": {"anagram_groups": [10, 50], "words_per_group": [2, 5]}, "solution": [["althea", "elatha"], ["amylo", "loamy"], ["ancistroid", "indicators"], ["apsid", "sapid", "spaid"], ["atabrine", "rabatine"], ["bayonet", "betoyan"], ["bistro", "orbits"], ["bodices", "ceboids"], ["breasting", "brigantes"], ["bros", "robs"], ["cart", "trac"], ["catalyte", "cattleya"], ["consoler", "coronels"], ["cottise", "scottie"], ["dave", "deva", "vade", "veda"], ["defacers", "frescade"], ["demanded", "maddened"], ["doralium", "ordalium"], ["egre", "geer", "gere", "gree"], ["elytra", "raylet", "realty"], ["entoplastic", "spinotectal", "tectospinal", "tenoplastic"], ["erythrin", "tyrrheni"], ["etape", "patee"], ["evilest", "velites"], ["farde", "fared"], ["geoemtry", "geometry"], ["hordes", "reshod", "rhodes", "shoder"], ["invaded", "videnda"], ["kitharas", "tarkashi"], ["latvian", "valiant"], ["licensers", "silencers"], ["lithophone", "thiophenol"], ["matrons", "transom"], ["nut", "tun"], ["orneriest", "reorients"], ["oversmite", "overtimes"], ["parazoan", "zaparoan"], ["patties", "stipate", "tapetis"], ["perty", "typer"], ["plotful", "topfull"], ["pukes", "spuke"], ["reapers", "spearer"], ["sanderling", "slandering"], ["sciolist", "solicits"], ["sermonette", "stenometer", "tensometer"], ["strawish", "swartish"], ["sweetclover", "twelvescore"], ["warstles", "wartless", "wrastles"]], "source_dataset": "group_anagrams", "source_index": 69, "words": ["lithophone", "thiophenol", "betoyan", "bayonet", "doralium", "ordalium", "spinotectal", "tectospinal", "entoplastic", "tenoplastic", "tarkashi", "kitharas", "tyrrheni", "erythrin", "bistro", "orbits", "latvian", "valiant", "strawish", "swartish", "overtimes", "oversmite", "sweetclover", "twelvescore", "spuke", "pukes", "solicits", "sciolist", "scottie", "cottise", "egre", "geer", "gree", "gere", "slandering", "sanderling", "evilest", "velites", "nut", "tun", "apsid", "sapid", "spaid", "farde", "fared", "demanded", "maddened", "loamy", "amylo", "tensometer", "stenometer", "sermonette", "raylet", "realty", "elytra", "spearer", "reapers", "shoder", "reshod", "hordes", "rhodes", "defacers", "frescade", "vade", "deva", "dave", "veda", "reorients", "orneriest", "licensers", "silencers", "videnda", "invaded", "brigantes", "breasting", "catalyte", "cattleya", "robs", "bros", "elatha", "althea", "matrons", "transom", "typer", "perty", "plotful", "topfull", "patee", "etape", "wartless", "wrastles", "warstles", "rabatine", "atabrine", "geoemtry", "geometry", "indicators", "ancistroid", "coronels", "consoler", "parazoan", "zaparoan", "trac", "cart", "ceboids", "bodices", "patties", "stipate", "tapetis"]}
Decrypt this Caesar cipher text: CH NBY JLIDYWN AONYHVYLA FCNYLULS ULWBCPY ZIOHXUNCIH QUM WLYUNYX NI JLIPCXY U MYWOLY UHX JYLGUHYHN ZONOLY ZIL JLIDYWN UHX ZONOLY AYHYLUNCIHM. Provide only the decrypted text as your final answer.
IN THE PROJECT GUTENBERG LITERARY ARCHIVE FOUNDATION WAS CREATED TO PROVIDE A SECURE AND PERMANENT FUTURE FOR PROJECT AND FUTURE GENERATIONS
caesar_cipher
{"cipher_text": "CH NBY JLIDYWN AONYHVYLA FCNYLULS ULWBCPY ZIOHXUNCIH QUM WLYUNYX NI JLIPCXY U MYWOLY UHX JYLGUHYHN ZONOLY ZIL JLIDYWN UHX ZONOLY AYHYLUNCIHM", "clear_text": "IN THE PROJECT GUTENBERG LITERARY ARCHIVE FOUNDATION WAS CREATED TO PROVIDE A SECURE AND PERMANENT FUTURE FOR PROJECT AND FUTURE GENERATIONS", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 21, "rotation": 20, "source_dataset": "caesar_cipher", "source_index": 93}
Decrypt this Caesar cipher text: ADHMF ZANUD ZKK Z OQZBSHBZK GZR QDCTBDC SGD OQNAKDL NE DWHRSDMBD SN HSR RHLOKDRS SDQLR. Provide only the decrypted text as your final answer.
BEING ABOVE ALL A PRACTICAL HAS REDUCED THE PROBLEM OF EXISTENCE TO ITS SIMPLEST TERMS
caesar_cipher
{"cipher_text": "ADHMF ZANUD ZKK Z OQZBSHBZK GZR QDCTBDC SGD OQNAKDL NE DWHRSDMBD SN HSR RHLOKDRS SDQLR", "clear_text": "BEING ABOVE ALL A PRACTICAL HAS REDUCED THE PROBLEM OF EXISTENCE TO ITS SIMPLEST TERMS", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 15, "rotation": 25, "source_dataset": "caesar_cipher", "source_index": 71}
Solve this cryptarithm: YUOGG KMUJI JYJON MAIUU IUIU + YUGN -------- KIIJIJ Each letter stands for a unique digit (0-9). No leading letter can be zero. Provide a comma separated mapping from letters to digits that satisfies the equation in your final answer. Output format: "A=1,B=2,C=3" (without quotes)
A=1,G=9,I=3,J=6,K=2,M=8,N=7,O=4,U=0,Y=5
cryptarithm
{"difficulty": {"words": [5, 10]}, "digit_to_letter": {"0": "U", "1": "A", "2": "K", "3": "I", "4": "O", "5": "Y", "6": "J", "7": "N", "8": "M", "9": "G"}, "letter_to_digit": {"A": 1, "G": 9, "I": 3, "J": 6, "K": 2, "M": 8, "N": 7, "O": 4, "U": 0, "Y": 5}, "letters": ["I", "M", "Y", "N", "A", "K", "J", "G", "U", "O"], "result_letters": "KIIJIJ", "source_dataset": "cryptarithm", "source_index": 32, "sum_number": 233636, "word_values": [50499, 28063, 65647, 81300, 3030, 5097], "words_letters": ["YUOGG", "KMUJI", "JYJON", "MAIUU", "IUIU", "YUGN"]}
An anagram is a word formed by rearranging the letters of a different word, using all the original letters exactly once. Your job is to group the anagrams together. You can return the answer in any order. The output is a list of lists of strings, where each outer list contains a group of anagrams, e.g. [["eat", "tea"], ["tan", "nat"]]. Group the following list of words into anagrams: ["glowered", "reglowed", "verso", "roves", "overs", "servo", "needham", "headmen", "pollinator", "trollopian", "soir", "sori", "astatizer", "zaratites", "lingala", "gallian", "adulterating", "triangulated", "autoradiographic", "radioautographic", "requitals", "quartiles", "mucate", "macute", "acetum", "tecuma", "yup", "puy", "therian", "hairnet", "anither", "lenders", "relends", "scambler", "scramble", "qurti", "quirt", "bop", "pob", "akka", "kaka", "listel", "illest", "opacate", "peacoat", "meanish", "haemins", "keisters", "kiesters", "orbity", "bority", "leep", "peel", "pele", "lotta", "total", "areel", "earle", "precedable", "deprecable", "polemics", "compiles", "complies", "clipsome", "pargana", "pangara", "pretenses", "serpentes", "distinctor", "doctrinist", "steride", "stereid", "reedits", "dieters", "diester", "banuyo", "boyuna", "bilby", "libby", "blastomycetous", "cytoblastemous", "roodles", "dolores", "deaner", "neared", "earned", "malming", "lamming", "biltongs", "boltings", "ito", "toi", "dourer", "ordure", "tearily", "irately", "reality", "chapiter", "trapiche", "gyration", "organity", "ortygian"]
[["acetum", "macute", "mucate", "tecuma"], ["adulterating", "triangulated"], ["akka", "kaka"], ["anither", "hairnet", "therian"], ["areel", "earle"], ["astatizer", "zaratites"], ["autoradiographic", "radioautographic"], ["banuyo", "boyuna"], ["bilby", "libby"], ["biltongs", "boltings"], ["blastomycetous", "cytoblastemous"], ["bop", "pob"], ["bority", "orbity"], ["chapiter", "trapiche"], ["clipsome", "compiles", "complies", "polemics"], ["deaner", "earned", "neared"], ["deprecable", "precedable"], ["diester", "dieters", "reedits", "stereid", "steride"], ["distinctor", "doctrinist"], ["dolores", "roodles"], ["dourer", "ordure"], ["gallian", "lingala"], ["glowered", "reglowed"], ["gyration", "organity", "ortygian"], ["haemins", "meanish"], ["headmen", "needham"], ["illest", "listel"], ["irately", "reality", "tearily"], ["ito", "toi"], ["keisters", "kiesters"], ["lamming", "malming"], ["leep", "peel", "pele"], ["lenders", "relends"], ["lotta", "total"], ["opacate", "peacoat"], ["overs", "roves", "servo", "verso"], ["pangara", "pargana"], ["pollinator", "trollopian"], ["pretenses", "serpentes"], ["puy", "yup"], ["quartiles", "requitals"], ["quirt", "qurti"], ["scambler", "scramble"], ["soir", "sori"]]
group_anagrams
{"anagram_groups": 44, "difficulty": {"anagram_groups": [10, 50], "words_per_group": [2, 5]}, "solution": [["acetum", "macute", "mucate", "tecuma"], ["adulterating", "triangulated"], ["akka", "kaka"], ["anither", "hairnet", "therian"], ["areel", "earle"], ["astatizer", "zaratites"], ["autoradiographic", "radioautographic"], ["banuyo", "boyuna"], ["bilby", "libby"], ["biltongs", "boltings"], ["blastomycetous", "cytoblastemous"], ["bop", "pob"], ["bority", "orbity"], ["chapiter", "trapiche"], ["clipsome", "compiles", "complies", "polemics"], ["deaner", "earned", "neared"], ["deprecable", "precedable"], ["diester", "dieters", "reedits", "stereid", "steride"], ["distinctor", "doctrinist"], ["dolores", "roodles"], ["dourer", "ordure"], ["gallian", "lingala"], ["glowered", "reglowed"], ["gyration", "organity", "ortygian"], ["haemins", "meanish"], ["headmen", "needham"], ["illest", "listel"], ["irately", "reality", "tearily"], ["ito", "toi"], ["keisters", "kiesters"], ["lamming", "malming"], ["leep", "peel", "pele"], ["lenders", "relends"], ["lotta", "total"], ["opacate", "peacoat"], ["overs", "roves", "servo", "verso"], ["pangara", "pargana"], ["pollinator", "trollopian"], ["pretenses", "serpentes"], ["puy", "yup"], ["quartiles", "requitals"], ["quirt", "qurti"], ["scambler", "scramble"], ["soir", "sori"]], "source_dataset": "group_anagrams", "source_index": 17, "words": ["glowered", "reglowed", "verso", "roves", "overs", "servo", "needham", "headmen", "pollinator", "trollopian", "soir", "sori", "astatizer", "zaratites", "lingala", "gallian", "adulterating", "triangulated", "autoradiographic", "radioautographic", "requitals", "quartiles", "mucate", "macute", "acetum", "tecuma", "yup", "puy", "therian", "hairnet", "anither", "lenders", "relends", "scambler", "scramble", "qurti", "quirt", "bop", "pob", "akka", "kaka", "listel", "illest", "opacate", "peacoat", "meanish", "haemins", "keisters", "kiesters", "orbity", "bority", "leep", "peel", "pele", "lotta", "total", "areel", "earle", "precedable", "deprecable", "polemics", "compiles", "complies", "clipsome", "pargana", "pangara", "pretenses", "serpentes", "distinctor", "doctrinist", "steride", "stereid", "reedits", "dieters", "diester", "banuyo", "boyuna", "bilby", "libby", "blastomycetous", "cytoblastemous", "roodles", "dolores", "deaner", "neared", "earned", "malming", "lamming", "biltongs", "boltings", "ito", "toi", "dourer", "ordure", "tearily", "irately", "reality", "chapiter", "trapiche", "gyration", "organity", "ortygian"]}
Solve this cryptarithm: TTVRB QCPGN RRNVN CBZG RBC TVZP ZNPP QGVB + NBNC -------- QQRZQG Each letter stands for a unique digit (0-9). No leading letter can be zero. Provide a comma separated mapping from letters to digits that satisfies the equation in your final answer. Output format: "A=1,B=2,C=3" (without quotes)
B=7,C=5,G=6,N=8,P=0,Q=1,R=2,T=4,V=3,Z=9
cryptarithm
{"difficulty": {"words": [5, 10]}, "digit_to_letter": {"0": "P", "1": "Q", "2": "R", "3": "V", "4": "T", "5": "C", "6": "G", "7": "B", "8": "N", "9": "Z"}, "letter_to_digit": {"B": 7, "C": 5, "G": 6, "N": 8, "P": 0, "Q": 1, "R": 2, "T": 4, "V": 3, "Z": 9}, "letters": ["B", "Z", "N", "G", "P", "R", "T", "C", "Q", "V"], "result_letters": "QQRZQG", "source_dataset": "cryptarithm", "source_index": 67, "sum_number": 112916, "word_values": [44327, 15068, 22838, 5796, 275, 4390, 9800, 1637, 8785], "words_letters": ["TTVRB", "QCPGN", "RRNVN", "CBZG", "RBC", "TVZP", "ZNPP", "QGVB", "NBNC"]}
You are given an n x n grid where each cell can have one of three values: - 0 representing an empty cell - 1 representing a fresh orange - 2 representing a rotten orange Every minute, any fresh orange that is 4-directionally adjacent to a rotten orange becomes rotten. Your task is determine the minimum number of minutes that must elapse until no cell has a fresh orange. If this is impossible, return -1. Now, determine the minimum number of minutes that must elapse until no cell in the grid below has a fresh orange: 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 2 1 0 1 1 1 1 0 1 0 1 1 1 1 1 0 2 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 0 1 1 1 2 1 1 1 1 0 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 0 1 1 0 1 1 0 0 0 1 1 0 1 1 1 1 1 0 1 1 2 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 0 1 2 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 2 1 0 1 1 1 1 1 2 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 0 1 1 1 1 0 1 1 1 1 1 2 1 1 1 1 0 1 2 1 1 1 1 1 1 1 1 0 1 1 2 0 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 2 1 2 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 0 2 1 1 1 1 1 1 1 1 0 1 1 1 2 1 0 0 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 1 1 1 1 0 1 1 1 1 1 2 1 1 0 1 1 0 1 1 1 1 1 1 1 1 1 2 1 1 2 1 1 1 1 1 2 1 1 1 0 0 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 2 0 0 1 1 1 0 1 2 2 0 0 1 1 1 1 2 0 0 2 1 1 1 1 1 1 1 0 1 1 2 1 1 1 0 1 1 2 1 1 1 1 2 1 1 1 1 1 0 1 2 1 1 0 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 0 0 2 0 1 0 2 1 1 1 0 1 2 1 1 1 1 1 0 1 1 2 1 0 2 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 2 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 2 1 1 1 1 1 1 0 1 2 1 0 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 0 2 1 1 1 1 0 1 1 0 1 2 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 0 1 1 2 1 1 1 1 1 0 1 1 1 1 1 2 1 1 2 2 1 1 1 1 2 1 0 1 1 2 0 1 0 0 0 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 2 1 1 1 1 0 1 1 2 1 1 1 1 1 2 0 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 1 0 1 1 1 1 0 1 2 0 1 1 1 1 0 1 1 2 1 0 2 2 1 1 1 1 1 2 0 1 1 1 1 0 1 1 1 1 1 1 1 1 2 1 1 1 1 1 2 1 1 1 0 1 1 1 1 0 1 1 0 1 1 1 1 1 1 1 2 0 1 1 1 1 1 1 1 0 1 2 1 1 1 1 1 1
7
rotten_oranges
{"difficulty": {"n": [25, 50]}, "matrix": [[1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 0, 1, 1, 1, 1, 0], [1, 0, 1, 1, 1, 1, 1, 0, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 2, 1, 0, 1, 1, 1, 1, 1], [2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1], [1, 2, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 0, 1, 0, 1, 2, 1, 2, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 0, 0], [1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 2, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1], [1, 1, 2, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0, 1, 1, 1], [0, 1, 2, 2, 0, 0, 1, 1, 1, 1, 2, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 0], [1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 1, 2, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 2, 0, 1, 0, 2, 1, 1], [1, 0, 1, 2, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 0, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2], [1, 1, 2, 1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 0, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 2, 1, 1, 1, 1, 0, 1, 1, 0, 1, 2, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1], [1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 2, 1, 1], [1, 1, 1, 0, 1, 1, 1, 1, 1, 2, 1, 1, 2, 2, 1, 1, 1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0, 0, 0], [1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 0, 1, 1, 2, 1], [1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1], [1, 1, 0, 1, 1, 1, 1, 0, 1, 2, 0, 1, 1, 1, 1, 0, 1, 1, 2, 1, 0, 2, 2, 1, 1, 1, 1, 1, 2], [0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 1], [0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1]], "n": 29, "solution": 7, "source_dataset": "rotten_oranges", "source_index": 5}
You are a police officer. A maniac has planted a bomb next to a public fountain. To defuse the bomb, you must solve a puzzle. The puzzle is solved when you fill any of the available jugs with the target amount of water. You have three move types: 'fill', 'empty' and 'pour'. To fill Jug A, you 'fill A'. To empty Jug B, you 'empty B'. To pour the contents of Jug A into Jug B, you 'pour A->B'. All jugs are empty to begin with. The empty jugs hold this many litres of water: A:13, B:13, C:8, D:8 And your target is: 7 litres. How do you defuse the bomb? Reply as a JSON-parsable list of moves which result in any of the jugs being filled with the target amount.
["fill A", "pour A->C", "fill B", "empty C", "pour A->C", "fill A", "pour A->C", "empty C", "pour A->C", "empty C", "pour A->C", "pour B->C"]
jugs
{"difficulty": {"difficulty": 10, "num_jugs": 4}, "puzzle": {"jug_capacities": [13, 13, 8, 8], "min_moves": 11, "target": 7}, "source_dataset": "jugs", "source_index": 22}
What will this Game of Life board look like after 2 steps of simulation? Assume a Moore neighborhood and wrapping topology. Reply as array of arrays representing rows in the grid from top to bottom in JSON format. (An empty 3x3 grid would look like this: [[0,0,0],[0,0,0],[0,0,0]]) [[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]].
[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]
game_of_life
{"difficulty": {"filled_cells_weights": 0.2, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2}, "filled_cells": 10, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2, "source_dataset": "game_of_life", "source_index": 7}
You are given an n x n grid where each cell can have one of three values: - 0 representing an empty cell - 1 representing a fresh orange - 2 representing a rotten orange Every minute, any fresh orange that is 4-directionally adjacent to a rotten orange becomes rotten. Your task is determine the minimum number of minutes that must elapse until no cell has a fresh orange. If this is impossible, return -1. Now, determine the minimum number of minutes that must elapse until no cell in the grid below has a fresh orange: 2 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 0 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 2 1 0 1 1 0 1 1 1 0 0 0 1 1 0 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 1 2 1 1 0 0 1 1 0 1 1 1 1 1 2 1 1 0 1 1 1 1 0 2 2 1 1 0 1 0 1 1 1 1 0 1 1 2 1 1 0 0 1 1 1 0 1 1 1 1 1 1 2 0 1 1 1 0 2 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 0 1 1 0 1 2 0 1 0 1 1 1 1 1 0 1 0 2 0 1 1 1 0 1 1 1 1 0 1 1 1 1 1 1 0 1 1 1 1 1 0 2 1 1 1 1 1 1 1 1 1 2 1 1 0 0 1 1 1 0 2 1 0 0 1 1 1 1 1 0 1 0 1 0 1 0 0 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 2 1 1 1 1 1 1 1 2 2 1 1 0 1 1 1 1 1 1 1 1 1 0 0 1 1 1 2 1 1 2 1 1 1 1 1 1 1 1 2 1 1 1 1 0 1 2 1 1 1 0 2 1 0 1 2 0 1 1 1 1 1 1 2 1 1 1 1 0 1 1 1 1 1 1 0 0 1 1 1 2 0 0 0 1 0 2 1 0 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 0 1 1 1 2 1 1 1 1 0 1 1 0 1 0 2 2 1 1 1 1 1 2 1 2 1 1 1 0 0 1 0 1 1 1 1 2 0 1 1 0 1 1 1 1 0 0 1 1 1 1 0 1 2 0 0 0 1 1 1 1 2 2 1 0 1 1 1 0 1 1 1 1 0 0 0 1 1 0 2 0 2 1 1 1 1 1 1 1 0 1 1 1 2 1 0 1 1 1 0 1 1 1 1 2 1 0 1 0 1 1 1 0 0 0 1 2 0 1 1 1 0 1 1 1 0 1 0 1 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 2 2 1 2 0 0 0 1 1 1 1 1 1 2 1 1 0 1 1 1 1 1 1 1 1 0 2 1 1 0 1 1 1 1 1 1 1 1 2 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 0 2 1 1 0 1 1 1 0 1 0 2 0 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 2 1 1 1 1 1 1 2 0 1 1 0 1 0 0 1 2 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 2 1 1 1 1 1 0 1 1 1 1 2 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 0 1 1 1 1 1 2 1 1 1 2 0 1 1 1 1 0 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 2 1 1 1 1 1 1 1 1 1 1 0 1 1 2 2 0 1 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 2 1 1 1 0 1 1 1 1 0 1 1 2 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 2 2 1 1 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 2 1 0 1 1 1 1 2 0 1 1 2 1 2 1 1 2 1 1 1 1 1 1 0 1 1 1 1 2 1 0 1 1 2 1 1 1 0 1 0 1 1 1 0 1 1 1 1 0 1 0 1 1 0 1 0 0 2 1 1 1 2 1 1 0 1 1 1 1 1 1 1 1 0 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 0 2 1 1 1 1 1 1 2 0 0 1 1 1 2 1 1 1 1 1 0 1 1 1 1 1 0 2 1 2 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 0 1 1 1 0 1 1 1 1 1 0 2 1 1 1 1 1 0 1 1 1 1 1 1 1 1 2 2 2 0 1 2 1 1 1 1 0 1 1 1 2 1 1 0 2 1 1 1 0 1 1 0 1 1 1 1 1 1 1 1 0 1 2 1 0 1 0 2 1 1 0 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 0 1 1 1 0 2 1 1 1 0 0 1 1 1 1 0 1 1 1 1 0 1 1 1 0 1 2 0 1 1 0 0 1 1 1 1 1 2 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 1 1 1 1 1 1 0 1 2 1 1 1 2 0 1 1
-1
rotten_oranges
{"difficulty": {"n": [25, 50]}, "matrix": [[2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1], [1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 2, 1, 1, 0, 0, 1, 1, 0, 1, 1], [1, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 0, 2, 2, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 0, 0, 1, 1, 1, 0, 1], [1, 1, 1, 1, 1, 2, 0, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 2, 0, 1, 0, 1, 1, 1, 1, 1], [0, 1, 0, 2, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 1, 0, 0, 1, 1, 1, 0, 2, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1], [1, 1, 2, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1], [1, 1, 0, 1, 2, 1, 1, 1, 0, 2, 1, 0, 1, 2, 0, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1], [1, 1, 2, 0, 0, 0, 1, 0, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1], [1, 0, 1, 1, 0, 1, 0, 2, 2, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 2, 0, 1, 1, 0, 1, 1, 1], [1, 0, 0, 1, 1, 1, 1, 0, 1, 2, 0, 0, 0, 1, 1, 1, 1, 2, 2, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 2], [0, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 2, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1], [2, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1], [1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 2, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1], [1, 0, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 2, 1], [1, 0, 1, 1, 1, 0, 1, 0, 2, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1], [2, 1, 1, 1, 1, 1, 1, 2, 0, 1, 1, 0, 1, 0, 0, 1, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1], [1, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2, 1], [1, 1, 2, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1], [1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 2, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 0, 2, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 0, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 0, 1, 1, 1, 1, 2, 0, 1, 1, 2, 1, 2, 1], [1, 2, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 2, 1, 0, 1, 1, 2, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0], [1, 1, 0, 1, 0, 0, 2, 1, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 2, 1, 1], [1, 1, 1, 1, 2, 0, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 2, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], [1, 1, 1, 2, 2, 2, 0, 1, 2, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 0, 2, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1], [1, 0, 1, 2, 1, 0, 1, 0, 2, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1], [1, 0, 2, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 2, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 2, 1], [1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 2, 0, 1, 1]], "n": 36, "solution": -1, "source_dataset": "rotten_oranges", "source_index": 118}
Transform the word ladder 'TIFF' to 'MAZE' by changing one letter at a time. Provide your answer as a comma-separated sequence of uppercase letters without spaces. Each step must be a valid English word.
TIFF,RIFF,RIFE,RICE,RACE,RAZE,MAZE
word_ladder
{"chain_length": 7, "difficulty": {"word_length": [3, 5]}, "end_word": "MAZE", "source_dataset": "word_ladder", "source_index": 23, "start_word": "TIFF", "word_length": 4}
An anagram is a word formed by rearranging the letters of a different word, using all the original letters exactly once. Your job is to group the anagrams together. You can return the answer in any order. The output is a list of lists of strings, where each outer list contains a group of anagrams, e.g. [["eat", "tea"], ["tan", "nat"]]. Group the following list of words into anagrams: ["sanitizer", "triazines", "obe", "boe", "naifly", "fainly", "can", "anc", "harebrain", "herbarian", "catnaps", "captans", "capstan", "apis", "psia", "mules", "mulse", "unsusceptible", "unsuspectible", "mortician", "martinico", "tabitha", "habitat", "atypic", "typica", "dita", "adit", "curried", "curdier"]
[["adit", "dita"], ["anc", "can"], ["apis", "psia"], ["atypic", "typica"], ["boe", "obe"], ["capstan", "captans", "catnaps"], ["curdier", "curried"], ["fainly", "naifly"], ["habitat", "tabitha"], ["harebrain", "herbarian"], ["martinico", "mortician"], ["mules", "mulse"], ["sanitizer", "triazines"], ["unsusceptible", "unsuspectible"]]
group_anagrams
{"anagram_groups": 14, "difficulty": {"anagram_groups": [10, 50], "words_per_group": [2, 5]}, "solution": [["adit", "dita"], ["anc", "can"], ["apis", "psia"], ["atypic", "typica"], ["boe", "obe"], ["capstan", "captans", "catnaps"], ["curdier", "curried"], ["fainly", "naifly"], ["habitat", "tabitha"], ["harebrain", "herbarian"], ["martinico", "mortician"], ["mules", "mulse"], ["sanitizer", "triazines"], ["unsusceptible", "unsuspectible"]], "source_dataset": "group_anagrams", "source_index": 146, "words": ["sanitizer", "triazines", "obe", "boe", "naifly", "fainly", "can", "anc", "harebrain", "herbarian", "catnaps", "captans", "capstan", "apis", "psia", "mules", "mulse", "unsusceptible", "unsuspectible", "mortician", "martinico", "tabitha", "habitat", "atypic", "typica", "dita", "adit", "curried", "curdier"]}
Transform the word ladder 'ELK' to 'DUO' by changing one letter at a time. Provide your answer as a comma-separated sequence of uppercase letters without spaces. Each step must be a valid English word.
ELK,EEK,EEL,DEL,DOL,DOO,DUO
word_ladder
{"chain_length": 7, "difficulty": {"word_length": [3, 5]}, "end_word": "DUO", "source_dataset": "word_ladder", "source_index": 47, "start_word": "ELK", "word_length": 3}
Sort these numbers in descending order: 351.4, -484.11, -255.4802, -90.68, 72.04, 86.487, -400.0824, -6.759, 137.36, 127.452, 469.179, -136.48, -72.9, -253.538, 199.2355, 136.39, 97.96, 188.4337, -18.34, 72.951, -248.9216, 431.675, -119.3424, -367.7855, 23.75, -354.95, -344.765, -341.8527, -146.691, 170.46, 405.067, -7.3606, -54.3103, -286.336, -470.51, 419.9309, 134.593, 468.49, 209.44, 310.21, -43.46, -168.792, 456.13, 24.74, -68.16, -301.4347, 297.2361, 481.1166, 140.099, -261.7182, -167.2724, -148.58, 224.966, -204.22, 450.7596, 332.8132, 183.6633, -178.044, -355.2016, -4.586, -207.47 Please follow the instruction below: ## 1. Let all your answers be a list of numbers. Instead of reporting your answer as -69, -13, 1, 7, 11, 43, 59, 61, use ['-69', '-13', '1', '7', '11', '43', '59', '61'] instead ## 2. Convert all numbers in the square brackets as strings. For example, ['-69', '-13', '1', '7', '11', '43', '59', '61']
['481.1166', '469.179', '468.49', '456.13', '450.7596', '431.675', '419.9309', '405.067', '351.4', '332.8132', '310.21', '297.2361', '224.966', '209.44', '199.2355', '188.4337', '183.6633', '170.46', '140.099', '137.36', '136.39', '134.593', '127.452', '97.96', '86.487', '72.951', '72.04', '24.74', '23.75', '-4.586', '-6.759', '-7.3606', '-18.34', '-43.46', '-54.3103', '-68.16', '-72.9', '-90.68', '-119.3424', '-136.48', '-146.691', '-148.58', '-167.2724', '-168.792', '-178.044', '-204.22', '-207.47', '-248.9216', '-253.538', '-255.4802', '-261.7182', '-286.336', '-301.4347', '-341.8527', '-344.765', '-354.95', '-355.2016', '-367.7855', '-400.0824', '-470.51', '-484.11']
number_sorting
{"difficulty": {"decimals": [2, 4], "numbers": [50, 100], "value": [-500, 500]}, "direction": "descending", "numbers": 61, "original_numbers": ["351.4", "-484.11", "-255.4802", "-90.68", "72.04", "86.487", "-400.0824", "-6.759", "137.36", "127.452", "469.179", "-136.48", "-72.9", "-253.538", "199.2355", "136.39", "97.96", "188.4337", "-18.34", "72.951", "-248.9216", "431.675", "-119.3424", "-367.7855", "23.75", "-354.95", "-344.765", "-341.8527", "-146.691", "170.46", "405.067", "-7.3606", "-54.3103", "-286.336", "-470.51", "419.9309", "134.593", "468.49", "209.44", "310.21", "-43.46", "-168.792", "456.13", "24.74", "-68.16", "-301.4347", "297.2361", "481.1166", "140.099", "-261.7182", "-167.2724", "-148.58", "224.966", "-204.22", "450.7596", "332.8132", "183.6633", "-178.044", "-355.2016", "-4.586", "-207.47"], "sorted_numbers": ["481.1166", "469.179", "468.49", "456.13", "450.7596", "431.675", "419.9309", "405.067", "351.4", "332.8132", "310.21", "297.2361", "224.966", "209.44", "199.2355", "188.4337", "183.6633", "170.46", "140.099", "137.36", "136.39", "134.593", "127.452", "97.96", "86.487", "72.951", "72.04", "24.74", "23.75", "-4.586", "-6.759", "-7.3606", "-18.34", "-43.46", "-54.3103", "-68.16", "-72.9", "-90.68", "-119.3424", "-136.48", "-146.691", "-148.58", "-167.2724", "-168.792", "-178.044", "-204.22", "-207.47", "-248.9216", "-253.538", "-255.4802", "-261.7182", "-286.336", "-301.4347", "-341.8527", "-344.765", "-354.95", "-355.2016", "-367.7855", "-400.0824", "-470.51", "-484.11"], "source_dataset": "number_sorting", "source_index": 64}
You are given an n x n grid where each cell can have one of three values: - 0 representing an empty cell - 1 representing a fresh orange - 2 representing a rotten orange Every minute, any fresh orange that is 4-directionally adjacent to a rotten orange becomes rotten. Your task is determine the minimum number of minutes that must elapse until no cell has a fresh orange. If this is impossible, return -1. Now, determine the minimum number of minutes that must elapse until no cell in the grid below has a fresh orange: 1 1 2 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 0 1 1 1 1 1 0 1 1 1 0 1 1 1 0 2 2 1 1 1 1 1 1 1 1 1 1 1 2 1 1 0 1 1 1 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 1 2 1 2 1 1 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 2 1 0 1 1 2 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 0 1 1 2 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 2 1 1 1 0 1 1 0 1 1 1 1 1 2 1 1 1 0 1 1 2 1 1 1 1 1 2 1 1 1 1 1 0 1 2 1 0 0 1 1 1 1 2 1 1 1 1 1 1 0 0 1 1 1 1 1 1 0 1 0 0 1 1 1 0 1 1 0 1 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 2 0 2 2 1 0 1 1 1 0 1 1 1 1 0 2 1 1 2 1 2 1 0 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 0 1 1 1 1 0 1 1 2 1 1 1 1 1 1 1 1 1 0 0 1 0 1 1 1 1 1 1 1 1 2 0 1 1 2 0 1 1 1 1 1 0 1 1 0 1 1 1 1 0 0 1 1 1 1 0 1 1 2 1 0 1 1 0 1 1 1 1 1 1 1 2 1 0 1 1 1 1 2 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 2 0 1 1 0 0 2 0 0 2 1 1 1 0 1 1 2 1 1 0 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 0 1 0 0 1 1 1 1 1 1 2 2 1 1 1 1 0 1 2 1 1 2 1 1 1 0 1 1 1 1 2 2 1 2 1 1 1 1 1 2 1 1 2 1 0 1 0 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 2 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 1 1 1 1 0 1 1 1 2 1 1 2 1 1 1 0 1 1 1 1 1 1 0 2 1 1 1 1 1 1 2 1 0 1 1 1 1 1 0 1 2 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 2 2 1 1 1 1 1 0 1 2 0 1 1 1 0 1 1 1 0 1 1 1 1 0 0 1 1 2 1 0 0 1 1 1 1 2 1 1 0 1 1 1 1 1 1 1 1 1 0 1 2 0 1 1 1 0 2 1 0 1 1 1 0 1 1 1 2 1 1 1 1 1 1 1 1 1 1 2 1 1 0 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 1 2 2 0 1 1 2 0 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 2 1 2 1 1 1 2 2 1 1 1 1 0 1 2 1 1 1 2 1 2 1
-1
rotten_oranges
{"difficulty": {"n": [25, 50]}, "matrix": [[1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1], [1, 0, 1, 1, 1, 0, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 0, 1, 1, 1, 0, 0], [1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 0, 1, 1, 2, 1, 0, 1, 1, 1, 1, 1, 0, 1], [1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [0, 1, 2, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1], [2, 1, 1, 1, 1, 1, 0, 1, 2, 1, 0, 0, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1], [1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1], [1, 1, 1, 1, 2, 0, 2, 2, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 2, 1, 1, 2, 1, 2, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0], [1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 0, 1, 1, 2, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1], [1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 2, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 0, 1, 1], [1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 0, 1, 1], [0, 0, 2, 0, 0, 2, 1, 1, 1, 0, 1, 1, 2, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 0], [1, 2, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 1, 2, 2, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 0], [1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1], [0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 2], [1, 1, 1, 1, 1, 1, 2, 1, 0, 1, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0], [1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 0, 1, 2, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0], [0, 1, 1, 2, 1, 0, 0, 1, 1, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 0], [1, 1, 1, 0, 2, 1, 0, 1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1], [0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 2, 0, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 2, 2, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 2, 1, 2, 1]], "n": 28, "solution": -1, "source_dataset": "rotten_oranges", "source_index": 90}
You are a police officer. A maniac has planted a bomb next to a public fountain. To defuse the bomb, you must solve a puzzle. The puzzle is solved when you fill any of the available jugs with the target amount of water. You have three move types: 'fill', 'empty' and 'pour'. To fill Jug A, you 'fill A'. To empty Jug B, you 'empty B'. To pour the contents of Jug A into Jug B, you 'pour A->B'. All jugs are empty to begin with. The empty jugs hold this many litres of water: A:8, B:9, C:8, D:8 And your target is: 4 litres. How do you defuse the bomb? Reply as a JSON-parsable list of moves which result in any of the jugs being filled with the target amount.
["fill B", "pour B->A", "empty A", "pour B->A", "fill B", "pour B->A", "empty A", "pour B->A", "fill B", "pour B->A", "pour B->C", "fill B", "pour B->C"]
jugs
{"difficulty": {"difficulty": 10, "num_jugs": 4}, "puzzle": {"jug_capacities": [8, 9, 8, 8], "min_moves": 12, "target": 4}, "source_dataset": "jugs", "source_index": 64}
Your task is to convert a number between two different bases. If the target base is > 10, use lowercase letters a-z for digits above 9. Now, convert the base-9 number 127651 to base-18
d62a
base_conversion
{"decimal_value": 77806, "difficulty": {"base": [9, 18], "value": [10000, 100000]}, "source_base": 9, "source_dataset": "base_conversion", "source_index": 65, "source_repr": "127651", "target_base": 18, "target_repr": "d62a"}
An anagram is a word formed by rearranging the letters of a different word, using all the original letters exactly once. Your job is to group the anagrams together. You can return the answer in any order. The output is a list of lists of strings, where each outer list contains a group of anagrams, e.g. [["eat", "tea"], ["tan", "nat"]]. Group the following list of words into anagrams: ["alkylic", "lilacky", "pterography", "typographer", "noisance", "canonise", "tapit", "pitta", "argling", "glaring", "revisit", "visiter", "travoy", "votary", "posteriad", "disperato", "slid", "sild", "lids", "crawls", "scrawl", "lavish", "vishal"]
[["alkylic", "lilacky"], ["argling", "glaring"], ["canonise", "noisance"], ["crawls", "scrawl"], ["disperato", "posteriad"], ["lavish", "vishal"], ["lids", "sild", "slid"], ["pitta", "tapit"], ["pterography", "typographer"], ["revisit", "visiter"], ["travoy", "votary"]]
group_anagrams
{"anagram_groups": 11, "difficulty": {"anagram_groups": [10, 50], "words_per_group": [2, 5]}, "solution": [["alkylic", "lilacky"], ["argling", "glaring"], ["canonise", "noisance"], ["crawls", "scrawl"], ["disperato", "posteriad"], ["lavish", "vishal"], ["lids", "sild", "slid"], ["pitta", "tapit"], ["pterography", "typographer"], ["revisit", "visiter"], ["travoy", "votary"]], "source_dataset": "group_anagrams", "source_index": 98, "words": ["alkylic", "lilacky", "pterography", "typographer", "noisance", "canonise", "tapit", "pitta", "argling", "glaring", "revisit", "visiter", "travoy", "votary", "posteriad", "disperato", "slid", "sild", "lids", "crawls", "scrawl", "lavish", "vishal"]}
Solve this cryptarithm: JUM JQVQQ BMWV ABBTM + BMU -------- TBCQBU Each letter stands for a unique digit (0-9). No leading letter can be zero. Provide a comma separated mapping from letters to digits that satisfies the equation in your final answer. Output format: "A=1,B=2,C=3" (without quotes)
A=5,B=3,C=6,J=7,M=9,Q=8,T=1,U=2,V=4,W=0
cryptarithm
{"difficulty": {"words": [5, 10]}, "digit_to_letter": {"0": "W", "1": "T", "2": "U", "3": "B", "4": "V", "5": "A", "6": "C", "7": "J", "8": "Q", "9": "M"}, "letter_to_digit": {"A": 5, "B": 3, "C": 6, "J": 7, "M": 9, "Q": 8, "T": 1, "U": 2, "V": 4, "W": 0}, "letters": ["T", "M", "J", "B", "V", "Q", "A", "W", "C", "U"], "result_letters": "TBCQBU", "source_dataset": "cryptarithm", "source_index": 46, "sum_number": 136832, "word_values": [729, 78488, 3904, 53319, 392], "words_letters": ["JUM", "JQVQQ", "BMWV", "ABBTM", "BMU"]}
Decrypt this Caesar cipher text: LZW EGGF AK AEEWSKMJSTDQ DWKK VAKLSFL LZSF QWL OALZ ESJK GMJ UGEEMFAUSLAGF AK XMDDQ WKLSTDAKZWV. Provide only the decrypted text as your final answer.
THE MOON IS IMMEASURABLY LESS DISTANT THAN YET WITH MARS OUR COMMUNICATION IS FULLY ESTABLISHED
caesar_cipher
{"cipher_text": "LZW EGGF AK AEEWSKMJSTDQ DWKK VAKLSFL LZSF QWL OALZ ESJK GMJ UGEEMFAUSLAGF AK XMDDQ WKLSTDAKZWV", "clear_text": "THE MOON IS IMMEASURABLY LESS DISTANT THAN YET WITH MARS OUR COMMUNICATION IS FULLY ESTABLISHED", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 15, "rotation": 18, "source_dataset": "caesar_cipher", "source_index": 32}
Decrypt this Caesar cipher text: TCIGPCRTS QN IWT UDGVTIUJA DU IWT HBXIW SXS CDI CDIXRT IWPI XI LPH VGDLXCV SPGZ. Provide only the decrypted text as your final answer.
ENTRANCED BY THE FORGETFUL OF THE SMITH DID NOT NOTICE THAT IT WAS GROWING DARK
caesar_cipher
{"cipher_text": "TCIGPCRTS QN IWT UDGVTIUJA DU IWT HBXIW SXS CDI CDIXRT IWPI XI LPH VGDLXCV SPGZ", "clear_text": "ENTRANCED BY THE FORGETFUL OF THE SMITH DID NOT NOTICE THAT IT WAS GROWING DARK", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 15, "rotation": 15, "source_dataset": "caesar_cipher", "source_index": 120}
Decrypt this Caesar cipher text: MGCNB YHNYLYX NBY BY ZIOHX NBY IJYLUNILM MCNNCHA QCNB ZIFXYX ULGM UN NBYCL GINCIHFYMM UHX CHKOCLYX UM NI NBY WUOMY IZ NBYCL CHUWNCIH. Provide only the decrypted text as your final answer.
SMITH ENTERED THE HE FOUND THE OPERATORS SITTING WITH FOLDED ARMS AT THEIR MOTIONLESS AND INQUIRED AS TO THE CAUSE OF THEIR INACTION
caesar_cipher
{"cipher_text": "MGCNB YHNYLYX NBY BY ZIOHX NBY IJYLUNILM MCNNCHA QCNB ZIFXYX ULGM UN NBYCL GINCIHFYMM UHX CHKOCLYX UM NI NBY WUOMY IZ NBYCL CHUWNCIH", "clear_text": "SMITH ENTERED THE HE FOUND THE OPERATORS SITTING WITH FOLDED ARMS AT THEIR MOTIONLESS AND INQUIRED AS TO THE CAUSE OF THEIR INACTION", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 23, "rotation": 20, "source_dataset": "caesar_cipher", "source_index": 146}
Given a square matrix, your job is to rotate it clockwise. Your output should be a matrix in the same format as the input. Rotate the matrix below by 540 degrees clockwise: 3 9 4 1 5 3 7 9 2 1 4 7 3 8 6 6 2 5 4 7 1 6 1 8 7 9 1 8 9 7 4 5 9 0 8 5 6 6 2 5 6 1 7 1 9 0 0 3 7 6 4 5 7 9 3 0 3 9 5 7 1 7 5 9 1 3 0 7 1 5 1 4 4 9 8 3 6 9 9 3 3 2 2 6 5 5 7 2 6 5 0 6 1 8 9 6 2 0 7 2 6 2 8 2 1 9 8 1 5 1 2 0 7 9 6 5 1 4 8 1 8 1 7 4 3 3 9 0 0 8 5 0 0 2 4 5 8 1 9 8 7 7 8 4 0 5 2 7 0 3 1 0 7 1 1 0 5 3 5 6 4 4 4 0 4 1 5 6 5 6 8 9 9 3 5 5 2 7 4 3 4 5 0 9 2 5 1 4 3 2 5 5 0 3 2 4 7 5 7 3 1 1 3 6 0 9 0 1 6 6 2 6 4 0 3 6 9 3 4 4 1 8 3 9 2 8 7 2 8 1 5 4 2 1 8 7 0 9 3 4 6 7 2 1 0 0 9 4 2 0 4 1 7 3 5 5 6 4 7 7 8 0 1 7 1 2 7 1 6 9 1 6 9 9 2 5 4 0 2 6 4 5 6 4 6 7 0 2 1 4 4 4 4 7 4 3 8 9 9 4 6 9 3 3 2 2 3 5 6 4 4 2 4 1 6 1 0 2 1 5 3 1 0 2 9 9 4 1 1 9 8 7 3 9 9 9 1 4 2 4 3 4 0 7 7 9 1 0 9 0 7 4 0 5 0 4 6 5 7 1 1 9 3 0 3 7 3 6 0 2 9 8 4 7 0 3 1 0 4 7 4 0 0 8 6 9 0 0 5 5 5 1 7 1 9 7 1 9 1 7 0 6 7 7 9 9 7 3 4 7 6 6 2 1 3 9 3 2 0 8 7 8 3 4 1 8 2 1 0 4 8 8 9 8 0 4 0 0 3 1 7 2 8 8 0 0 8 0 8 1 9 5 6 9 3 6 2 4 6 0 6 8 4 7 1 4 3 9 4 9 6 9 8 1 7 3 0 3 8 6 5 7 5 0 9 6 2 1 5 2 5 5 8 7 4 8 7 7 7 0 3 0 2 7 3 8 9 6 3 5 0 0 9 9 2 0 3 1 4 7 4 4 8 1 9 8 1 3 8 8 1 0 6 9 7 7 8 7 2 1 9 3 3 2 4 7 6 7 4 0 6 2 0 3 7 4 4 8 9 6 6 4 4 4 5 6 0 9 8 5 9 0 7 8 1 2 8 9 5 1 5 5 9 3 4 0 2 2 3 2 5 9 9 4 7 9 2 8 8 0 8 8 2 3 8 8 8 6 7 7 6 8 4 6 6 9 7 1 2 1 2 9 3 0 6 3 3 6 6 5 2 5 9 9 0 2 4 0 1 7 8 9 0 9 9 9 5 4 8 2 4 0 2 4 0 3 7 0 6 8 9 9 5 5 1 3 6 3 3 5 7 5 3 0 0 8 8 2 3 4 0 8 1 7 0 9 8 9 9 7 7 9 5 8 4 6 6 7 1 7 2 0 4 6 2 6 3 8 4 6 4 9 9 3 0 4 2 9 3 0 3 6 0 7 0 9 4 1 7 1 0 7 4 1 0 2 5 9 8 4 0 9 8 3 5 9 4 1 2 3 0 6 7 8 6 9 7 3 9 5 0 4 8 2 6 9 4 1 0 3 5 4 7 1 1 8 6 4 9 6 6 1 2 6 4 3 1 9 0 3 5 9 1 6 1 9 8 9 7 2 6 8 6 8 4 0 4 1 6 8 9 1 6 6 7 2 8 8 4 3 5 2 8 8 9 7 3 2 4 8 9 1 6 4 3 0 1 1 5 3 0 8 5 2 2 0 2 0 7 5 6 3 7 0 2 2 2 8 1 6 4 3 3 1 5 8 3 0 5 1 4 6 8 1 8 5 0 8 9 4 7 1 8 1 5 6 0 8 6 4 9 7 5 5 7 6 6 1 0 8 8 2 9 6 2 4 7 3 4 6 8 0 0 8 5 3 9 1 3 5 0 5 9 6 5 0 6 6 9 8 2 0 9 9 5 6 0 2 5 7 0 9 6 6 4 0 6 7 7 7 3 2 3 1 8 9 3 0 5 1 4 6 3 6 4 7 4 2 6 5 1 9 5 4 4 9 0 1 2 5 5 5 1 3 7 7 7 5 4 9 2 8 9 5 7 9 6 9 1 5 7 1 7 1 8 4 4 7 5 8 6 2 4 4 3 1 5 3 7 3 6 3 0 1 5 5 0 6 1 8 8 9 2 2 0 7 5 3 5 3 4 2 9 3 8 9 5 3 7 9 3 7 5 6 1 6 2 7 7 5 4 1 3 9 2 6 4 6 3 3 1 9 1 0 9 5 3 6 4 2 4 7 0 3 9 7 4 9 1 4 5 0 0 2 2 0 8 1 5 6 1 1 3 7 1 7 1 8 8 6 7 3 2 2 9 4 5 9 2 7 2 2 8 5 5 6 3 8 7 5 8 7 2 0 3 1 0 7 3 1 8 3 9 7 1 4 2 6 0 4 2 0 8 4 7 7 7 1 5 0 1 8 7 3 3 6 7 2 3 8 1 8 9 9 3 3 7 9 8 6 4 6 5 2 6 2 4 4 9 4 2 3 4 7 8 0 2 4 4 7 8 7 1 6 1 3 9 4 3 5 3 5 3 1 4 5 0 2 3 1 2 8 3 2 7 1 7 8 6 9 1 2 2 2 1 8 3 3 7 1 6 4 2 8 2 7 8 5 1 2 0 7 4 3 8 9 0 4 3 2 7 3 9 1 1 9 0 4 4 4 7 1 1 7 8 2 7 4 9 9 4 1 9 7 9 1 6 5 8 7 4 3 5 8 8 1 8 2 0 7 2 5 2 1 1 6 3 0 5 3 4 6 2 6 7 3 0 6 2 0 9 6 7 5 4 7 7 2 9 7 6 2 0 9 6 6 1 0 7 9 1 1 6 1 4 1 8 0 6 4 4 7 6 5 7 0 2 8 8 2 7 4 4 5 5 8 9 5 7 3 9 2 6 3 3 3 1 9 8 2 6 4 2 3 6 8 9 0 2 8 3 0 4 7 1 9 0 6 9 2 3 4 4 3 7 4 7 7 9 3 3 7 1 0 0 4 2 8 1 7 9 6 4 0 3 5 3 4 4 3 6 8 9 0 9 2 7 6 0 1 6 8 8 1 4 5 7 2 5 1 5 5 8 6 2 0 5 1 1 4 1 4 4 0 3 0 2 2 8 7 2 5 6 6 3 7 1 3 4 6 3 8 1 7 5 4 9 8 0 6 0 0 0 2 2 1 5 0 2 4 3 1 9 6 8 7 6 4 6 4 9 8 9 4 7 2 5 2 3 1 2 9 8 1 6 3 8 2 8 7 5 0 6 6 6 6 5 0 6 9 6 3 7 3 3 4 5 9 7 2 2 3 4 8 5 9 6 9 1 6 6 1 4 3 0 1 3 5 3 2 1 7 9 4 2 8 8 2 6 6 8 0 0 6 2 7 4 3 5 9 3 0 4 8 6 1 6 4 9 2 0 3 1 6 7 3 7 6 2 6 3 7 2 6 0 5 7 2 8 5 7 8 3 9 0 8 8 4 8 7 8 1 6 0 3 4 8 1 3 7 1 8 0 6 2 1 4 3 3 9 9 1 4 4 2 4 1 6 8 0 5 6 8 5 7 9 6 4 3 0 9 2 1 7 8 6 5 5 7 0 5
5 0 7 5 5 6 8 7 1 2 9 0 3 4 6 9 7 5 8 6 5 0 8 6 1 4 2 4 4 1 9 9 3 3 4 1 2 6 0 8 1 7 3 1 8 4 3 0 6 1 8 7 8 4 8 8 0 9 3 8 7 5 8 2 7 5 0 6 2 7 3 6 2 6 7 3 7 6 1 3 0 2 9 4 6 1 6 8 4 0 3 9 5 3 4 7 2 6 0 0 8 6 6 2 8 8 2 4 9 7 1 2 3 5 3 1 0 3 4 1 6 6 1 9 6 9 5 8 4 3 2 2 7 9 5 4 3 3 7 3 6 9 6 0 5 6 6 6 6 0 5 7 8 2 8 3 6 1 8 9 2 1 3 2 5 2 7 4 9 8 9 4 6 4 6 7 8 6 9 1 3 4 2 0 5 1 2 2 0 0 0 6 0 8 9 4 5 7 1 8 3 6 4 3 1 7 3 6 6 5 2 7 8 2 2 0 3 0 4 4 1 4 1 1 5 0 2 6 8 5 5 1 5 2 7 5 4 1 8 8 6 1 0 6 7 2 9 0 9 8 6 3 4 4 3 5 3 0 4 6 9 7 1 8 2 4 0 0 1 7 3 3 9 7 7 4 7 3 4 4 3 2 9 6 0 9 1 7 4 0 3 8 2 0 9 8 6 3 2 4 6 2 8 9 1 3 3 3 6 2 9 3 7 5 9 8 5 5 4 4 7 2 8 8 2 0 7 5 6 7 4 4 6 0 8 1 4 1 6 1 1 9 7 0 1 6 6 9 0 2 6 7 9 2 7 7 4 5 7 6 9 0 2 6 0 3 7 6 2 6 4 3 5 0 3 6 1 1 2 5 2 7 0 2 8 1 8 8 5 3 4 7 8 5 6 1 9 7 9 1 4 9 9 4 7 2 8 7 1 1 7 4 4 4 0 9 1 1 9 3 7 2 3 4 0 9 8 3 4 7 0 2 1 5 8 7 2 8 2 4 6 1 7 3 3 8 1 2 2 2 1 9 6 8 7 1 7 2 3 8 2 1 3 2 0 5 4 1 3 5 3 5 3 4 9 3 1 6 1 7 8 7 4 4 2 0 8 7 4 3 2 4 9 4 4 2 6 2 5 6 4 6 8 9 7 3 3 9 9 8 1 8 3 2 7 6 3 3 7 8 1 0 5 1 7 7 7 4 8 0 2 4 0 6 2 4 1 7 9 3 8 1 3 7 0 1 3 0 2 7 8 5 7 8 3 6 5 5 8 2 2 7 2 9 5 4 9 2 2 3 7 6 8 8 1 7 1 7 3 1 1 6 5 1 8 0 2 2 0 0 5 4 1 9 4 7 9 3 0 7 4 2 4 6 3 5 9 0 1 9 1 3 3 6 4 6 2 9 3 1 4 5 7 7 2 6 1 6 5 7 3 9 7 3 5 9 8 3 9 2 4 3 5 3 5 7 0 2 2 9 8 8 1 6 0 5 5 1 0 3 6 3 7 3 5 1 3 4 4 2 6 8 5 7 4 4 8 1 7 1 7 5 1 9 6 9 7 5 9 8 2 9 4 5 7 7 7 3 1 5 5 5 2 1 0 9 4 4 5 9 1 5 6 2 4 7 4 6 3 6 4 1 5 0 3 9 8 1 3 2 3 7 7 7 6 0 4 6 6 9 0 7 5 2 0 6 5 9 9 0 2 8 9 6 6 0 5 6 9 5 0 5 3 1 9 3 5 8 0 0 8 6 4 3 7 4 2 6 9 2 8 8 0 1 6 6 7 5 5 7 9 4 6 8 0 6 5 1 8 1 7 4 9 8 0 5 8 1 8 6 4 1 5 0 3 8 5 1 3 3 4 6 1 8 2 2 2 0 7 3 6 5 7 0 2 0 2 2 5 8 0 3 5 1 1 0 3 4 6 1 9 8 4 2 3 7 9 8 8 2 5 3 4 8 8 2 7 6 6 1 9 8 6 1 4 0 4 8 6 8 6 2 7 9 8 9 1 6 1 9 5 3 0 9 1 3 4 6 2 1 6 6 9 4 6 8 1 1 7 4 5 3 0 1 4 9 6 2 8 4 0 5 9 3 7 9 6 8 7 6 0 3 2 1 4 9 5 3 8 9 0 4 8 9 5 2 0 1 4 7 0 1 7 1 4 9 0 7 0 6 3 0 3 9 2 4 0 3 9 9 4 6 4 8 3 6 2 6 4 0 2 7 1 7 6 6 4 8 5 9 7 7 9 9 8 9 0 7 1 8 0 4 3 2 8 8 0 0 3 5 7 5 3 3 6 3 1 5 5 9 9 8 6 0 7 3 0 4 2 0 4 2 8 4 5 9 9 9 0 9 8 7 1 0 4 2 0 9 9 5 2 5 6 6 3 3 6 0 3 9 2 1 2 1 7 9 6 6 4 8 6 7 7 6 8 8 8 3 2 8 8 0 8 8 2 9 7 4 9 9 5 2 3 2 2 0 4 3 9 5 5 1 5 9 8 2 1 8 7 0 9 5 8 9 0 6 5 4 4 4 6 6 9 8 4 4 7 3 0 2 6 0 4 7 6 7 4 2 3 3 9 1 2 7 8 7 7 9 6 0 1 8 8 3 1 8 9 1 8 4 4 7 4 1 3 0 2 9 9 0 0 5 3 6 9 8 3 7 2 0 3 0 7 7 7 8 4 7 8 5 5 2 5 1 2 6 9 0 5 7 5 6 8 3 0 3 7 1 8 9 6 9 4 9 3 4 1 7 4 8 6 0 6 4 2 6 3 9 6 5 9 1 8 0 8 0 0 8 8 2 7 1 3 0 0 4 0 8 9 8 8 4 0 1 2 8 1 4 3 8 7 8 0 2 3 9 3 1 2 6 6 7 4 3 7 9 9 7 7 6 0 7 1 9 1 7 9 1 7 1 5 5 5 0 0 9 6 8 0 0 4 7 4 0 1 3 0 7 4 8 9 2 0 6 3 7 3 0 3 9 1 1 7 5 6 4 0 5 0 4 7 0 9 0 1 9 7 7 0 4 3 4 2 4 1 9 9 9 3 7 8 9 1 1 4 9 9 2 0 1 3 5 1 2 0 1 6 1 4 2 4 4 6 5 3 2 2 3 3 9 6 4 9 9 8 3 4 7 4 4 4 4 1 2 0 7 6 4 6 5 4 6 2 0 4 5 2 9 9 6 1 9 6 1 7 2 1 7 1 0 8 7 7 4 6 5 5 3 7 1 4 0 2 4 9 0 0 1 2 7 6 4 3 9 0 7 8 1 2 4 5 1 8 2 7 8 2 9 3 8 1 4 4 3 9 6 3 0 4 6 2 6 6 1 0 9 0 6 3 1 1 3 7 5 7 4 2 3 0 5 5 2 3 4 1 5 2 9 0 5 4 3 4 7 2 5 5 3 9 9 8 6 5 6 5 1 4 0 4 4 4 6 5 3 5 0 1 1 7 0 1 3 0 7 2 5 0 4 8 7 7 8 9 1 8 5 4 2 0 0 5 8 0 0 9 3 3 4 7 1 8 1 8 4 1 5 6 9 7 0 2 1 5 1 8 9 1 2 8 2 6 2 7 0 2 6 9 8 1 6 0 5 6 2 7 5 5 6 2 2 3 3 9 9 6 3 8 9 4 4 1 5 1 7 0 3 1 9 5 7 1 7 5 9 3 0 3 9 7 5 4 6 7 3 0 0 9 1 7 1 6 5 2 6 6 5 8 0 9 5 4 7 9 8 1 9 7 8 1 6 1 7 4 5 2 6 6 8 3 7 4 1 2 9 7 3 5 1 4 9 3
rotate_matrix
{"difficulty": {"n": [25, 50], "num_rotations": [5, 15]}, "matrix": [[3, 9, 4, 1, 5, 3, 7, 9, 2, 1, 4, 7, 3, 8, 6, 6, 2, 5, 4, 7, 1, 6, 1, 8, 7, 9, 1, 8, 9, 7, 4, 5, 9, 0, 8, 5, 6, 6, 2, 5, 6], [1, 7, 1, 9, 0, 0, 3, 7, 6, 4, 5, 7, 9, 3, 0, 3, 9, 5, 7, 1, 7, 5, 9, 1, 3, 0, 7, 1, 5, 1, 4, 4, 9, 8, 3, 6, 9, 9, 3, 3, 2], [2, 6, 5, 5, 7, 2, 6, 5, 0, 6, 1, 8, 9, 6, 2, 0, 7, 2, 6, 2, 8, 2, 1, 9, 8, 1, 5, 1, 2, 0, 7, 9, 6, 5, 1, 4, 8, 1, 8, 1, 7], [4, 3, 3, 9, 0, 0, 8, 5, 0, 0, 2, 4, 5, 8, 1, 9, 8, 7, 7, 8, 4, 0, 5, 2, 7, 0, 3, 1, 0, 7, 1, 1, 0, 5, 3, 5, 6, 4, 4, 4, 0], [4, 1, 5, 6, 5, 6, 8, 9, 9, 3, 5, 5, 2, 7, 4, 3, 4, 5, 0, 9, 2, 5, 1, 4, 3, 2, 5, 5, 0, 3, 2, 4, 7, 5, 7, 3, 1, 1, 3, 6, 0], [9, 0, 1, 6, 6, 2, 6, 4, 0, 3, 6, 9, 3, 4, 4, 1, 8, 3, 9, 2, 8, 7, 2, 8, 1, 5, 4, 2, 1, 8, 7, 0, 9, 3, 4, 6, 7, 2, 1, 0, 0], [9, 4, 2, 0, 4, 1, 7, 3, 5, 5, 6, 4, 7, 7, 8, 0, 1, 7, 1, 2, 7, 1, 6, 9, 1, 6, 9, 9, 2, 5, 4, 0, 2, 6, 4, 5, 6, 4, 6, 7, 0], [2, 1, 4, 4, 4, 4, 7, 4, 3, 8, 9, 9, 4, 6, 9, 3, 3, 2, 2, 3, 5, 6, 4, 4, 2, 4, 1, 6, 1, 0, 2, 1, 5, 3, 1, 0, 2, 9, 9, 4, 1], [1, 9, 8, 7, 3, 9, 9, 9, 1, 4, 2, 4, 3, 4, 0, 7, 7, 9, 1, 0, 9, 0, 7, 4, 0, 5, 0, 4, 6, 5, 7, 1, 1, 9, 3, 0, 3, 7, 3, 6, 0], [2, 9, 8, 4, 7, 0, 3, 1, 0, 4, 7, 4, 0, 0, 8, 6, 9, 0, 0, 5, 5, 5, 1, 7, 1, 9, 7, 1, 9, 1, 7, 0, 6, 7, 7, 9, 9, 7, 3, 4, 7], [6, 6, 2, 1, 3, 9, 3, 2, 0, 8, 7, 8, 3, 4, 1, 8, 2, 1, 0, 4, 8, 8, 9, 8, 0, 4, 0, 0, 3, 1, 7, 2, 8, 8, 0, 0, 8, 0, 8, 1, 9], [5, 6, 9, 3, 6, 2, 4, 6, 0, 6, 8, 4, 7, 1, 4, 3, 9, 4, 9, 6, 9, 8, 1, 7, 3, 0, 3, 8, 6, 5, 7, 5, 0, 9, 6, 2, 1, 5, 2, 5, 5], [8, 7, 4, 8, 7, 7, 7, 0, 3, 0, 2, 7, 3, 8, 9, 6, 3, 5, 0, 0, 9, 9, 2, 0, 3, 1, 4, 7, 4, 4, 8, 1, 9, 8, 1, 3, 8, 8, 1, 0, 6], [9, 7, 7, 8, 7, 2, 1, 9, 3, 3, 2, 4, 7, 6, 7, 4, 0, 6, 2, 0, 3, 7, 4, 4, 8, 9, 6, 6, 4, 4, 4, 5, 6, 0, 9, 8, 5, 9, 0, 7, 8], [1, 2, 8, 9, 5, 1, 5, 5, 9, 3, 4, 0, 2, 2, 3, 2, 5, 9, 9, 4, 7, 9, 2, 8, 8, 0, 8, 8, 2, 3, 8, 8, 8, 6, 7, 7, 6, 8, 4, 6, 6], [9, 7, 1, 2, 1, 2, 9, 3, 0, 6, 3, 3, 6, 6, 5, 2, 5, 9, 9, 0, 2, 4, 0, 1, 7, 8, 9, 0, 9, 9, 9, 5, 4, 8, 2, 4, 0, 2, 4, 0, 3], [7, 0, 6, 8, 9, 9, 5, 5, 1, 3, 6, 3, 3, 5, 7, 5, 3, 0, 0, 8, 8, 2, 3, 4, 0, 8, 1, 7, 0, 9, 8, 9, 9, 7, 7, 9, 5, 8, 4, 6, 6], [7, 1, 7, 2, 0, 4, 6, 2, 6, 3, 8, 4, 6, 4, 9, 9, 3, 0, 4, 2, 9, 3, 0, 3, 6, 0, 7, 0, 9, 4, 1, 7, 1, 0, 7, 4, 1, 0, 2, 5, 9], [8, 4, 0, 9, 8, 3, 5, 9, 4, 1, 2, 3, 0, 6, 7, 8, 6, 9, 7, 3, 9, 5, 0, 4, 8, 2, 6, 9, 4, 1, 0, 3, 5, 4, 7, 1, 1, 8, 6, 4, 9], [6, 6, 1, 2, 6, 4, 3, 1, 9, 0, 3, 5, 9, 1, 6, 1, 9, 8, 9, 7, 2, 6, 8, 6, 8, 4, 0, 4, 1, 6, 8, 9, 1, 6, 6, 7, 2, 8, 8, 4, 3], [5, 2, 8, 8, 9, 7, 3, 2, 4, 8, 9, 1, 6, 4, 3, 0, 1, 1, 5, 3, 0, 8, 5, 2, 2, 0, 2, 0, 7, 5, 6, 3, 7, 0, 2, 2, 2, 8, 1, 6, 4], [3, 3, 1, 5, 8, 3, 0, 5, 1, 4, 6, 8, 1, 8, 5, 0, 8, 9, 4, 7, 1, 8, 1, 5, 6, 0, 8, 6, 4, 9, 7, 5, 5, 7, 6, 6, 1, 0, 8, 8, 2], [9, 6, 2, 4, 7, 3, 4, 6, 8, 0, 0, 8, 5, 3, 9, 1, 3, 5, 0, 5, 9, 6, 5, 0, 6, 6, 9, 8, 2, 0, 9, 9, 5, 6, 0, 2, 5, 7, 0, 9, 6], [6, 4, 0, 6, 7, 7, 7, 3, 2, 3, 1, 8, 9, 3, 0, 5, 1, 4, 6, 3, 6, 4, 7, 4, 2, 6, 5, 1, 9, 5, 4, 4, 9, 0, 1, 2, 5, 5, 5, 1, 3], [7, 7, 7, 5, 4, 9, 2, 8, 9, 5, 7, 9, 6, 9, 1, 5, 7, 1, 7, 1, 8, 4, 4, 7, 5, 8, 6, 2, 4, 4, 3, 1, 5, 3, 7, 3, 6, 3, 0, 1, 5], [5, 0, 6, 1, 8, 8, 9, 2, 2, 0, 7, 5, 3, 5, 3, 4, 2, 9, 3, 8, 9, 5, 3, 7, 9, 3, 7, 5, 6, 1, 6, 2, 7, 7, 5, 4, 1, 3, 9, 2, 6], [4, 6, 3, 3, 1, 9, 1, 0, 9, 5, 3, 6, 4, 2, 4, 7, 0, 3, 9, 7, 4, 9, 1, 4, 5, 0, 0, 2, 2, 0, 8, 1, 5, 6, 1, 1, 3, 7, 1, 7, 1], [8, 8, 6, 7, 3, 2, 2, 9, 4, 5, 9, 2, 7, 2, 2, 8, 5, 5, 6, 3, 8, 7, 5, 8, 7, 2, 0, 3, 1, 0, 7, 3, 1, 8, 3, 9, 7, 1, 4, 2, 6], [0, 4, 2, 0, 8, 4, 7, 7, 7, 1, 5, 0, 1, 8, 7, 3, 3, 6, 7, 2, 3, 8, 1, 8, 9, 9, 3, 3, 7, 9, 8, 6, 4, 6, 5, 2, 6, 2, 4, 4, 9], [4, 2, 3, 4, 7, 8, 0, 2, 4, 4, 7, 8, 7, 1, 6, 1, 3, 9, 4, 3, 5, 3, 5, 3, 1, 4, 5, 0, 2, 3, 1, 2, 8, 3, 2, 7, 1, 7, 8, 6, 9], [1, 2, 2, 2, 1, 8, 3, 3, 7, 1, 6, 4, 2, 8, 2, 7, 8, 5, 1, 2, 0, 7, 4, 3, 8, 9, 0, 4, 3, 2, 7, 3, 9, 1, 1, 9, 0, 4, 4, 4, 7], [1, 1, 7, 8, 2, 7, 4, 9, 9, 4, 1, 9, 7, 9, 1, 6, 5, 8, 7, 4, 3, 5, 8, 8, 1, 8, 2, 0, 7, 2, 5, 2, 1, 1, 6, 3, 0, 5, 3, 4, 6], [2, 6, 7, 3, 0, 6, 2, 0, 9, 6, 7, 5, 4, 7, 7, 2, 9, 7, 6, 2, 0, 9, 6, 6, 1, 0, 7, 9, 1, 1, 6, 1, 4, 1, 8, 0, 6, 4, 4, 7, 6], [5, 7, 0, 2, 8, 8, 2, 7, 4, 4, 5, 5, 8, 9, 5, 7, 3, 9, 2, 6, 3, 3, 3, 1, 9, 8, 2, 6, 4, 2, 3, 6, 8, 9, 0, 2, 8, 3, 0, 4, 7], [1, 9, 0, 6, 9, 2, 3, 4, 4, 3, 7, 4, 7, 7, 9, 3, 3, 7, 1, 0, 0, 4, 2, 8, 1, 7, 9, 6, 4, 0, 3, 5, 3, 4, 4, 3, 6, 8, 9, 0, 9], [2, 7, 6, 0, 1, 6, 8, 8, 1, 4, 5, 7, 2, 5, 1, 5, 5, 8, 6, 2, 0, 5, 1, 1, 4, 1, 4, 4, 0, 3, 0, 2, 2, 8, 7, 2, 5, 6, 6, 3, 7], [1, 3, 4, 6, 3, 8, 1, 7, 5, 4, 9, 8, 0, 6, 0, 0, 0, 2, 2, 1, 5, 0, 2, 4, 3, 1, 9, 6, 8, 7, 6, 4, 6, 4, 9, 8, 9, 4, 7, 2, 5], [2, 3, 1, 2, 9, 8, 1, 6, 3, 8, 2, 8, 7, 5, 0, 6, 6, 6, 6, 5, 0, 6, 9, 6, 3, 7, 3, 3, 4, 5, 9, 7, 2, 2, 3, 4, 8, 5, 9, 6, 9], [1, 6, 6, 1, 4, 3, 0, 1, 3, 5, 3, 2, 1, 7, 9, 4, 2, 8, 8, 2, 6, 6, 8, 0, 0, 6, 2, 7, 4, 3, 5, 9, 3, 0, 4, 8, 6, 1, 6, 4, 9], [2, 0, 3, 1, 6, 7, 3, 7, 6, 2, 6, 3, 7, 2, 6, 0, 5, 7, 2, 8, 5, 7, 8, 3, 9, 0, 8, 8, 4, 8, 7, 8, 1, 6, 0, 3, 4, 8, 1, 3, 7], [1, 8, 0, 6, 2, 1, 4, 3, 3, 9, 9, 1, 4, 4, 2, 4, 1, 6, 8, 0, 5, 6, 8, 5, 7, 9, 6, 4, 3, 0, 9, 2, 1, 7, 8, 6, 5, 5, 7, 0, 5]], "n": 41, "num_rotations": 6, "solution": [[5, 0, 7, 5, 5, 6, 8, 7, 1, 2, 9, 0, 3, 4, 6, 9, 7, 5, 8, 6, 5, 0, 8, 6, 1, 4, 2, 4, 4, 1, 9, 9, 3, 3, 4, 1, 2, 6, 0, 8, 1], [7, 3, 1, 8, 4, 3, 0, 6, 1, 8, 7, 8, 4, 8, 8, 0, 9, 3, 8, 7, 5, 8, 2, 7, 5, 0, 6, 2, 7, 3, 6, 2, 6, 7, 3, 7, 6, 1, 3, 0, 2], [9, 4, 6, 1, 6, 8, 4, 0, 3, 9, 5, 3, 4, 7, 2, 6, 0, 0, 8, 6, 6, 2, 8, 8, 2, 4, 9, 7, 1, 2, 3, 5, 3, 1, 0, 3, 4, 1, 6, 6, 1], [9, 6, 9, 5, 8, 4, 3, 2, 2, 7, 9, 5, 4, 3, 3, 7, 3, 6, 9, 6, 0, 5, 6, 6, 6, 6, 0, 5, 7, 8, 2, 8, 3, 6, 1, 8, 9, 2, 1, 3, 2], [5, 2, 7, 4, 9, 8, 9, 4, 6, 4, 6, 7, 8, 6, 9, 1, 3, 4, 2, 0, 5, 1, 2, 2, 0, 0, 0, 6, 0, 8, 9, 4, 5, 7, 1, 8, 3, 6, 4, 3, 1], [7, 3, 6, 6, 5, 2, 7, 8, 2, 2, 0, 3, 0, 4, 4, 1, 4, 1, 1, 5, 0, 2, 6, 8, 5, 5, 1, 5, 2, 7, 5, 4, 1, 8, 8, 6, 1, 0, 6, 7, 2], [9, 0, 9, 8, 6, 3, 4, 4, 3, 5, 3, 0, 4, 6, 9, 7, 1, 8, 2, 4, 0, 0, 1, 7, 3, 3, 9, 7, 7, 4, 7, 3, 4, 4, 3, 2, 9, 6, 0, 9, 1], [7, 4, 0, 3, 8, 2, 0, 9, 8, 6, 3, 2, 4, 6, 2, 8, 9, 1, 3, 3, 3, 6, 2, 9, 3, 7, 5, 9, 8, 5, 5, 4, 4, 7, 2, 8, 8, 2, 0, 7, 5], [6, 7, 4, 4, 6, 0, 8, 1, 4, 1, 6, 1, 1, 9, 7, 0, 1, 6, 6, 9, 0, 2, 6, 7, 9, 2, 7, 7, 4, 5, 7, 6, 9, 0, 2, 6, 0, 3, 7, 6, 2], [6, 4, 3, 5, 0, 3, 6, 1, 1, 2, 5, 2, 7, 0, 2, 8, 1, 8, 8, 5, 3, 4, 7, 8, 5, 6, 1, 9, 7, 9, 1, 4, 9, 9, 4, 7, 2, 8, 7, 1, 1], [7, 4, 4, 4, 0, 9, 1, 1, 9, 3, 7, 2, 3, 4, 0, 9, 8, 3, 4, 7, 0, 2, 1, 5, 8, 7, 2, 8, 2, 4, 6, 1, 7, 3, 3, 8, 1, 2, 2, 2, 1], [9, 6, 8, 7, 1, 7, 2, 3, 8, 2, 1, 3, 2, 0, 5, 4, 1, 3, 5, 3, 5, 3, 4, 9, 3, 1, 6, 1, 7, 8, 7, 4, 4, 2, 0, 8, 7, 4, 3, 2, 4], [9, 4, 4, 2, 6, 2, 5, 6, 4, 6, 8, 9, 7, 3, 3, 9, 9, 8, 1, 8, 3, 2, 7, 6, 3, 3, 7, 8, 1, 0, 5, 1, 7, 7, 7, 4, 8, 0, 2, 4, 0], [6, 2, 4, 1, 7, 9, 3, 8, 1, 3, 7, 0, 1, 3, 0, 2, 7, 8, 5, 7, 8, 3, 6, 5, 5, 8, 2, 2, 7, 2, 9, 5, 4, 9, 2, 2, 3, 7, 6, 8, 8], [1, 7, 1, 7, 3, 1, 1, 6, 5, 1, 8, 0, 2, 2, 0, 0, 5, 4, 1, 9, 4, 7, 9, 3, 0, 7, 4, 2, 4, 6, 3, 5, 9, 0, 1, 9, 1, 3, 3, 6, 4], [6, 2, 9, 3, 1, 4, 5, 7, 7, 2, 6, 1, 6, 5, 7, 3, 9, 7, 3, 5, 9, 8, 3, 9, 2, 4, 3, 5, 3, 5, 7, 0, 2, 2, 9, 8, 8, 1, 6, 0, 5], [5, 1, 0, 3, 6, 3, 7, 3, 5, 1, 3, 4, 4, 2, 6, 8, 5, 7, 4, 4, 8, 1, 7, 1, 7, 5, 1, 9, 6, 9, 7, 5, 9, 8, 2, 9, 4, 5, 7, 7, 7], [3, 1, 5, 5, 5, 2, 1, 0, 9, 4, 4, 5, 9, 1, 5, 6, 2, 4, 7, 4, 6, 3, 6, 4, 1, 5, 0, 3, 9, 8, 1, 3, 2, 3, 7, 7, 7, 6, 0, 4, 6], [6, 9, 0, 7, 5, 2, 0, 6, 5, 9, 9, 0, 2, 8, 9, 6, 6, 0, 5, 6, 9, 5, 0, 5, 3, 1, 9, 3, 5, 8, 0, 0, 8, 6, 4, 3, 7, 4, 2, 6, 9], [2, 8, 8, 0, 1, 6, 6, 7, 5, 5, 7, 9, 4, 6, 8, 0, 6, 5, 1, 8, 1, 7, 4, 9, 8, 0, 5, 8, 1, 8, 6, 4, 1, 5, 0, 3, 8, 5, 1, 3, 3], [4, 6, 1, 8, 2, 2, 2, 0, 7, 3, 6, 5, 7, 0, 2, 0, 2, 2, 5, 8, 0, 3, 5, 1, 1, 0, 3, 4, 6, 1, 9, 8, 4, 2, 3, 7, 9, 8, 8, 2, 5], [3, 4, 8, 8, 2, 7, 6, 6, 1, 9, 8, 6, 1, 4, 0, 4, 8, 6, 8, 6, 2, 7, 9, 8, 9, 1, 6, 1, 9, 5, 3, 0, 9, 1, 3, 4, 6, 2, 1, 6, 6], [9, 4, 6, 8, 1, 1, 7, 4, 5, 3, 0, 1, 4, 9, 6, 2, 8, 4, 0, 5, 9, 3, 7, 9, 6, 8, 7, 6, 0, 3, 2, 1, 4, 9, 5, 3, 8, 9, 0, 4, 8], [9, 5, 2, 0, 1, 4, 7, 0, 1, 7, 1, 4, 9, 0, 7, 0, 6, 3, 0, 3, 9, 2, 4, 0, 3, 9, 9, 4, 6, 4, 8, 3, 6, 2, 6, 4, 0, 2, 7, 1, 7], [6, 6, 4, 8, 5, 9, 7, 7, 9, 9, 8, 9, 0, 7, 1, 8, 0, 4, 3, 2, 8, 8, 0, 0, 3, 5, 7, 5, 3, 3, 6, 3, 1, 5, 5, 9, 9, 8, 6, 0, 7], [3, 0, 4, 2, 0, 4, 2, 8, 4, 5, 9, 9, 9, 0, 9, 8, 7, 1, 0, 4, 2, 0, 9, 9, 5, 2, 5, 6, 6, 3, 3, 6, 0, 3, 9, 2, 1, 2, 1, 7, 9], [6, 6, 4, 8, 6, 7, 7, 6, 8, 8, 8, 3, 2, 8, 8, 0, 8, 8, 2, 9, 7, 4, 9, 9, 5, 2, 3, 2, 2, 0, 4, 3, 9, 5, 5, 1, 5, 9, 8, 2, 1], [8, 7, 0, 9, 5, 8, 9, 0, 6, 5, 4, 4, 4, 6, 6, 9, 8, 4, 4, 7, 3, 0, 2, 6, 0, 4, 7, 6, 7, 4, 2, 3, 3, 9, 1, 2, 7, 8, 7, 7, 9], [6, 0, 1, 8, 8, 3, 1, 8, 9, 1, 8, 4, 4, 7, 4, 1, 3, 0, 2, 9, 9, 0, 0, 5, 3, 6, 9, 8, 3, 7, 2, 0, 3, 0, 7, 7, 7, 8, 4, 7, 8], [5, 5, 2, 5, 1, 2, 6, 9, 0, 5, 7, 5, 6, 8, 3, 0, 3, 7, 1, 8, 9, 6, 9, 4, 9, 3, 4, 1, 7, 4, 8, 6, 0, 6, 4, 2, 6, 3, 9, 6, 5], [9, 1, 8, 0, 8, 0, 0, 8, 8, 2, 7, 1, 3, 0, 0, 4, 0, 8, 9, 8, 8, 4, 0, 1, 2, 8, 1, 4, 3, 8, 7, 8, 0, 2, 3, 9, 3, 1, 2, 6, 6], [7, 4, 3, 7, 9, 9, 7, 7, 6, 0, 7, 1, 9, 1, 7, 9, 1, 7, 1, 5, 5, 5, 0, 0, 9, 6, 8, 0, 0, 4, 7, 4, 0, 1, 3, 0, 7, 4, 8, 9, 2], [0, 6, 3, 7, 3, 0, 3, 9, 1, 1, 7, 5, 6, 4, 0, 5, 0, 4, 7, 0, 9, 0, 1, 9, 7, 7, 0, 4, 3, 4, 2, 4, 1, 9, 9, 9, 3, 7, 8, 9, 1], [1, 4, 9, 9, 2, 0, 1, 3, 5, 1, 2, 0, 1, 6, 1, 4, 2, 4, 4, 6, 5, 3, 2, 2, 3, 3, 9, 6, 4, 9, 9, 8, 3, 4, 7, 4, 4, 4, 4, 1, 2], [0, 7, 6, 4, 6, 5, 4, 6, 2, 0, 4, 5, 2, 9, 9, 6, 1, 9, 6, 1, 7, 2, 1, 7, 1, 0, 8, 7, 7, 4, 6, 5, 5, 3, 7, 1, 4, 0, 2, 4, 9], [0, 0, 1, 2, 7, 6, 4, 3, 9, 0, 7, 8, 1, 2, 4, 5, 1, 8, 2, 7, 8, 2, 9, 3, 8, 1, 4, 4, 3, 9, 6, 3, 0, 4, 6, 2, 6, 6, 1, 0, 9], [0, 6, 3, 1, 1, 3, 7, 5, 7, 4, 2, 3, 0, 5, 5, 2, 3, 4, 1, 5, 2, 9, 0, 5, 4, 3, 4, 7, 2, 5, 5, 3, 9, 9, 8, 6, 5, 6, 5, 1, 4], [0, 4, 4, 4, 6, 5, 3, 5, 0, 1, 1, 7, 0, 1, 3, 0, 7, 2, 5, 0, 4, 8, 7, 7, 8, 9, 1, 8, 5, 4, 2, 0, 0, 5, 8, 0, 0, 9, 3, 3, 4], [7, 1, 8, 1, 8, 4, 1, 5, 6, 9, 7, 0, 2, 1, 5, 1, 8, 9, 1, 2, 8, 2, 6, 2, 7, 0, 2, 6, 9, 8, 1, 6, 0, 5, 6, 2, 7, 5, 5, 6, 2], [2, 3, 3, 9, 9, 6, 3, 8, 9, 4, 4, 1, 5, 1, 7, 0, 3, 1, 9, 5, 7, 1, 7, 5, 9, 3, 0, 3, 9, 7, 5, 4, 6, 7, 3, 0, 0, 9, 1, 7, 1], [6, 5, 2, 6, 6, 5, 8, 0, 9, 5, 4, 7, 9, 8, 1, 9, 7, 8, 1, 6, 1, 7, 4, 5, 2, 6, 6, 8, 3, 7, 4, 1, 2, 9, 7, 3, 5, 1, 4, 9, 3]], "source_dataset": "rotate_matrix", "source_index": 49}
Decrypt this Caesar cipher text: XC DCT DU IWTB LPCITS ID GTKXKT PC PGI UPAATC XCID STHJTIJST DLXCV ID IWT EGDVGTHH BPST XC. Provide only the decrypted text as your final answer.
IN ONE OF THEM WANTED TO REVIVE AN ART FALLEN INTO DESUETUDE OWING TO THE PROGRESS MADE IN
caesar_cipher
{"cipher_text": "XC DCT DU IWTB LPCITS ID GTKXKT PC PGI UPAATC XCID STHJTIJST DLXCV ID IWT EGDVGTHH BPST XC", "clear_text": "IN ONE OF THEM WANTED TO REVIVE AN ART FALLEN INTO DESUETUDE OWING TO THE PROGRESS MADE IN", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 18, "rotation": 15, "source_dataset": "caesar_cipher", "source_index": 149}
Your task is to convert a number between two different bases. If the target base is > 10, use lowercase letters a-z for digits above 9. Now, convert the base-10 number 28905 to base-9
43576
base_conversion
{"decimal_value": 28905, "difficulty": {"base": [9, 18], "value": [10000, 100000]}, "source_base": 10, "source_dataset": "base_conversion", "source_index": 104, "source_repr": "28905", "target_base": 9, "target_repr": "43576"}
What will this Game of Life board look like after 2 steps of simulation? Assume a Moore neighborhood and wrapping topology. Reply as array of arrays representing rows in the grid from top to bottom in JSON format. (An empty 3x3 grid would look like this: [[0,0,0],[0,0,0],[0,0,0]]) [[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]].
[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]
game_of_life
{"difficulty": {"filled_cells_weights": 0.2, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2}, "filled_cells": 10, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2, "source_dataset": "game_of_life", "source_index": 66}
Your task is to convert a number between two different bases. If the target base is > 10, use lowercase letters a-z for digits above 9. Now, convert the base-12 number 1b564 to hexadecimal
9e5c
base_conversion
{"decimal_value": 40540, "difficulty": {"base": [9, 18], "value": [10000, 100000]}, "source_base": 12, "source_dataset": "base_conversion", "source_index": 144, "source_repr": "1b564", "target_base": 16, "target_repr": "9e5c"}
Given a square matrix, your job is to rotate it clockwise. Your output should be a matrix in the same format as the input. Rotate the matrix below by 1350 degrees clockwise: 6 8 7 1 7 1 0 3 5 8 1 7 5 0 7 6 7 7 2 9 1 8 5 1 4 1 1 1 8 2 3 9 0 0 8 8 4 0 3 1 2 6 4 1 6 8 4 3 7 8 6 8 5 8 8 2 1 6 1 6 9 3 2 5 6 2 1 4 4 9 4 7 8 2 8 0 1 6 4 7 5 1 0 2 4 4 7 7 1 8 0 8 9 1 2 2 2 1 0 5 2 0 0 0 9 9 9 8 6 8 3 2 9 8 4 1 0 3 9 7 4 8 6 2 8 1 0 6 8 9 7 7 0 9 5 8 3 2 6 5 9 1 0 7 6 0 8 8 1 6 2 0 2 0 4 4 1 6 0 2 7 8 8 5 9 4 8 8 6 7 3 8 9 9 1 1 4 3 1 6 4 0 4 5 1 1 0 5 2 9 9 7 1 2 2 4 2 1 3 4 9 3 1 6 2 0 2 3 4 9 5 3 3 0 2 9 6 1 4 9 3 9 2 5 5 7 2 2 9 2 6 4 6 2 0 4 6 1 7 5 6 6 2 3 9 5 9 7 1 8 0 6 3 4 9 8 7 2 7 7 0 8 5 3 0 0 8 6 0 5 3 4 0 0 7 1 8 5 4 7 5 3 5 0 1 0 7 2 7 2 0 8 9 4 9 1 6 6 0 6 6 9 4 0 5 7 1 1 0 1 8 5 4 6 3 2 9 6 9 9 3 2 1 9 0 3 1 2 9 3 4 8 8 6 4 5 1 4 9 5 4 1 5 8 8 4 6 3 5 5 8 4 1 3 2 0 6 2 4 0 7 0 1 7 8 5 8 7 1 2 1 7 4 6 1 4 1 5 0 0 9 8 8 7 4 8 6 6 3 0 7 0 4 7 6 9 0 3 7 3 6 1 4 3 6 4 9 8 3 6 5 5 7 1 1 5 0 6 2 6 4 1 8 8 7 3 4 3 7 7 3 0 9 9 4 9 6 2 6 1 3 4 1 4 5 9 0 6 1 6 2 7 9 6 0 2 5 5 5 8 8 6 8 4 9 3 5 8 8 6 8 2 9 9 0 3 6 3 5 1 8 8 5 2 1 5 1 7 3 8 9 5 3 7 4 6 0 4 2 9 3 9 8 0 5 5 6 3 2 1 9 2 2 8 4 9 2 0 7 3 1 8 6 8 8 7 2 2 9 3 6 7 1 3 9 9 8 6 7 7 0 2 8 8 1 3 3 4 0 9 8 4 5 6 6 4 8 5 1 3 2 5 7 5 4 0 9 6 7 2 5 8 3 5 8 6 3 1 3 8 6 4 3 5 7 2 0 2 3 8 3 9 0 8 6 2 7 3 2 8 7 0 3 1 1 9 3 9 7 2 7 1 4 9 0 0 0 2 4 7 7 7 2 1 6 0 5 4 9 7 5 7 4 6 9 0 0 3 2 6 8 0 7 7 0 8 7 9 1 7 4 6 6 8 3 1 7 6 7 3 7 1 3 9 6 9 5 9 7 4 2 3 1 9 4 4 5 2 6 0 7 6 4 6 1 9 6 1 0 6 2 2 1 7 8 5 2 0 6 1 0 4 2 8 8 8 4 9 1 5 9 2 6 6 0 5 0 2 9 5 9 7 1 0 7 1 0 3 6 0 0 5 7 1 3 5 8 4 9 0 5 0 0 9 6 9 8 3 9 6 9 1 8 0 8 7 4 9 1 2 0 4 4 4 4 0 4 3 2 5 2 4 8 2 3 4 6 5 7 0 2 7 5 7 4 6 5 1 7 4 5 8 1 4 8 2 5 7 9 6 8 5 8 8 4 8 3 0 4 3 7 8 2 6 7 1 8 5 6 3 5 2 2 3 8 5 5 1 5 5 8 1 7 9 1 2 1 3 4 6 2 3 5 1 1 8 3 3 0 0 6 1 1 9 2 3 7 7 4 4 4 2 3 1 0 5 4 7 7 2 7 4 6 2 2 2 6 3 5 6 9 2 9 2 0 2 0 4 8 1 3 0 7 7 2 3 9 7 4 7 8 3 3 1 2 5 8 0 9 9 3 4 7 6 6 8 4 7 4 3 6 9 7 9 8 2 8 6 0 0 7 8 9 0 8 4 8 5 1 8 9 3 5 9 4 9 4 7 2 2 9 6 6 6 0 1 9 1 9 0 1 1 0 1 9 3 5 6 8 8 0 3 0 5 0 6 2 0 4 8 4 1 0 2 2 9 6 3 5 7 8 3 7 9 7 5 0 6 6 9 9 0 9 9 2 6 0 7 4 5 9 1 8 4 1 4 8 0 2 1 4 1 6 9 2 3 3 9 2 7 9 8 0 8 7 4 3 2 2 1 0 4 4 1 3 5 9 9 0 3 8 9 0 5 3 4 6 6 5 6 9 4 9 1 7 3 8 2 7 5 3 2 5 2 5 9 8 1 2 0 7 4 7 0 0 6 5 4 2 2 5 7 1 3 2 2 9 8 2 7 3 8 2 8 1 5 6 6 1 8 0 5 1 9 4 2 8 5 0 1 5 5 7 6 8 1 3 8 6 4 2 2 6 3 7 4 6 6 7 1 6 1 4 3 4 4 4 9 4 8 3 6 1 6 4 3 7 1 1 7 5 5 0 4 2 6 7 1 8 2 1 9 4 4 9 5 3 6 2 4 4 5 2 2 5 6 1 0 7 7 7 1 0 7 2 9 9 6 4 6 0 9 3 7 3 7 7 5 1 0 9 2 0 1 7 2 8 2 1 6 2 9 9 1 0
8 9 9 5 1 9 9 7 3 5 4 6 0 8 8 3 6 7 6 1 3 5 4 6 2 9 4 8 1 3 0 1 4 7 0 0 4 0 6 9 4 3 4 6 5 7 2 6 3 8 1 8 9 9 6 1 2 8 4 2 9 9 4 4 0 0 0 6 7 1 0 4 0 2 9 3 2 5 4 3 8 6 9 7 6 5 0 4 3 0 7 3 8 3 6 0 5 0 8 9 7 5 1 0 9 9 1 0 3 8 2 6 8 5 6 8 0 7 1 8 8 9 5 1 2 5 4 5 1 4 8 3 2 1 9 4 8 6 1 9 3 2 2 8 3 0 6 1 8 4 9 5 2 5 1 4 3 0 7 5 0 0 8 2 7 5 9 6 9 5 7 2 3 6 2 2 6 5 5 7 2 5 7 1 8 0 1 6 1 3 6 8 6 3 8 0 4 6 1 2 2 8 0 5 3 0 4 8 5 6 8 5 0 9 6 6 7 0 0 8 0 1 1 2 7 6 3 1 7 7 6 4 9 9 7 1 1 5 4 1 2 9 4 2 1 1 2 1 0 8 1 1 0 1 5 5 7 6 5 0 5 2 2 6 1 3 4 7 7 7 3 5 0 7 4 1 1 9 2 2 1 3 2 7 8 3 6 4 1 1 1 5 0 8 2 4 0 7 7 2 0 4 5 1 4 3 8 3 0 4 8 5 4 5 8 1 9 2 7 4 9 4 3 7 4 4 5 9 8 9 8 2 7 1 2 1 0 2 8 5 8 4 0 6 0 9 0 4 4 2 4 6 2 9 9 4 0 5 5 5 1 6 5 1 4 9 7 7 3 6 7 2 8 5 0 7 8 8 2 1 5 8 4 4 7 1 1 1 8 5 3 2 0 0 9 6 3 4 5 8 0 5 4 8 0 0 1 4 5 1 4 0 8 9 2 2 1 3 2 1 5 6 9 6 8 1 6 6 4 4 4 8 1 3 2 4 3 2 6 1 1 9 1 1 3 7 9 6 9 2 5 6 4 6 0 8 1 8 0 8 2 4 8 9 1 7 9 4 6 2 3 4 0 6 6 7 4 8 5 2 9 8 5 0 3 2 6 1 3 2 1 2 0 1 7 4 6 0 6 5 1 4 3 3 9 3 6 0 4 9 9 7 5 5 4 3 7 3 9 4 3 5 6 5 9 9 8 8 8 2 2 2 0 6 4 2 6 1 0 1 1 8 0 7 1 5 8 4 8 4 2 0 9 9 7 5 1 1 9 0 2 8 1 2 0 2 9 3 0 6 1 3 6 9 2 8 3 9 1 6 9 0 7 3 4 7 0 1 6 8 7 8 7 4 1 7 5 7 6 6 1 2 5 6 8 7 4 2 9 3 8 1 4 9 4 2 8 1 2 7 7 6 0 6 0 2 2 6 4 5 7 8 7 8 1 7 2 8 6 8 8 1 6 2 6 2 3 1 7 6 0 1 5 2 7 0 8 1 0 8 8 8 6 9 7 6 6 4 4 4 9 7 0 1 4 5 6 9 8 5 0 6 7 8 7 5 9 6 5 3 3 2 1 5 9 3 3 4 1 7 7 8 4 7 4 9 5 7 9 3 8 3 4 6 5 7 8 2 0 0 0 6 4 3 2 1 8 0 7 7 7 7 7 2 3 0 7 2 9 0 2 5 7 4 9 7 7 9 8 0 7 5 7 7 6 6 9 7 6 9 8 9 9 9 2 1 2 3 8 7 5 3 0 3 2 5 2 2 9 2 1 3 9 8 8 6 3 9 7 2 6 3 5 5 1 4 7 1 7 9 9 8 6 1 3 7 4 1 0 0 0 9 7 8 1 0 0 0 5 9 8 8 3 0 5 2 8 7 8 1 0 9 9 3 3 4 9 2 7 9 1 8 5 1 2 1 3 8 0 3 7 9 3 3 3 9 5 9 8 4 9 9 2 1 6 2 6 1 8 3 9 2 2 6 0 8 6 7 4 6 1 9 9 2 0 0 6 7 9 9 9 2 1 6 4 5 6 0 7 0 0 3 0 7 2 6 2 4 2 6 5 1 4 8 1 5 4 4 7 9 4 7 7 4 2 3 7 1 2 9 1 9 7 6 0 2 4 6 5 9 5 3 6 4 4 3 4 6 9 8 4 1 3 2 1 2 4 3 8 4 1 6 3 3 1 9 0 5 2 3 9 7 6 3 6 6 1 8 0 6 0 6 1 2 8 0 6 6 7 2 6 0 4 6 0 7 9 0 0 3 4 0 6 8 3 2 4 6 6 1 6 7 3 5 9 1 2 0 3 0 4 9 0 0 3 0 7 3 8 6 6 0 7 0 2 8 5 4 7 8 9 8 9 9 4 4 5 1 5 9 7 1 8 8 6 6 2 8 1 9 2 0 7 8 4 3 4 8 9 4 8 0 3 3 1 6 6 2 2 1 3 2 8 7 2 1 3 2 6 7 1 0 1 0 9 3 3 8 5 7 9 5 2 6 7 8 9 2 4 1 5 6 2 2 2 5 2 6 1 7 7 0 8 8 0 3 3 7 5 6 1 6 8 5 3 2 7 3 4 9 2 4 8 0 5 3 7 7 0 0 0 4 7 1 0 8 4 7 9 1 4 3 9 3 9 4 6 1 5 5 2 5 7 7 5 4 8 4 3 3 6 4 4 1 8 9 5 5 7 1 6 8 4 9 9 1 5 5 5 2 8 8 4 2 9 7 2 2 5 9 0 5 2 8 2 2 3 9 4 4 8 6 5 3 7
rotate_matrix
{"difficulty": {"n": [25, 50], "num_rotations": [5, 15]}, "matrix": [[6, 8, 7, 1, 7, 1, 0, 3, 5, 8, 1, 7, 5, 0, 7, 6, 7, 7, 2, 9, 1, 8, 5, 1, 4, 1, 1, 1, 8, 2, 3, 9, 0, 0, 8], [8, 4, 0, 3, 1, 2, 6, 4, 1, 6, 8, 4, 3, 7, 8, 6, 8, 5, 8, 8, 2, 1, 6, 1, 6, 9, 3, 2, 5, 6, 2, 1, 4, 4, 9], [4, 7, 8, 2, 8, 0, 1, 6, 4, 7, 5, 1, 0, 2, 4, 4, 7, 7, 1, 8, 0, 8, 9, 1, 2, 2, 2, 1, 0, 5, 2, 0, 0, 0, 9], [9, 9, 8, 6, 8, 3, 2, 9, 8, 4, 1, 0, 3, 9, 7, 4, 8, 6, 2, 8, 1, 0, 6, 8, 9, 7, 7, 0, 9, 5, 8, 3, 2, 6, 5], [9, 1, 0, 7, 6, 0, 8, 8, 1, 6, 2, 0, 2, 0, 4, 4, 1, 6, 0, 2, 7, 8, 8, 5, 9, 4, 8, 8, 6, 7, 3, 8, 9, 9, 1], [1, 4, 3, 1, 6, 4, 0, 4, 5, 1, 1, 0, 5, 2, 9, 9, 7, 1, 2, 2, 4, 2, 1, 3, 4, 9, 3, 1, 6, 2, 0, 2, 3, 4, 9], [5, 3, 3, 0, 2, 9, 6, 1, 4, 9, 3, 9, 2, 5, 5, 7, 2, 2, 9, 2, 6, 4, 6, 2, 0, 4, 6, 1, 7, 5, 6, 6, 2, 3, 9], [5, 9, 7, 1, 8, 0, 6, 3, 4, 9, 8, 7, 2, 7, 7, 0, 8, 5, 3, 0, 0, 8, 6, 0, 5, 3, 4, 0, 0, 7, 1, 8, 5, 4, 7], [5, 3, 5, 0, 1, 0, 7, 2, 7, 2, 0, 8, 9, 4, 9, 1, 6, 6, 0, 6, 6, 9, 4, 0, 5, 7, 1, 1, 0, 1, 8, 5, 4, 6, 3], [2, 9, 6, 9, 9, 3, 2, 1, 9, 0, 3, 1, 2, 9, 3, 4, 8, 8, 6, 4, 5, 1, 4, 9, 5, 4, 1, 5, 8, 8, 4, 6, 3, 5, 5], [8, 4, 1, 3, 2, 0, 6, 2, 4, 0, 7, 0, 1, 7, 8, 5, 8, 7, 1, 2, 1, 7, 4, 6, 1, 4, 1, 5, 0, 0, 9, 8, 8, 7, 4], [8, 6, 6, 3, 0, 7, 0, 4, 7, 6, 9, 0, 3, 7, 3, 6, 1, 4, 3, 6, 4, 9, 8, 3, 6, 5, 5, 7, 1, 1, 5, 0, 6, 2, 6], [4, 1, 8, 8, 7, 3, 4, 3, 7, 7, 3, 0, 9, 9, 4, 9, 6, 2, 6, 1, 3, 4, 1, 4, 5, 9, 0, 6, 1, 6, 2, 7, 9, 6, 0], [2, 5, 5, 5, 8, 8, 6, 8, 4, 9, 3, 5, 8, 8, 6, 8, 2, 9, 9, 0, 3, 6, 3, 5, 1, 8, 8, 5, 2, 1, 5, 1, 7, 3, 8], [9, 5, 3, 7, 4, 6, 0, 4, 2, 9, 3, 9, 8, 0, 5, 5, 6, 3, 2, 1, 9, 2, 2, 8, 4, 9, 2, 0, 7, 3, 1, 8, 6, 8, 8], [7, 2, 2, 9, 3, 6, 7, 1, 3, 9, 9, 8, 6, 7, 7, 0, 2, 8, 8, 1, 3, 3, 4, 0, 9, 8, 4, 5, 6, 6, 4, 8, 5, 1, 3], [2, 5, 7, 5, 4, 0, 9, 6, 7, 2, 5, 8, 3, 5, 8, 6, 3, 1, 3, 8, 6, 4, 3, 5, 7, 2, 0, 2, 3, 8, 3, 9, 0, 8, 6], [2, 7, 3, 2, 8, 7, 0, 3, 1, 1, 9, 3, 9, 7, 2, 7, 1, 4, 9, 0, 0, 0, 2, 4, 7, 7, 7, 2, 1, 6, 0, 5, 4, 9, 7], [5, 7, 4, 6, 9, 0, 0, 3, 2, 6, 8, 0, 7, 7, 0, 8, 7, 9, 1, 7, 4, 6, 6, 8, 3, 1, 7, 6, 7, 3, 7, 1, 3, 9, 6], [9, 5, 9, 7, 4, 2, 3, 1, 9, 4, 4, 5, 2, 6, 0, 7, 6, 4, 6, 1, 9, 6, 1, 0, 6, 2, 2, 1, 7, 8, 5, 2, 0, 6, 1], [0, 4, 2, 8, 8, 8, 4, 9, 1, 5, 9, 2, 6, 6, 0, 5, 0, 2, 9, 5, 9, 7, 1, 0, 7, 1, 0, 3, 6, 0, 0, 5, 7, 1, 3], [5, 8, 4, 9, 0, 5, 0, 0, 9, 6, 9, 8, 3, 9, 6, 9, 1, 8, 0, 8, 7, 4, 9, 1, 2, 0, 4, 4, 4, 4, 0, 4, 3, 2, 5], [2, 4, 8, 2, 3, 4, 6, 5, 7, 0, 2, 7, 5, 7, 4, 6, 5, 1, 7, 4, 5, 8, 1, 4, 8, 2, 5, 7, 9, 6, 8, 5, 8, 8, 4], [8, 3, 0, 4, 3, 7, 8, 2, 6, 7, 1, 8, 5, 6, 3, 5, 2, 2, 3, 8, 5, 5, 1, 5, 5, 8, 1, 7, 9, 1, 2, 1, 3, 4, 6], [2, 3, 5, 1, 1, 8, 3, 3, 0, 0, 6, 1, 1, 9, 2, 3, 7, 7, 4, 4, 4, 2, 3, 1, 0, 5, 4, 7, 7, 2, 7, 4, 6, 2, 2], [2, 6, 3, 5, 6, 9, 2, 9, 2, 0, 2, 0, 4, 8, 1, 3, 0, 7, 7, 2, 3, 9, 7, 4, 7, 8, 3, 3, 1, 2, 5, 8, 0, 9, 9], [3, 4, 7, 6, 6, 8, 4, 7, 4, 3, 6, 9, 7, 9, 8, 2, 8, 6, 0, 0, 7, 8, 9, 0, 8, 4, 8, 5, 1, 8, 9, 3, 5, 9, 4], [9, 4, 7, 2, 2, 9, 6, 6, 6, 0, 1, 9, 1, 9, 0, 1, 1, 0, 1, 9, 3, 5, 6, 8, 8, 0, 3, 0, 5, 0, 6, 2, 0, 4, 8], [4, 1, 0, 2, 2, 9, 6, 3, 5, 7, 8, 3, 7, 9, 7, 5, 0, 6, 6, 9, 9, 0, 9, 9, 2, 6, 0, 7, 4, 5, 9, 1, 8, 4, 1], [4, 8, 0, 2, 1, 4, 1, 6, 9, 2, 3, 3, 9, 2, 7, 9, 8, 0, 8, 7, 4, 3, 2, 2, 1, 0, 4, 4, 1, 3, 5, 9, 9, 0, 3], [8, 9, 0, 5, 3, 4, 6, 6, 5, 6, 9, 4, 9, 1, 7, 3, 8, 2, 7, 5, 3, 2, 5, 2, 5, 9, 8, 1, 2, 0, 7, 4, 7, 0, 0], [6, 5, 4, 2, 2, 5, 7, 1, 3, 2, 2, 9, 8, 2, 7, 3, 8, 2, 8, 1, 5, 6, 6, 1, 8, 0, 5, 1, 9, 4, 2, 8, 5, 0, 1], [5, 5, 7, 6, 8, 1, 3, 8, 6, 4, 2, 2, 6, 3, 7, 4, 6, 6, 7, 1, 6, 1, 4, 3, 4, 4, 4, 9, 4, 8, 3, 6, 1, 6, 4], [3, 7, 1, 1, 7, 5, 5, 0, 4, 2, 6, 7, 1, 8, 2, 1, 9, 4, 4, 9, 5, 3, 6, 2, 4, 4, 5, 2, 2, 5, 6, 1, 0, 7, 7], [7, 1, 0, 7, 2, 9, 9, 6, 4, 6, 0, 9, 3, 7, 3, 7, 7, 5, 1, 0, 9, 2, 0, 1, 7, 2, 8, 2, 1, 6, 2, 9, 9, 1, 0]], "n": 35, "num_rotations": 15, "solution": [[8, 9, 9, 5, 1, 9, 9, 7, 3, 5, 4, 6, 0, 8, 8, 3, 6, 7, 6, 1, 3, 5, 4, 6, 2, 9, 4, 8, 1, 3, 0, 1, 4, 7, 0], [0, 4, 0, 6, 9, 4, 3, 4, 6, 5, 7, 2, 6, 3, 8, 1, 8, 9, 9, 6, 1, 2, 8, 4, 2, 9, 9, 4, 4, 0, 0, 0, 6, 7, 1], [0, 4, 0, 2, 9, 3, 2, 5, 4, 3, 8, 6, 9, 7, 6, 5, 0, 4, 3, 0, 7, 3, 8, 3, 6, 0, 5, 0, 8, 9, 7, 5, 1, 0, 9], [9, 1, 0, 3, 8, 2, 6, 8, 5, 6, 8, 0, 7, 1, 8, 8, 9, 5, 1, 2, 5, 4, 5, 1, 4, 8, 3, 2, 1, 9, 4, 8, 6, 1, 9], [3, 2, 2, 8, 3, 0, 6, 1, 8, 4, 9, 5, 2, 5, 1, 4, 3, 0, 7, 5, 0, 0, 8, 2, 7, 5, 9, 6, 9, 5, 7, 2, 3, 6, 2], [2, 6, 5, 5, 7, 2, 5, 7, 1, 8, 0, 1, 6, 1, 3, 6, 8, 6, 3, 8, 0, 4, 6, 1, 2, 2, 8, 0, 5, 3, 0, 4, 8, 5, 6], [8, 5, 0, 9, 6, 6, 7, 0, 0, 8, 0, 1, 1, 2, 7, 6, 3, 1, 7, 7, 6, 4, 9, 9, 7, 1, 1, 5, 4, 1, 2, 9, 4, 2, 1], [1, 2, 1, 0, 8, 1, 1, 0, 1, 5, 5, 7, 6, 5, 0, 5, 2, 2, 6, 1, 3, 4, 7, 7, 7, 3, 5, 0, 7, 4, 1, 1, 9, 2, 2], [1, 3, 2, 7, 8, 3, 6, 4, 1, 1, 1, 5, 0, 8, 2, 4, 0, 7, 7, 2, 0, 4, 5, 1, 4, 3, 8, 3, 0, 4, 8, 5, 4, 5, 8], [1, 9, 2, 7, 4, 9, 4, 3, 7, 4, 4, 5, 9, 8, 9, 8, 2, 7, 1, 2, 1, 0, 2, 8, 5, 8, 4, 0, 6, 0, 9, 0, 4, 4, 2], [4, 6, 2, 9, 9, 4, 0, 5, 5, 5, 1, 6, 5, 1, 4, 9, 7, 7, 3, 6, 7, 2, 8, 5, 0, 7, 8, 8, 2, 1, 5, 8, 4, 4, 7], [1, 1, 1, 8, 5, 3, 2, 0, 0, 9, 6, 3, 4, 5, 8, 0, 5, 4, 8, 0, 0, 1, 4, 5, 1, 4, 0, 8, 9, 2, 2, 1, 3, 2, 1], [5, 6, 9, 6, 8, 1, 6, 6, 4, 4, 4, 8, 1, 3, 2, 4, 3, 2, 6, 1, 1, 9, 1, 1, 3, 7, 9, 6, 9, 2, 5, 6, 4, 6, 0], [8, 1, 8, 0, 8, 2, 4, 8, 9, 1, 7, 9, 4, 6, 2, 3, 4, 0, 6, 6, 7, 4, 8, 5, 2, 9, 8, 5, 0, 3, 2, 6, 1, 3, 2], [1, 2, 0, 1, 7, 4, 6, 0, 6, 5, 1, 4, 3, 3, 9, 3, 6, 0, 4, 9, 9, 7, 5, 5, 4, 3, 7, 3, 9, 4, 3, 5, 6, 5, 9], [9, 8, 8, 8, 2, 2, 2, 0, 6, 4, 2, 6, 1, 0, 1, 1, 8, 0, 7, 1, 5, 8, 4, 8, 4, 2, 0, 9, 9, 7, 5, 1, 1, 9, 0], [2, 8, 1, 2, 0, 2, 9, 3, 0, 6, 1, 3, 6, 9, 2, 8, 3, 9, 1, 6, 9, 0, 7, 3, 4, 7, 0, 1, 6, 8, 7, 8, 7, 4, 1], [7, 5, 7, 6, 6, 1, 2, 5, 6, 8, 7, 4, 2, 9, 3, 8, 1, 4, 9, 4, 2, 8, 1, 2, 7, 7, 6, 0, 6, 0, 2, 2, 6, 4, 5], [7, 8, 7, 8, 1, 7, 2, 8, 6, 8, 8, 1, 6, 2, 6, 2, 3, 1, 7, 6, 0, 1, 5, 2, 7, 0, 8, 1, 0, 8, 8, 8, 6, 9, 7], [6, 6, 4, 4, 4, 9, 7, 0, 1, 4, 5, 6, 9, 8, 5, 0, 6, 7, 8, 7, 5, 9, 6, 5, 3, 3, 2, 1, 5, 9, 3, 3, 4, 1, 7], [7, 8, 4, 7, 4, 9, 5, 7, 9, 3, 8, 3, 4, 6, 5, 7, 8, 2, 0, 0, 0, 6, 4, 3, 2, 1, 8, 0, 7, 7, 7, 7, 7, 2, 3], [0, 7, 2, 9, 0, 2, 5, 7, 4, 9, 7, 7, 9, 8, 0, 7, 5, 7, 7, 6, 6, 9, 7, 6, 9, 8, 9, 9, 9, 2, 1, 2, 3, 8, 7], [5, 3, 0, 3, 2, 5, 2, 2, 9, 2, 1, 3, 9, 8, 8, 6, 3, 9, 7, 2, 6, 3, 5, 5, 1, 4, 7, 1, 7, 9, 9, 8, 6, 1, 3], [7, 4, 1, 0, 0, 0, 9, 7, 8, 1, 0, 0, 0, 5, 9, 8, 8, 3, 0, 5, 2, 8, 7, 8, 1, 0, 9, 9, 3, 3, 4, 9, 2, 7, 9], [1, 8, 5, 1, 2, 1, 3, 8, 0, 3, 7, 9, 3, 3, 3, 9, 5, 9, 8, 4, 9, 9, 2, 1, 6, 2, 6, 1, 8, 3, 9, 2, 2, 6, 0], [8, 6, 7, 4, 6, 1, 9, 9, 2, 0, 0, 6, 7, 9, 9, 9, 2, 1, 6, 4, 5, 6, 0, 7, 0, 0, 3, 0, 7, 2, 6, 2, 4, 2, 6], [5, 1, 4, 8, 1, 5, 4, 4, 7, 9, 4, 7, 7, 4, 2, 3, 7, 1, 2, 9, 1, 9, 7, 6, 0, 2, 4, 6, 5, 9, 5, 3, 6, 4, 4], [3, 4, 6, 9, 8, 4, 1, 3, 2, 1, 2, 4, 3, 8, 4, 1, 6, 3, 3, 1, 9, 0, 5, 2, 3, 9, 7, 6, 3, 6, 6, 1, 8, 0, 6], [0, 6, 1, 2, 8, 0, 6, 6, 7, 2, 6, 0, 4, 6, 0, 7, 9, 0, 0, 3, 4, 0, 6, 8, 3, 2, 4, 6, 6, 1, 6, 7, 3, 5, 9], [1, 2, 0, 3, 0, 4, 9, 0, 0, 3, 0, 7, 3, 8, 6, 6, 0, 7, 0, 2, 8, 5, 4, 7, 8, 9, 8, 9, 9, 4, 4, 5, 1, 5, 9], [7, 1, 8, 8, 6, 6, 2, 8, 1, 9, 2, 0, 7, 8, 4, 3, 4, 8, 9, 4, 8, 0, 3, 3, 1, 6, 6, 2, 2, 1, 3, 2, 8, 7, 2], [1, 3, 2, 6, 7, 1, 0, 1, 0, 9, 3, 3, 8, 5, 7, 9, 5, 2, 6, 7, 8, 9, 2, 4, 1, 5, 6, 2, 2, 2, 5, 2, 6, 1, 7], [7, 0, 8, 8, 0, 3, 3, 7, 5, 6, 1, 6, 8, 5, 3, 2, 7, 3, 4, 9, 2, 4, 8, 0, 5, 3, 7, 7, 0, 0, 0, 4, 7, 1, 0], [8, 4, 7, 9, 1, 4, 3, 9, 3, 9, 4, 6, 1, 5, 5, 2, 5, 7, 7, 5, 4, 8, 4, 3, 3, 6, 4, 4, 1, 8, 9, 5, 5, 7, 1], [6, 8, 4, 9, 9, 1, 5, 5, 5, 2, 8, 8, 4, 2, 9, 7, 2, 2, 5, 9, 0, 5, 2, 8, 2, 2, 3, 9, 4, 4, 8, 6, 5, 3, 7]], "source_dataset": "rotate_matrix", "source_index": 113}
An anagram is a word formed by rearranging the letters of a different word, using all the original letters exactly once. Your job is to group the anagrams together. You can return the answer in any order. The output is a list of lists of strings, where each outer list contains a group of anagrams, e.g. [["eat", "tea"], ["tan", "nat"]]. Group the following list of words into anagrams: ["thronal", "anthrol", "althorn", "nuttier", "trutine", "untrite", "thoracically", "trochaically", "endosome", "moonseed", "sabana", "anabas", "saligot", "galiots", "latigos", "carthorse", "horsecart", "orchestra", "bewhiten", "bethwine", "greensand", "endangers", "trite", "titre", "susception", "suspection"]
[["althorn", "anthrol", "thronal"], ["anabas", "sabana"], ["bethwine", "bewhiten"], ["carthorse", "horsecart", "orchestra"], ["endangers", "greensand"], ["endosome", "moonseed"], ["galiots", "latigos", "saligot"], ["nuttier", "trutine", "untrite"], ["susception", "suspection"], ["thoracically", "trochaically"], ["titre", "trite"]]
group_anagrams
{"anagram_groups": 11, "difficulty": {"anagram_groups": [10, 50], "words_per_group": [2, 5]}, "solution": [["althorn", "anthrol", "thronal"], ["anabas", "sabana"], ["bethwine", "bewhiten"], ["carthorse", "horsecart", "orchestra"], ["endangers", "greensand"], ["endosome", "moonseed"], ["galiots", "latigos", "saligot"], ["nuttier", "trutine", "untrite"], ["susception", "suspection"], ["thoracically", "trochaically"], ["titre", "trite"]], "source_dataset": "group_anagrams", "source_index": 87, "words": ["thronal", "anthrol", "althorn", "nuttier", "trutine", "untrite", "thoracically", "trochaically", "endosome", "moonseed", "sabana", "anabas", "saligot", "galiots", "latigos", "carthorse", "horsecart", "orchestra", "bewhiten", "bethwine", "greensand", "endangers", "trite", "titre", "susception", "suspection"]}
An anagram is a word formed by rearranging the letters of a different word, using all the original letters exactly once. Your job is to group the anagrams together. You can return the answer in any order. The output is a list of lists of strings, where each outer list contains a group of anagrams, e.g. [["eat", "tea"], ["tan", "nat"]]. Group the following list of words into anagrams: ["sensa", "sanes", "walkside", "sidewalk", "evictors", "vortices", "ratan", "antar", "antra", "sata", "asta", "diopside", "dipodies", "ga", "ag", "lader", "daler", "alder", "lovers", "solver", "dancalite", "cadential", "flobby", "bobfly", "brieve", "bervie", "corradiate", "cortaderia", "eradicator", "guarani", "anguria", "gaurian", "valorem", "removal", "aplitic", "aliptic", "easterling", "generalist", "banshies", "banishes", "emyd", "demy", "consulage", "glucosane", "huntress", "shunters", "virason", "ravison", "broadspread", "spreadboard", "filigraned", "grainfield", "portify", "torpify", "latuka", "taluka", "wens", "sewn", "news", "unmarch", "uncharm", "caretta", "tearcat", "teacart", "sentimenter", "resentiment", "squalenes", "equalness", "flabel", "befall", "akan", "kana", "traditorship", "podarthritis", "laiose", "aeolis", "atonics", "actions", "cations", "spelt", "splet", "pelts", "fanaloka", "fanakalo", "unjeered", "dejeuner", "issued", "dissue", "undecision", "incendious"]
[["actions", "atonics", "cations"], ["aeolis", "laiose"], ["ag", "ga"], ["akan", "kana"], ["alder", "daler", "lader"], ["aliptic", "aplitic"], ["anguria", "gaurian", "guarani"], ["antar", "antra", "ratan"], ["asta", "sata"], ["banishes", "banshies"], ["befall", "flabel"], ["bervie", "brieve"], ["bobfly", "flobby"], ["broadspread", "spreadboard"], ["cadential", "dancalite"], ["caretta", "teacart", "tearcat"], ["consulage", "glucosane"], ["corradiate", "cortaderia", "eradicator"], ["dejeuner", "unjeered"], ["demy", "emyd"], ["diopside", "dipodies"], ["dissue", "issued"], ["easterling", "generalist"], ["equalness", "squalenes"], ["evictors", "vortices"], ["fanakalo", "fanaloka"], ["filigraned", "grainfield"], ["huntress", "shunters"], ["incendious", "undecision"], ["latuka", "taluka"], ["lovers", "solver"], ["news", "sewn", "wens"], ["pelts", "spelt", "splet"], ["podarthritis", "traditorship"], ["portify", "torpify"], ["ravison", "virason"], ["removal", "valorem"], ["resentiment", "sentimenter"], ["sanes", "sensa"], ["sidewalk", "walkside"], ["uncharm", "unmarch"]]
group_anagrams
{"anagram_groups": 41, "difficulty": {"anagram_groups": [10, 50], "words_per_group": [2, 5]}, "solution": [["actions", "atonics", "cations"], ["aeolis", "laiose"], ["ag", "ga"], ["akan", "kana"], ["alder", "daler", "lader"], ["aliptic", "aplitic"], ["anguria", "gaurian", "guarani"], ["antar", "antra", "ratan"], ["asta", "sata"], ["banishes", "banshies"], ["befall", "flabel"], ["bervie", "brieve"], ["bobfly", "flobby"], ["broadspread", "spreadboard"], ["cadential", "dancalite"], ["caretta", "teacart", "tearcat"], ["consulage", "glucosane"], ["corradiate", "cortaderia", "eradicator"], ["dejeuner", "unjeered"], ["demy", "emyd"], ["diopside", "dipodies"], ["dissue", "issued"], ["easterling", "generalist"], ["equalness", "squalenes"], ["evictors", "vortices"], ["fanakalo", "fanaloka"], ["filigraned", "grainfield"], ["huntress", "shunters"], ["incendious", "undecision"], ["latuka", "taluka"], ["lovers", "solver"], ["news", "sewn", "wens"], ["pelts", "spelt", "splet"], ["podarthritis", "traditorship"], ["portify", "torpify"], ["ravison", "virason"], ["removal", "valorem"], ["resentiment", "sentimenter"], ["sanes", "sensa"], ["sidewalk", "walkside"], ["uncharm", "unmarch"]], "source_dataset": "group_anagrams", "source_index": 5, "words": ["sensa", "sanes", "walkside", "sidewalk", "evictors", "vortices", "ratan", "antar", "antra", "sata", "asta", "diopside", "dipodies", "ga", "ag", "lader", "daler", "alder", "lovers", "solver", "dancalite", "cadential", "flobby", "bobfly", "brieve", "bervie", "corradiate", "cortaderia", "eradicator", "guarani", "anguria", "gaurian", "valorem", "removal", "aplitic", "aliptic", "easterling", "generalist", "banshies", "banishes", "emyd", "demy", "consulage", "glucosane", "huntress", "shunters", "virason", "ravison", "broadspread", "spreadboard", "filigraned", "grainfield", "portify", "torpify", "latuka", "taluka", "wens", "sewn", "news", "unmarch", "uncharm", "caretta", "tearcat", "teacart", "sentimenter", "resentiment", "squalenes", "equalness", "flabel", "befall", "akan", "kana", "traditorship", "podarthritis", "laiose", "aeolis", "atonics", "actions", "cations", "spelt", "splet", "pelts", "fanaloka", "fanakalo", "unjeered", "dejeuner", "issued", "dissue", "undecision", "incendious"]}
Solve this cryptarithm: APRP ATFFR MFKWE EBMWW PPW AFWTB WBF PAKWB KEWRW + REA -------- KAPPPA Each letter stands for a unique digit (0-9). No leading letter can be zero. Provide a comma separated mapping from letters to digits that satisfies the equation in your final answer. Output format: "A=1,B=2,C=3" (without quotes)
A=7,B=8,E=9,F=4,K=3,M=5,P=2,R=6,T=0,W=1
cryptarithm
{"difficulty": {"words": [5, 10]}, "digit_to_letter": {"0": "T", "1": "W", "2": "P", "3": "K", "4": "F", "5": "M", "6": "R", "7": "A", "8": "B", "9": "E"}, "letter_to_digit": {"A": 7, "B": 8, "E": 9, "F": 4, "K": 3, "M": 5, "P": 2, "R": 6, "T": 0, "W": 1}, "letters": ["A", "F", "R", "P", "W", "M", "B", "K", "E", "T"], "result_letters": "KAPPPA", "source_dataset": "cryptarithm", "source_index": 28, "sum_number": 372227, "word_values": [7262, 70446, 54319, 98511, 221, 74108, 184, 27318, 39161, 697], "words_letters": ["APRP", "ATFFR", "MFKWE", "EBMWW", "PPW", "AFWTB", "WBF", "PAKWB", "KEWRW", "REA"]}
Given a square matrix, your job is to rotate it clockwise. Your output should be a matrix in the same format as the input. Rotate the matrix below by 1170 degrees clockwise: 9 9 4 7 6 2 5 3 8 7 0 6 9 3 7 7 4 5 3 3 9 2 7 8 5 6 9 6 4 0 1 1 3 4 6 1 9 0 1 3 4 8 7 0 4 6 8 2 4 8 6 2 8 9 1 3 9 4 3 9 9 2 6 6 3 9 2 1 5 9 1 9 1 8 5 1 7 1 7 8 8 2 4 1 0 8 0 5 5 4 6 7 5 8 3 4 1 1 9 2 6 6 1 2 5 6 9 8 3 6 5 6 5 2 0 6 8 5 7 0 8 4 4 0 9 7 7 4 5 0 4 2 4 7 7 9 6 7 7 2 6 3 8 9 7 2 8 4 4 4 3 3 2 7 3 5 5 1 9 7 3 6 4 8 0 4 0 1 3 0 8 3 5 9 2 3 6 6 9 6 6 1 7 3 9 7 2 8 8 1 4 0 3 6 1 9 1 3 1 5 0 6 2 8 5 1 5 7 3 5 1 1 3 3 5 8 1 6 3 0 1 2 3 6 2 2 1 3 9 4 7 2 0 8 9 9 6 3 6 8 1 1 4 9 4 8 5 6 0 8 1 5 1 0 8 9 3 3 2 5 5 5 7 2 9 0 6 3 9 1 9 9 7 9 9 3 4 1 5 2 5 9 3 7 4 8 7 4 5 3 3 2 6 2 0 7 8 8 1 7 0 4 9 3 6 7 7 5 0 0 6 0 1 9 5 5 5 6 8 9 7 8 9 7 5 2 5 5 6 0 2 0 0 8 8 2 2 5 9 8 8 7 1 7 4 4 1 1 8 4 5 4 7 1 7 6 6 1 3 9 3 7 3 2 0 3 6 5 1 0 3 2 5 5 5 8 3 8 5 5 7 9 2 2 6 4 8 7 5 8 4 0 6 2 2 2 1 7 5 0 7 0 7 1 5 1 8 0 7 5 0 6 1 2 5 0 3 9 6 4 6 9 3 4 6 5 5 8 0 9 2 4 6 9 2 7 8 6 2 3 9 3 0 5 7 7 1 5 4 0 4 3 4 2 8 1 2 5 6 1 7 6 8 5 3 2 7 3 8 8 9 0 3 5 5 8 7 6 6 4 8 7 3 4 1 3 3 4 4 5 6 1 9 4 0 8 6 3 0 5 7 3 9 3 8 7 6 6 5 1 6 3 8 2 9 2 0 0 8 8 0 9 3 0 9 6 8 0 3 0 9 1 6 2 8 6 4 8 3 3 1 5 4 9 1 3 6 5 7 7 8 6 5 1 3 3 0 9 9 5 1 5 4 0 8 4 8 1 8 6 8 2 9 2 5 8 0 8 7 5 4 6 1 9 9 9 9 9 9 8 4 3 0 8 6 1 0 3 8 7 3 5 5 0 4 2 3 7 9 0 8 8 5 5 4 9 1 1 4 2 4 9 2 3 1 0 1 2 8 1 0 1 8 2 9 1 6 1 9 3 8 5 9 5 5 1 0 3 1 7 6 8 6 3 5 1 6 0 0 1 6 5 6 4 2 4 3 9 1 8 7 9 0 1 1 0 3 6 0 6 7 1 8 6 8 6 4 9 8 7 6 9 5 8 2 1 3 9 0 6 4 1 2 1 1 5 5 9 8 4 4 3 4 2 9 9 4 6 0 3 4 8 3 4 4 8 3 9 5 4 8 6 3 2 5 3 2 4 3 8 3 8 7 0 8 9 3 4 1 1 0 3 0 6 4 5 3 0 0 3 8 2 5 7 9 5 8 9 9 5 2 6 9 4 3 1 7 4 9 7 8 2 0 5 3 0 2 8 4 0 6 6 8 7 0 0 5 5 3 7 2 9 5 4 4 9 6 9 5 1 7 6 2 1 1 9 5 1 3 8 1 5 3 4 8 8 1 6 1 0 2 7 6 3 2 4 7 6 9 2 7 0 6 3 6 3 3 4 0 8 6 3 6 1 7 6 1 5 2 0 0 2 9 6 5 0 4 6 4 5 8 9 6 2 2 7 1 7 7 8 7 8 5 3 5 7 7 3 6 1 6 1 4 6 0 4 3 9 3 9 0 3 8 6 8 6 7 0 8 4 2 1 0 6 3 9 6 5 6 0 4 6 9 5 7 9 6 8 4 8 8 5 1 0 4 9 2 7 8 5 3 4 0 3 1 9 8 6 0 3 8 6 5 5 0 1 8 1 3 4 5 8 0 1 4 1 5 0 1 2 0 9 6 5 0 8 2 2 2 1 8 8 8 8 3 7 7 0 7 7 4 8 9 3 9 7 4 2 6 3 3 9 8 5 6 2 1 3 0 6 6 6 6 9 8 2 4 6 9 6 4 9 9 2 9 6 4 3 5 4 8 9 2 3 2 8 0 0 3 7 3 1 5 1 8 4 6 6 2 8 5 0 3 6 4 0 4 9 9 5 0 9 6 1 6 1 0 6 7 1 1 4 6 2 4 7 9 9 2 9 5 6 1 9 9 9 2 8 0 7 3 9 8 8 3 1 6 4 5 7 3 4 4 8 1 1 1 4 4 8 4 2 2 6 4 9 1 4 7 7 1 3 7 3 1 4 0 1 2 3 6 1 0 0 0 5 9 8 5 9 1 4 4 1 2 2 3 9 5 3 8 6 7 5 6 2 5 3 7 5 0 6 8 4 9 7 8 7 9 5 1 6 9 7 5 4 9 9 4 1 5 9 1 2 1 4 0 9 0 9 7 7 2 1 2 2 2 0 9 4 4 0 9 0 6 2 4 2 0 4 9 5 4 4 1 7 5 0 5 5 4 7 9 5 8 0 0 4 5 0 1 8 8 6 8 9 5 4 1 5 4 8 4 9 0 7 6 1 2 4 1 3 5 8 0 0 2 4 0 3 2 8 7 5 2 5 3 3 5 6 0 0 1 8 5 2 4 6 5 1 8 4 9 0 8 7 9 4 7 0 9 5 9 5 5 7 7 6 2 3 4 8 2 5 2 6 5 3 5 9 9 9 7 7 5 3 5 8 2 5 1 5 2 7 5 8 7 0 8 1 8 7 7 1 1 3 2 4 6 5 1 0 1 7 9 5 2 4 9 5 5 0 7 5 2 3 1 3 8 3 0 8 2 1 8 8 3 7 8 1 2 7 5 7 8 3 7 9 0 8 0 5 8 8 2 9 4 3 2 5 8 6 0 6 4 6 6 4 9 0 0 9 2 2 2 3 0 2 1 2 9 7 6 3 2 5 6 2 8 4 0 7 9 5 8 6 9 1 0 8 8 7 7 6 6 9 8 3 9 0 4 3 7 9 3 8 8 8 0 5 0 3 0 0 2 6 0 2 1 0 9 4 5 7 0 4 9 1 6 2 5 1 5 9 1 1 1 9 4 5 3 1 7 2 0 7 4 3 6 2 6 5 1 0 8 5 1 2 0 9 3 1 1 7 9 1 1 3 1 9 1 3 1 1 6 4 9 7 9 0 1 0 3 4 4 1 1 9 4 2 0 5 2 1 9 0 4 8 2 7 9 8 8 0 9 0 2 1 5 8 3 1 3 7 8 6 1 7 0 0 9 8 2 9 1 0 6 2 7 1 0 7 7 4 4 5 9 2 3 3 8 3 5 6 7 8 3 1 1 4 3 7 9 7 1 4 2 3 2 5
9 1 3 4 0 0 1 8 4 4 0 1 5 3 3 5 4 7 7 2 8 4 7 8 3 1 0 8 9 7 3 7 5 1 0 3 8 8 4 9 8 0 1 3 9 8 5 4 8 0 6 3 6 1 9 8 6 8 0 9 2 8 1 5 5 5 9 7 3 0 7 8 9 1 6 6 4 2 8 9 2 3 7 7 2 2 2 9 4 9 8 7 1 5 8 0 9 5 6 5 5 3 8 9 5 4 3 3 0 7 3 9 3 4 2 4 4 4 7 4 9 4 2 9 2 1 7 0 9 0 4 3 9 1 5 1 5 3 3 4 7 4 6 5 0 0 0 4 5 1 2 7 7 9 8 8 0 1 0 7 1 4 0 3 2 8 5 8 0 6 9 1 9 8 6 4 7 5 6 4 9 4 8 5 4 8 9 1 7 5 0 5 4 4 5 0 9 0 4 6 0 1 7 8 3 8 8 7 7 2 7 4 9 4 2 1 9 7 3 9 5 8 6 1 2 4 6 3 7 1 3 2 8 8 1 4 7 8 6 2 6 1 4 8 0 3 7 9 6 4 8 0 2 6 1 5 6 7 3 6 8 3 4 0 3 8 8 3 1 8 6 5 7 5 5 0 7 0 8 5 2 9 3 8 2 7 0 4 1 2 7 1 8 6 3 0 8 3 4 9 9 9 9 3 7 1 0 4 5 0 5 5 4 6 7 1 4 5 2 3 7 4 6 0 1 8 8 7 2 0 9 2 0 2 0 1 4 6 0 5 9 5 8 1 9 8 3 4 4 7 1 6 5 0 3 3 5 5 4 8 1 2 2 5 2 1 1 0 4 4 5 3 7 8 6 2 8 1 8 1 5 4 7 7 0 6 0 5 0 5 0 0 3 8 5 0 0 4 8 7 0 0 6 0 9 2 8 9 1 9 1 6 3 5 6 0 8 6 6 7 2 8 6 6 8 8 9 6 4 0 3 2 3 1 1 8 4 6 6 0 7 5 5 3 7 7 7 5 3 5 6 1 9 0 6 9 5 1 3 6 6 6 9 8 8 2 1 1 3 6 2 0 2 5 1 3 2 7 2 6 7 2 1 0 6 5 7 9 5 4 9 0 8 3 6 6 1 4 6 2 9 3 5 6 5 9 6 9 4 1 5 0 6 1 3 5 4 5 8 9 4 1 0 0 3 7 1 5 8 4 7 0 8 6 9 5 0 6 1 1 4 2 8 3 5 2 2 4 2 2 5 8 2 0 3 9 7 8 9 3 4 9 8 2 2 8 1 5 0 1 5 0 3 4 8 0 4 0 7 1 3 5 2 5 4 5 8 0 8 5 5 8 0 8 5 2 7 3 1 7 5 0 5 6 5 3 3 7 0 7 4 5 1 0 2 8 9 4 6 9 1 3 1 1 9 8 6 8 1 0 8 2 7 9 8 3 9 4 3 7 9 4 1 0 6 7 2 7 2 5 9 9 6 4 4 2 2 3 1 5 7 2 3 6 1 0 4 6 2 3 3 2 8 3 1 6 6 1 9 4 2 8 2 2 2 9 4 6 4 0 9 8 4 9 6 2 7 9 5 1 4 4 9 0 1 8 8 3 5 9 8 5 8 3 6 6 7 1 4 5 3 2 0 1 8 0 6 2 0 5 4 5 5 9 9 2 8 3 2 3 9 3 0 0 4 7 3 0 6 6 5 9 1 2 3 9 7 9 3 3 3 7 9 0 4 8 5 3 3 5 1 9 7 5 6 1 5 9 0 8 7 8 6 1 2 5 3 5 1 4 5 8 7 5 0 6 2 2 9 3 8 9 3 9 0 0 1 4 2 4 5 1 3 0 4 8 3 0 0 1 8 3 4 6 4 4 1 7 7 6 7 8 0 5 1 6 6 6 9 9 3 8 1 4 7 5 0 8 8 7 9 4 4 9 9 8 4 3 2 5 2 8 1 5 9 6 5 3 6 9 9 7 4 5 2 1 3 6 2 2 5 8 1 5 9 8 1 2 7 9 1 4 4 6 9 8 0 8 9 3 0 7 2 6 2 1 4 9 8 3 2 1 9 7 3 7 8 1 6 7 6 0 7 7 5 8 7 5 5 5 2 1 8 1 2 8 3 6 6 4 5 0 1 4 3 9 9 3 5 4 2 7 3 2 6 3 9 2 6 8 7 9 9 0 8 2 9 2 2 8 1 2 1 6 9 3 1 8 5 8 3 8 1 2 1 9 1 8 3 6 6 4 6 9 2 9 7 5 3 5 8 0 1 4 6 9 5 6 5 0 4 2 1 1 6 7 9 6 0 8 0 9 5 4 0 9 3 7 2 5 4 4 7 0 2 7 2 6 9 6 3 2 1 9 9 4 2 5 3 0 0 3 1 0 4 7 8 7 4 1 2 3 5 3 1 9 6 6 7 5 8 1 7 6 1 2 8 9 2 9 1 1 3 1 1 3 4 3 3 4 9 9 4 6 3 0 6 0 6 6 8 4 9 9 2 9 5 6 3 8 7 1 5 3 3 8 4 8 1 6 1 5 1 6 0 2 9 5 5 5 0 5 4 7 5 7 0 8 4 1 4 1 8 1 8 9 7 5 8 0 5 8 0 9 9 8 4 3 5 4 4 8 9 2 8 5 5 9 6 0 9 3 8 1 4 7 3 4 5 0 0 1 4 8 1 8 7 1 8 9 8 4 0 1 4 1 4 6 9 0 3 3 1 5 8 8 5 9 0 1 7 8 4 1 8 4 8 2 8 2 6 0 4 7 0 4 8 6 9 2 4 5 6 9 7 4 3 5 1 1 7 1 3 1 7 6 0 9 0 8 7 6 2 4 9 8 6 1 9 7 6 3 3 9 1 3 6 3 0 4 0 4 0 9 2 0 3 6 9 1 9 3 1 5 7 0 7 7 1 8 2 7 2 6 2 9 5 0 6 6 8 0 4 0 8 0 5 8 3 6 6 7 1 7 0 3 2 5 1 3 7 7 1 9 6 6 5 7 8 6 1 5 6 2 3 3 5 6 2 3 7 6 2 1 2 8 1 2 5 9 2 1 9 9 8 6 7 2 8 4 1 8 6 1 6 4 2 5 5 8 2 6 4 4 2 9 0 3 2 2 0 4 9 1 9 6 3 9 5 2 2 7 5 9 9 1 3 0 5 6 4 6 4 1 9 6 3 3 2 9 2 2 9 7 8 7 1 9 7 4 0 5 9 0 1 1 3 2 8 7 2 6 5 3 9 9 5 6 1 1 2 1 9 1 8 6 1 5 4 5 2 5 1 9 0 4 8 6 1 7 5 3 4 3 6 0 0 0 7 8 1 6 5 4 6 1 5 8 7 9 3 7 7 9 3 4 3 8 6 4 0 3 4 9 0 2 1 5 7 6 5 0 6 6 1 3 9 0 6 6 7 1 6 1 3 3 1 5 1 0 2 0 9 4 9 9 8 2 5 1 9 7 7 2 3 6 3 6 7 9 3 0 0 0 9 8 9 8 6 2 5 3 8 5 6 1 9 7 7 1 5 0 0 5 0 0 3 5 1 5 4 5 7 9 7 3 4 0 8 2 7 3 3 6 3 7 5 8 4 3 0 9 9 2 8 5 7 0 8 3
rotate_matrix
{"difficulty": {"n": [25, 50], "num_rotations": [5, 15]}, "matrix": [[9, 9, 4, 7, 6, 2, 5, 3, 8, 7, 0, 6, 9, 3, 7, 7, 4, 5, 3, 3, 9, 2, 7, 8, 5, 6, 9, 6, 4, 0, 1, 1, 3, 4, 6, 1, 9, 0, 1, 3], [4, 8, 7, 0, 4, 6, 8, 2, 4, 8, 6, 2, 8, 9, 1, 3, 9, 4, 3, 9, 9, 2, 6, 6, 3, 9, 2, 1, 5, 9, 1, 9, 1, 8, 5, 1, 7, 1, 7, 8], [8, 2, 4, 1, 0, 8, 0, 5, 5, 4, 6, 7, 5, 8, 3, 4, 1, 1, 9, 2, 6, 6, 1, 2, 5, 6, 9, 8, 3, 6, 5, 6, 5, 2, 0, 6, 8, 5, 7, 0], [8, 4, 4, 0, 9, 7, 7, 4, 5, 0, 4, 2, 4, 7, 7, 9, 6, 7, 7, 2, 6, 3, 8, 9, 7, 2, 8, 4, 4, 4, 3, 3, 2, 7, 3, 5, 5, 1, 9, 7], [3, 6, 4, 8, 0, 4, 0, 1, 3, 0, 8, 3, 5, 9, 2, 3, 6, 6, 9, 6, 6, 1, 7, 3, 9, 7, 2, 8, 8, 1, 4, 0, 3, 6, 1, 9, 1, 3, 1, 5], [0, 6, 2, 8, 5, 1, 5, 7, 3, 5, 1, 1, 3, 3, 5, 8, 1, 6, 3, 0, 1, 2, 3, 6, 2, 2, 1, 3, 9, 4, 7, 2, 0, 8, 9, 9, 6, 3, 6, 8], [1, 1, 4, 9, 4, 8, 5, 6, 0, 8, 1, 5, 1, 0, 8, 9, 3, 3, 2, 5, 5, 5, 7, 2, 9, 0, 6, 3, 9, 1, 9, 9, 7, 9, 9, 3, 4, 1, 5, 2], [5, 9, 3, 7, 4, 8, 7, 4, 5, 3, 3, 2, 6, 2, 0, 7, 8, 8, 1, 7, 0, 4, 9, 3, 6, 7, 7, 5, 0, 0, 6, 0, 1, 9, 5, 5, 5, 6, 8, 9], [7, 8, 9, 7, 5, 2, 5, 5, 6, 0, 2, 0, 0, 8, 8, 2, 2, 5, 9, 8, 8, 7, 1, 7, 4, 4, 1, 1, 8, 4, 5, 4, 7, 1, 7, 6, 6, 1, 3, 9], [3, 7, 3, 2, 0, 3, 6, 5, 1, 0, 3, 2, 5, 5, 5, 8, 3, 8, 5, 5, 7, 9, 2, 2, 6, 4, 8, 7, 5, 8, 4, 0, 6, 2, 2, 2, 1, 7, 5, 0], [7, 0, 7, 1, 5, 1, 8, 0, 7, 5, 0, 6, 1, 2, 5, 0, 3, 9, 6, 4, 6, 9, 3, 4, 6, 5, 5, 8, 0, 9, 2, 4, 6, 9, 2, 7, 8, 6, 2, 3], [9, 3, 0, 5, 7, 7, 1, 5, 4, 0, 4, 3, 4, 2, 8, 1, 2, 5, 6, 1, 7, 6, 8, 5, 3, 2, 7, 3, 8, 8, 9, 0, 3, 5, 5, 8, 7, 6, 6, 4], [8, 7, 3, 4, 1, 3, 3, 4, 4, 5, 6, 1, 9, 4, 0, 8, 6, 3, 0, 5, 7, 3, 9, 3, 8, 7, 6, 6, 5, 1, 6, 3, 8, 2, 9, 2, 0, 0, 8, 8], [0, 9, 3, 0, 9, 6, 8, 0, 3, 0, 9, 1, 6, 2, 8, 6, 4, 8, 3, 3, 1, 5, 4, 9, 1, 3, 6, 5, 7, 7, 8, 6, 5, 1, 3, 3, 0, 9, 9, 5], [1, 5, 4, 0, 8, 4, 8, 1, 8, 6, 8, 2, 9, 2, 5, 8, 0, 8, 7, 5, 4, 6, 1, 9, 9, 9, 9, 9, 9, 8, 4, 3, 0, 8, 6, 1, 0, 3, 8, 7], [3, 5, 5, 0, 4, 2, 3, 7, 9, 0, 8, 8, 5, 5, 4, 9, 1, 1, 4, 2, 4, 9, 2, 3, 1, 0, 1, 2, 8, 1, 0, 1, 8, 2, 9, 1, 6, 1, 9, 3], [8, 5, 9, 5, 5, 1, 0, 3, 1, 7, 6, 8, 6, 3, 5, 1, 6, 0, 0, 1, 6, 5, 6, 4, 2, 4, 3, 9, 1, 8, 7, 9, 0, 1, 1, 0, 3, 6, 0, 6], [7, 1, 8, 6, 8, 6, 4, 9, 8, 7, 6, 9, 5, 8, 2, 1, 3, 9, 0, 6, 4, 1, 2, 1, 1, 5, 5, 9, 8, 4, 4, 3, 4, 2, 9, 9, 4, 6, 0, 3], [4, 8, 3, 4, 4, 8, 3, 9, 5, 4, 8, 6, 3, 2, 5, 3, 2, 4, 3, 8, 3, 8, 7, 0, 8, 9, 3, 4, 1, 1, 0, 3, 0, 6, 4, 5, 3, 0, 0, 3], [8, 2, 5, 7, 9, 5, 8, 9, 9, 5, 2, 6, 9, 4, 3, 1, 7, 4, 9, 7, 8, 2, 0, 5, 3, 0, 2, 8, 4, 0, 6, 6, 8, 7, 0, 0, 5, 5, 3, 7], [2, 9, 5, 4, 4, 9, 6, 9, 5, 1, 7, 6, 2, 1, 1, 9, 5, 1, 3, 8, 1, 5, 3, 4, 8, 8, 1, 6, 1, 0, 2, 7, 6, 3, 2, 4, 7, 6, 9, 2], [7, 0, 6, 3, 6, 3, 3, 4, 0, 8, 6, 3, 6, 1, 7, 6, 1, 5, 2, 0, 0, 2, 9, 6, 5, 0, 4, 6, 4, 5, 8, 9, 6, 2, 2, 7, 1, 7, 7, 8], [7, 8, 5, 3, 5, 7, 7, 3, 6, 1, 6, 1, 4, 6, 0, 4, 3, 9, 3, 9, 0, 3, 8, 6, 8, 6, 7, 0, 8, 4, 2, 1, 0, 6, 3, 9, 6, 5, 6, 0], [4, 6, 9, 5, 7, 9, 6, 8, 4, 8, 8, 5, 1, 0, 4, 9, 2, 7, 8, 5, 3, 4, 0, 3, 1, 9, 8, 6, 0, 3, 8, 6, 5, 5, 0, 1, 8, 1, 3, 4], [5, 8, 0, 1, 4, 1, 5, 0, 1, 2, 0, 9, 6, 5, 0, 8, 2, 2, 2, 1, 8, 8, 8, 8, 3, 7, 7, 0, 7, 7, 4, 8, 9, 3, 9, 7, 4, 2, 6, 3], [3, 9, 8, 5, 6, 2, 1, 3, 0, 6, 6, 6, 6, 9, 8, 2, 4, 6, 9, 6, 4, 9, 9, 2, 9, 6, 4, 3, 5, 4, 8, 9, 2, 3, 2, 8, 0, 0, 3, 7], [3, 1, 5, 1, 8, 4, 6, 6, 2, 8, 5, 0, 3, 6, 4, 0, 4, 9, 9, 5, 0, 9, 6, 1, 6, 1, 0, 6, 7, 1, 1, 4, 6, 2, 4, 7, 9, 9, 2, 9], [5, 6, 1, 9, 9, 9, 2, 8, 0, 7, 3, 9, 8, 8, 3, 1, 6, 4, 5, 7, 3, 4, 4, 8, 1, 1, 1, 4, 4, 8, 4, 2, 2, 6, 4, 9, 1, 4, 7, 7], [1, 3, 7, 3, 1, 4, 0, 1, 2, 3, 6, 1, 0, 0, 0, 5, 9, 8, 5, 9, 1, 4, 4, 1, 2, 2, 3, 9, 5, 3, 8, 6, 7, 5, 6, 2, 5, 3, 7, 5], [0, 6, 8, 4, 9, 7, 8, 7, 9, 5, 1, 6, 9, 7, 5, 4, 9, 9, 4, 1, 5, 9, 1, 2, 1, 4, 0, 9, 0, 9, 7, 7, 2, 1, 2, 2, 2, 0, 9, 4], [4, 0, 9, 0, 6, 2, 4, 2, 0, 4, 9, 5, 4, 4, 1, 7, 5, 0, 5, 5, 4, 7, 9, 5, 8, 0, 0, 4, 5, 0, 1, 8, 8, 6, 8, 9, 5, 4, 1, 5], [4, 8, 4, 9, 0, 7, 6, 1, 2, 4, 1, 3, 5, 8, 0, 0, 2, 4, 0, 3, 2, 8, 7, 5, 2, 5, 3, 3, 5, 6, 0, 0, 1, 8, 5, 2, 4, 6, 5, 1], [8, 4, 9, 0, 8, 7, 9, 4, 7, 0, 9, 5, 9, 5, 5, 7, 7, 6, 2, 3, 4, 8, 2, 5, 2, 6, 5, 3, 5, 9, 9, 9, 7, 7, 5, 3, 5, 8, 2, 5], [1, 5, 2, 7, 5, 8, 7, 0, 8, 1, 8, 7, 7, 1, 1, 3, 2, 4, 6, 5, 1, 0, 1, 7, 9, 5, 2, 4, 9, 5, 5, 0, 7, 5, 2, 3, 1, 3, 8, 3], [0, 8, 2, 1, 8, 8, 3, 7, 8, 1, 2, 7, 5, 7, 8, 3, 7, 9, 0, 8, 0, 5, 8, 8, 2, 9, 4, 3, 2, 5, 8, 6, 0, 6, 4, 6, 6, 4, 9, 0], [0, 9, 2, 2, 2, 3, 0, 2, 1, 2, 9, 7, 6, 3, 2, 5, 6, 2, 8, 4, 0, 7, 9, 5, 8, 6, 9, 1, 0, 8, 8, 7, 7, 6, 6, 9, 8, 3, 9, 0], [4, 3, 7, 9, 3, 8, 8, 8, 0, 5, 0, 3, 0, 0, 2, 6, 0, 2, 1, 0, 9, 4, 5, 7, 0, 4, 9, 1, 6, 2, 5, 1, 5, 9, 1, 1, 1, 9, 4, 5], [3, 1, 7, 2, 0, 7, 4, 3, 6, 2, 6, 5, 1, 0, 8, 5, 1, 2, 0, 9, 3, 1, 1, 7, 9, 1, 1, 3, 1, 9, 1, 3, 1, 1, 6, 4, 9, 7, 9, 0], [1, 0, 3, 4, 4, 1, 1, 9, 4, 2, 0, 5, 2, 1, 9, 0, 4, 8, 2, 7, 9, 8, 8, 0, 9, 0, 2, 1, 5, 8, 3, 1, 3, 7, 8, 6, 1, 7, 0, 0], [9, 8, 2, 9, 1, 0, 6, 2, 7, 1, 0, 7, 7, 4, 4, 5, 9, 2, 3, 3, 8, 3, 5, 6, 7, 8, 3, 1, 1, 4, 3, 7, 9, 7, 1, 4, 2, 3, 2, 5]], "n": 40, "num_rotations": 13, "solution": [[9, 1, 3, 4, 0, 0, 1, 8, 4, 4, 0, 1, 5, 3, 3, 5, 4, 7, 7, 2, 8, 4, 7, 8, 3, 1, 0, 8, 9, 7, 3, 7, 5, 1, 0, 3, 8, 8, 4, 9], [8, 0, 1, 3, 9, 8, 5, 4, 8, 0, 6, 3, 6, 1, 9, 8, 6, 8, 0, 9, 2, 8, 1, 5, 5, 5, 9, 7, 3, 0, 7, 8, 9, 1, 6, 6, 4, 2, 8, 9], [2, 3, 7, 7, 2, 2, 2, 9, 4, 9, 8, 7, 1, 5, 8, 0, 9, 5, 6, 5, 5, 3, 8, 9, 5, 4, 3, 3, 0, 7, 3, 9, 3, 4, 2, 4, 4, 4, 7, 4], [9, 4, 2, 9, 2, 1, 7, 0, 9, 0, 4, 3, 9, 1, 5, 1, 5, 3, 3, 4, 7, 4, 6, 5, 0, 0, 0, 4, 5, 1, 2, 7, 7, 9, 8, 8, 0, 1, 0, 7], [1, 4, 0, 3, 2, 8, 5, 8, 0, 6, 9, 1, 9, 8, 6, 4, 7, 5, 6, 4, 9, 4, 8, 5, 4, 8, 9, 1, 7, 5, 0, 5, 4, 4, 5, 0, 9, 0, 4, 6], [0, 1, 7, 8, 3, 8, 8, 7, 7, 2, 7, 4, 9, 4, 2, 1, 9, 7, 3, 9, 5, 8, 6, 1, 2, 4, 6, 3, 7, 1, 3, 2, 8, 8, 1, 4, 7, 8, 6, 2], [6, 1, 4, 8, 0, 3, 7, 9, 6, 4, 8, 0, 2, 6, 1, 5, 6, 7, 3, 6, 8, 3, 4, 0, 3, 8, 8, 3, 1, 8, 6, 5, 7, 5, 5, 0, 7, 0, 8, 5], [2, 9, 3, 8, 2, 7, 0, 4, 1, 2, 7, 1, 8, 6, 3, 0, 8, 3, 4, 9, 9, 9, 9, 3, 7, 1, 0, 4, 5, 0, 5, 5, 4, 6, 7, 1, 4, 5, 2, 3], [7, 4, 6, 0, 1, 8, 8, 7, 2, 0, 9, 2, 0, 2, 0, 1, 4, 6, 0, 5, 9, 5, 8, 1, 9, 8, 3, 4, 4, 7, 1, 6, 5, 0, 3, 3, 5, 5, 4, 8], [1, 2, 2, 5, 2, 1, 1, 0, 4, 4, 5, 3, 7, 8, 6, 2, 8, 1, 8, 1, 5, 4, 7, 7, 0, 6, 0, 5, 0, 5, 0, 0, 3, 8, 5, 0, 0, 4, 8, 7], [0, 0, 6, 0, 9, 2, 8, 9, 1, 9, 1, 6, 3, 5, 6, 0, 8, 6, 6, 7, 2, 8, 6, 6, 8, 8, 9, 6, 4, 0, 3, 2, 3, 1, 1, 8, 4, 6, 6, 0], [7, 5, 5, 3, 7, 7, 7, 5, 3, 5, 6, 1, 9, 0, 6, 9, 5, 1, 3, 6, 6, 6, 9, 8, 8, 2, 1, 1, 3, 6, 2, 0, 2, 5, 1, 3, 2, 7, 2, 6], [7, 2, 1, 0, 6, 5, 7, 9, 5, 4, 9, 0, 8, 3, 6, 6, 1, 4, 6, 2, 9, 3, 5, 6, 5, 9, 6, 9, 4, 1, 5, 0, 6, 1, 3, 5, 4, 5, 8, 9], [4, 1, 0, 0, 3, 7, 1, 5, 8, 4, 7, 0, 8, 6, 9, 5, 0, 6, 1, 1, 4, 2, 8, 3, 5, 2, 2, 4, 2, 2, 5, 8, 2, 0, 3, 9, 7, 8, 9, 3], [4, 9, 8, 2, 2, 8, 1, 5, 0, 1, 5, 0, 3, 4, 8, 0, 4, 0, 7, 1, 3, 5, 2, 5, 4, 5, 8, 0, 8, 5, 5, 8, 0, 8, 5, 2, 7, 3, 1, 7], [5, 0, 5, 6, 5, 3, 3, 7, 0, 7, 4, 5, 1, 0, 2, 8, 9, 4, 6, 9, 1, 3, 1, 1, 9, 8, 6, 8, 1, 0, 8, 2, 7, 9, 8, 3, 9, 4, 3, 7], [9, 4, 1, 0, 6, 7, 2, 7, 2, 5, 9, 9, 6, 4, 4, 2, 2, 3, 1, 5, 7, 2, 3, 6, 1, 0, 4, 6, 2, 3, 3, 2, 8, 3, 1, 6, 6, 1, 9, 4], [2, 8, 2, 2, 2, 9, 4, 6, 4, 0, 9, 8, 4, 9, 6, 2, 7, 9, 5, 1, 4, 4, 9, 0, 1, 8, 8, 3, 5, 9, 8, 5, 8, 3, 6, 6, 7, 1, 4, 5], [3, 2, 0, 1, 8, 0, 6, 2, 0, 5, 4, 5, 5, 9, 9, 2, 8, 3, 2, 3, 9, 3, 0, 0, 4, 7, 3, 0, 6, 6, 5, 9, 1, 2, 3, 9, 7, 9, 3, 3], [3, 7, 9, 0, 4, 8, 5, 3, 3, 5, 1, 9, 7, 5, 6, 1, 5, 9, 0, 8, 7, 8, 6, 1, 2, 5, 3, 5, 1, 4, 5, 8, 7, 5, 0, 6, 2, 2, 9, 3], [8, 9, 3, 9, 0, 0, 1, 4, 2, 4, 5, 1, 3, 0, 4, 8, 3, 0, 0, 1, 8, 3, 4, 6, 4, 4, 1, 7, 7, 6, 7, 8, 0, 5, 1, 6, 6, 6, 9, 9], [3, 8, 1, 4, 7, 5, 0, 8, 8, 7, 9, 4, 4, 9, 9, 8, 4, 3, 2, 5, 2, 8, 1, 5, 9, 6, 5, 3, 6, 9, 9, 7, 4, 5, 2, 1, 3, 6, 2, 2], [5, 8, 1, 5, 9, 8, 1, 2, 7, 9, 1, 4, 4, 6, 9, 8, 0, 8, 9, 3, 0, 7, 2, 6, 2, 1, 4, 9, 8, 3, 2, 1, 9, 7, 3, 7, 8, 1, 6, 7], [6, 0, 7, 7, 5, 8, 7, 5, 5, 5, 2, 1, 8, 1, 2, 8, 3, 6, 6, 4, 5, 0, 1, 4, 3, 9, 9, 3, 5, 4, 2, 7, 3, 2, 6, 3, 9, 2, 6, 8], [7, 9, 9, 0, 8, 2, 9, 2, 2, 8, 1, 2, 1, 6, 9, 3, 1, 8, 5, 8, 3, 8, 1, 2, 1, 9, 1, 8, 3, 6, 6, 4, 6, 9, 2, 9, 7, 5, 3, 5], [8, 0, 1, 4, 6, 9, 5, 6, 5, 0, 4, 2, 1, 1, 6, 7, 9, 6, 0, 8, 0, 9, 5, 4, 0, 9, 3, 7, 2, 5, 4, 4, 7, 0, 2, 7, 2, 6, 9, 6], [3, 2, 1, 9, 9, 4, 2, 5, 3, 0, 0, 3, 1, 0, 4, 7, 8, 7, 4, 1, 2, 3, 5, 3, 1, 9, 6, 6, 7, 5, 8, 1, 7, 6, 1, 2, 8, 9, 2, 9], [1, 1, 3, 1, 1, 3, 4, 3, 3, 4, 9, 9, 4, 6, 3, 0, 6, 0, 6, 6, 8, 4, 9, 9, 2, 9, 5, 6, 3, 8, 7, 1, 5, 3, 3, 8, 4, 8, 1, 6], [1, 5, 1, 6, 0, 2, 9, 5, 5, 5, 0, 5, 4, 7, 5, 7, 0, 8, 4, 1, 4, 1, 8, 1, 8, 9, 7, 5, 8, 0, 5, 8, 0, 9, 9, 8, 4, 3, 5, 4], [4, 8, 9, 2, 8, 5, 5, 9, 6, 0, 9, 3, 8, 1, 4, 7, 3, 4, 5, 0, 0, 1, 4, 8, 1, 8, 7, 1, 8, 9, 8, 4, 0, 1, 4, 1, 4, 6, 9, 0], [3, 3, 1, 5, 8, 8, 5, 9, 0, 1, 7, 8, 4, 1, 8, 4, 8, 2, 8, 2, 6, 0, 4, 7, 0, 4, 8, 6, 9, 2, 4, 5, 6, 9, 7, 4, 3, 5, 1, 1], [7, 1, 3, 1, 7, 6, 0, 9, 0, 8, 7, 6, 2, 4, 9, 8, 6, 1, 9, 7, 6, 3, 3, 9, 1, 3, 6, 3, 0, 4, 0, 4, 0, 9, 2, 0, 3, 6, 9, 1], [9, 3, 1, 5, 7, 0, 7, 7, 1, 8, 2, 7, 2, 6, 2, 9, 5, 0, 6, 6, 8, 0, 4, 0, 8, 0, 5, 8, 3, 6, 6, 7, 1, 7, 0, 3, 2, 5, 1, 3], [7, 7, 1, 9, 6, 6, 5, 7, 8, 6, 1, 5, 6, 2, 3, 3, 5, 6, 2, 3, 7, 6, 2, 1, 2, 8, 1, 2, 5, 9, 2, 1, 9, 9, 8, 6, 7, 2, 8, 4], [1, 8, 6, 1, 6, 4, 2, 5, 5, 8, 2, 6, 4, 4, 2, 9, 0, 3, 2, 2, 0, 4, 9, 1, 9, 6, 3, 9, 5, 2, 2, 7, 5, 9, 9, 1, 3, 0, 5, 6], [4, 6, 4, 1, 9, 6, 3, 3, 2, 9, 2, 2, 9, 7, 8, 7, 1, 9, 7, 4, 0, 5, 9, 0, 1, 1, 3, 2, 8, 7, 2, 6, 5, 3, 9, 9, 5, 6, 1, 1], [2, 1, 9, 1, 8, 6, 1, 5, 4, 5, 2, 5, 1, 9, 0, 4, 8, 6, 1, 7, 5, 3, 4, 3, 6, 0, 0, 0, 7, 8, 1, 6, 5, 4, 6, 1, 5, 8, 7, 9], [3, 7, 7, 9, 3, 4, 3, 8, 6, 4, 0, 3, 4, 9, 0, 2, 1, 5, 7, 6, 5, 0, 6, 6, 1, 3, 9, 0, 6, 6, 7, 1, 6, 1, 3, 3, 1, 5, 1, 0], [2, 0, 9, 4, 9, 9, 8, 2, 5, 1, 9, 7, 7, 2, 3, 6, 3, 6, 7, 9, 3, 0, 0, 0, 9, 8, 9, 8, 6, 2, 5, 3, 8, 5, 6, 1, 9, 7, 7, 1], [5, 0, 0, 5, 0, 0, 3, 5, 1, 5, 4, 5, 7, 9, 7, 3, 4, 0, 8, 2, 7, 3, 3, 6, 3, 7, 5, 8, 4, 3, 0, 9, 9, 2, 8, 5, 7, 0, 8, 3]], "source_dataset": "rotate_matrix", "source_index": 39}
You are a police officer. A maniac has planted a bomb next to a public fountain. To defuse the bomb, you must solve a puzzle. The puzzle is solved when you fill any of the available jugs with the target amount of water. You have three move types: 'fill', 'empty' and 'pour'. To fill Jug A, you 'fill A'. To empty Jug B, you 'empty B'. To pour the contents of Jug A into Jug B, you 'pour A->B'. All jugs are empty to begin with. The empty jugs hold this many litres of water: A:11, B:10, C:11, D:10 And your target is: 6 litres. How do you defuse the bomb? Reply as a JSON-parsable list of moves which result in any of the jugs being filled with the target amount.
["fill B", "pour B->A", "fill B", "pour B->A", "empty A", "pour B->A", "fill B", "pour B->A", "empty A", "pour B->A", "fill B", "pour B->A", "pour B->C", "pour A->B", "pour B->C"]
jugs
{"difficulty": {"difficulty": 10, "num_jugs": 4}, "puzzle": {"jug_capacities": [11, 10, 11, 10], "min_moves": 15, "target": 6}, "source_dataset": "jugs", "source_index": 92}
Sort these numbers in descending order: -432.79, -147.664, 240.087, 238.234, 45.34, -125.4162, -392.44, 179.5, 277.5999, -281.93, 144.95, 307.123, -225.26, -287.564, 214.41, -57.62, -29.58, 198.81, -157.08, 150.6077, 55.115, -86.606, 176.51, -80.9888, 167.33, 123.759, -88.1107, 50.84, -177.71, 399.993, 445.3308, -376.271, -6.75, 265.549, -408.66, -309.967, -395.752, -394.72, -74.8389, 211.3315, 67.865, 223.18, -165.3, 255.0869, -487.524, 430.12, -85.278, -47.77, -101.702, 189.4702, 372.288, -87.66, -154.479, 31.9581, -282.21, 414.986, -137.366, 78.1232, 263.347, 245.2853, 230.112, -403.76, 279.74, 438.45, 148.89, 273.778, -433.1198, 35.05, 327.43, 492.48, -490.3946, 132.17, -271.6475, -450.5, 150.1944, -235.79, -422.586, 340.46, -307.3147, -378.8267, 2.02, 169.09, -96.07, 30.081, 101.589, 145.0643, -236.5025, 139.03 Please follow the instruction below: ## 1. Let all your answers be a list of numbers. Instead of reporting your answer as -69, -13, 1, 7, 11, 43, 59, 61, use ['-69', '-13', '1', '7', '11', '43', '59', '61'] instead ## 2. Convert all numbers in the square brackets as strings. For example, ['-69', '-13', '1', '7', '11', '43', '59', '61']
['492.48', '445.3308', '438.45', '430.12', '414.986', '399.993', '372.288', '340.46', '327.43', '307.123', '279.74', '277.5999', '273.778', '265.549', '263.347', '255.0869', '245.2853', '240.087', '238.234', '230.112', '223.18', '214.41', '211.3315', '198.81', '189.4702', '179.5', '176.51', '169.09', '167.33', '150.6077', '150.1944', '148.89', '145.0643', '144.95', '139.03', '132.17', '123.759', '101.589', '78.1232', '67.865', '55.115', '50.84', '45.34', '35.05', '31.9581', '30.081', '2.02', '-6.75', '-29.58', '-47.77', '-57.62', '-74.8389', '-80.9888', '-85.278', '-86.606', '-87.66', '-88.1107', '-96.07', '-101.702', '-125.4162', '-137.366', '-147.664', '-154.479', '-157.08', '-165.3', '-177.71', '-225.26', '-235.79', '-236.5025', '-271.6475', '-281.93', '-282.21', '-287.564', '-307.3147', '-309.967', '-376.271', '-378.8267', '-392.44', '-394.72', '-395.752', '-403.76', '-408.66', '-422.586', '-432.79', '-433.1198', '-450.5', '-487.524', '-490.3946']
number_sorting
{"difficulty": {"decimals": [2, 4], "numbers": [50, 100], "value": [-500, 500]}, "direction": "descending", "numbers": 88, "original_numbers": ["-432.79", "-147.664", "240.087", "238.234", "45.34", "-125.4162", "-392.44", "179.5", "277.5999", "-281.93", "144.95", "307.123", "-225.26", "-287.564", "214.41", "-57.62", "-29.58", "198.81", "-157.08", "150.6077", "55.115", "-86.606", "176.51", "-80.9888", "167.33", "123.759", "-88.1107", "50.84", "-177.71", "399.993", "445.3308", "-376.271", "-6.75", "265.549", "-408.66", "-309.967", "-395.752", "-394.72", "-74.8389", "211.3315", "67.865", "223.18", "-165.3", "255.0869", "-487.524", "430.12", "-85.278", "-47.77", "-101.702", "189.4702", "372.288", "-87.66", "-154.479", "31.9581", "-282.21", "414.986", "-137.366", "78.1232", "263.347", "245.2853", "230.112", "-403.76", "279.74", "438.45", "148.89", "273.778", "-433.1198", "35.05", "327.43", "492.48", "-490.3946", "132.17", "-271.6475", "-450.5", "150.1944", "-235.79", "-422.586", "340.46", "-307.3147", "-378.8267", "2.02", "169.09", "-96.07", "30.081", "101.589", "145.0643", "-236.5025", "139.03"], "sorted_numbers": ["492.48", "445.3308", "438.45", "430.12", "414.986", "399.993", "372.288", "340.46", "327.43", "307.123", "279.74", "277.5999", "273.778", "265.549", "263.347", "255.0869", "245.2853", "240.087", "238.234", "230.112", "223.18", "214.41", "211.3315", "198.81", "189.4702", "179.5", "176.51", "169.09", "167.33", "150.6077", "150.1944", "148.89", "145.0643", "144.95", "139.03", "132.17", "123.759", "101.589", "78.1232", "67.865", "55.115", "50.84", "45.34", "35.05", "31.9581", "30.081", "2.02", "-6.75", "-29.58", "-47.77", "-57.62", "-74.8389", "-80.9888", "-85.278", "-86.606", "-87.66", "-88.1107", "-96.07", "-101.702", "-125.4162", "-137.366", "-147.664", "-154.479", "-157.08", "-165.3", "-177.71", "-225.26", "-235.79", "-236.5025", "-271.6475", "-281.93", "-282.21", "-287.564", "-307.3147", "-309.967", "-376.271", "-378.8267", "-392.44", "-394.72", "-395.752", "-403.76", "-408.66", "-422.586", "-432.79", "-433.1198", "-450.5", "-487.524", "-490.3946"], "source_dataset": "number_sorting", "source_index": 115}
Decrypt this Caesar cipher text: QEB JLLK FP FJJBXPROXYIV IBPP AFPQXKQ QEXK VBQ TFQE JXOP LRO ZLJJRKFZXQFLK FP CRIIV BPQXYIFPEBA. Provide only the decrypted text as your final answer.
THE MOON IS IMMEASURABLY LESS DISTANT THAN YET WITH MARS OUR COMMUNICATION IS FULLY ESTABLISHED
caesar_cipher
{"cipher_text": "QEB JLLK FP FJJBXPROXYIV IBPP AFPQXKQ QEXK VBQ TFQE JXOP LRO ZLJJRKFZXQFLK FP CRIIV BPQXYIFPEBA", "clear_text": "THE MOON IS IMMEASURABLY LESS DISTANT THAN YET WITH MARS OUR COMMUNICATION IS FULLY ESTABLISHED", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 15, "rotation": 23, "source_dataset": "caesar_cipher", "source_index": 47}
Your task is to convert a number between two different bases. If the target base is > 10, use lowercase letters a-z for digits above 9. Now, convert the base-18 number a7f2 to base-12
2b278
base_conversion
{"decimal_value": 60860, "difficulty": {"base": [9, 18], "value": [10000, 100000]}, "source_base": 18, "source_dataset": "base_conversion", "source_index": 34, "source_repr": "a7f2", "target_base": 12, "target_repr": "2b278"}
Decrypt this Caesar cipher text: QBJXEKWX FKRBYIXUT KDTUH JXU DQCU EV ZKBUI YJ YI DEM RUBYULUT JE RU SXYUVBO YV DEJ UDJYHUBO JXU MEHA EV CYSXUB LUHDU. Provide only the decrypted text as your final answer.
ALTHOUGH PUBLISHED UNDER THE NAME OF JULES IT IS NOW BELIEVED TO BE CHIEFLY IF NOT ENTIRELY THE WORK OF MICHEL VERNE
caesar_cipher
{"cipher_text": "QBJXEKWX FKRBYIXUT KDTUH JXU DQCU EV ZKBUI YJ YI DEM RUBYULUT JE RU SXYUVBO YV DEJ UDJYHUBO JXU MEHA EV CYSXUB LUHDU", "clear_text": "ALTHOUGH PUBLISHED UNDER THE NAME OF JULES IT IS NOW BELIEVED TO BE CHIEFLY IF NOT ENTIRELY THE WORK OF MICHEL VERNE", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 22, "rotation": 16, "source_dataset": "caesar_cipher", "source_index": 129}
What will this Game of Life board look like after 2 steps of simulation? Assume a Moore neighborhood and wrapping topology. Reply as array of arrays representing rows in the grid from top to bottom in JSON format. (An empty 3x3 grid would look like this: [[0,0,0],[0,0,0],[0,0,0]]) [[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]].
[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]
game_of_life
{"difficulty": {"filled_cells_weights": 0.2, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2}, "filled_cells": 10, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2, "source_dataset": "game_of_life", "source_index": 95}
Solve this cryptarithm: HNMV YMPTP KPG PKVM THV NYM NPV + TTK ------- VNPNN Each letter stands for a unique digit (0-9). No leading letter can be zero. Provide a comma separated mapping from letters to digits that satisfies the equation in your final answer. Output format: "A=1,B=2,C=3" (without quotes)
G=6,H=8,K=4,M=9,N=2,P=3,T=1,V=7,Y=5
cryptarithm
{"difficulty": {"words": [5, 10]}, "digit_to_letter": {"1": "T", "2": "N", "3": "P", "4": "K", "5": "Y", "6": "G", "7": "V", "8": "H", "9": "M"}, "letter_to_digit": {"G": 6, "H": 8, "K": 4, "M": 9, "N": 2, "P": 3, "T": 1, "V": 7, "Y": 5}, "letters": ["V", "N", "P", "M", "G", "K", "Y", "T", "H"], "result_letters": "VNPNN", "source_dataset": "cryptarithm", "source_index": 81, "sum_number": 72322, "word_values": [8297, 59313, 436, 3479, 187, 259, 237, 114], "words_letters": ["HNMV", "YMPTP", "KPG", "PKVM", "THV", "NYM", "NPV", "TTK"]}
Decrypt this Caesar cipher text: ZCQGBCQ FGQ CYAF YQ RFC PCYBCP GQ FYQ GL DPMLR MD FGK Y QCR MD UFGAF CLYZJC FGK RM AMKKSLGAYRC UGRF YLW BCQGPCB RCJCNFMRGA JGLC. Provide only the decrypted text as your final answer.
BESIDES HIS EACH AS THE READER IS HAS IN FRONT OF HIM A SET OF WHICH ENABLE HIM TO COMMUNICATE WITH ANY DESIRED TELEPHOTIC LINE
caesar_cipher
{"cipher_text": "ZCQGBCQ FGQ CYAF YQ RFC PCYBCP GQ FYQ GL DPMLR MD FGK Y QCR MD UFGAF CLYZJC FGK RM AMKKSLGAYRC UGRF YLW BCQGPCB RCJCNFMRGA JGLC", "clear_text": "BESIDES HIS EACH AS THE READER IS HAS IN FRONT OF HIM A SET OF WHICH ENABLE HIM TO COMMUNICATE WITH ANY DESIRED TELEPHOTIC LINE", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 25, "rotation": 24, "source_dataset": "caesar_cipher", "source_index": 37}
Your task is to convert a number between two different bases. If the target base is > 10, use lowercase letters a-z for digits above 9. Now, convert the base-11 number 42075 to base-15
13273
base_conversion
{"decimal_value": 61308, "difficulty": {"base": [9, 18], "value": [10000, 100000]}, "source_base": 11, "source_dataset": "base_conversion", "source_index": 76, "source_repr": "42075", "target_base": 15, "target_repr": "13273"}
You are a police officer. A maniac has planted a bomb next to a public fountain. To defuse the bomb, you must solve a puzzle. The puzzle is solved when you fill any of the available jugs with the target amount of water. You have three move types: 'fill', 'empty' and 'pour'. To fill Jug A, you 'fill A'. To empty Jug B, you 'empty B'. To pour the contents of Jug A into Jug B, you 'pour A->B'. All jugs are empty to begin with. The empty jugs hold this many litres of water: A:13, B:12, C:12, D:13 And your target is: 7 litres. How do you defuse the bomb? Reply as a JSON-parsable list of moves which result in any of the jugs being filled with the target amount.
["fill B", "pour B->A", "fill B", "pour B->A", "empty A", "pour B->A", "fill B", "pour B->A", "empty A", "pour B->A", "fill B", "pour B->A", "empty A", "pour B->A", "fill B", "pour B->A", "empty A", "pour B->A", "fill B", "pour B->A"]
jugs
{"difficulty": {"difficulty": 10, "num_jugs": 4}, "puzzle": {"jug_capacities": [13, 12, 12, 13], "min_moves": 19, "target": 7}, "source_dataset": "jugs", "source_index": 148}
You are a police officer. A maniac has planted a bomb next to a public fountain. To defuse the bomb, you must solve a puzzle. The puzzle is solved when you fill any of the available jugs with the target amount of water. You have three move types: 'fill', 'empty' and 'pour'. To fill Jug A, you 'fill A'. To empty Jug B, you 'empty B'. To pour the contents of Jug A into Jug B, you 'pour A->B'. All jugs are empty to begin with. The empty jugs hold this many litres of water: A:13, B:8, C:8, D:13 And your target is: 4 litres. How do you defuse the bomb? Reply as a JSON-parsable list of moves which result in any of the jugs being filled with the target amount.
["fill A", "pour A->B", "pour A->C", "fill A", "pour A->C", "empty B", "pour A->B", "empty B", "pour A->B", "fill A", "pour A->B", "empty B", "pour A->B", "fill A", "pour A->B", "empty B", "pour A->B"]
jugs
{"difficulty": {"difficulty": 10, "num_jugs": 4}, "puzzle": {"jug_capacities": [13, 8, 8, 13], "min_moves": 17, "target": 4}, "source_dataset": "jugs", "source_index": 126}
You are given an n x n grid where each cell can have one of three values: - 0 representing an empty cell - 1 representing a fresh orange - 2 representing a rotten orange Every minute, any fresh orange that is 4-directionally adjacent to a rotten orange becomes rotten. Your task is determine the minimum number of minutes that must elapse until no cell has a fresh orange. If this is impossible, return -1. Now, determine the minimum number of minutes that must elapse until no cell in the grid below has a fresh orange: 1 1 1 1 1 2 1 1 0 0 1 1 1 1 0 1 1 1 2 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 0 0 1 1 1 1 0 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 0 1 2 2 1 1 1 1 0 1 1 2 1 1 0 1 1 1 1 1 2 0 1 2 1 1 1 1 1 1 1 0 1 1 1 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 1 2 0 1 1 1 2 1 0 0 1 0 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 2 1 1 1 0 1 1 1 1 1 0 1 1 1 0 1 1 0 0 1 1 0 2 1 1 0 1 1 0 0 1 2 2 1 1 1 1 1 1 0 1 1 2 1 0 1 1 0 1 1 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 0 1 1 0 1 0 1 0 1 1 0 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 2 1 1 1 0 2 1 1 2 0 1 1 0 1 0 1 1 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 2 1 1 2 1 1 1 0 1 0 1 0 0 0 0 1 0 1 1 1 2 1 1 1 1 1 1 1 1 0 0 1 1 1 1 0 1 1 2 0 1 2 0 2 1 1 1 1 2 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 2 1 1 1 1 1 2 1 1 1 1 0 1 1 1 0 0 1 1 0 0 0 1 0 1 0 2 1 0 1 1 2 1 1 0 0 1 1 1 1 1 1 0 1 1 2 1 1 1 1 1 2 1 1 1 0 0 1 1 1 2 1 2 1 1 1 0 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 2 1 1 1 0 1 1 2 1 1 0 1 1 1 1 1 1 0 1 2 1 2 1 1 1 0 1 0 1 1 1 0 1 1 1 2 1 1 1 1 1 1 1 1 0 2 1 0 1 1 1 1 0 1 1 1 2 0 1 1 2 1 1 1 0 1 1 1 0 0 1 1 1 1 1 1 0 1 1 1 1 0 1 1 1 1 1 1 2 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 2 1 1 1 1 1 1 1 0 1 0 0 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 0 2 1 1 0 1 1 1 1 1 1 1 2 1 0 0 0 1 1 1 1 1 1 1 0 1 1 0 1 1 1 1 0 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 0 1 1 1 1 1 1 2 1 0 1 0 1 1 1 1 1 2 2 1 1 0 1 1 1 1 1 1 2 1 1 1 1 1 0 1 1 1 1 0 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 2 1 1 1 1 0 0 1 1 0 1 1 0 0 2 1 1 1 1 1 1 1 0 1 0 1 1 0 1 1 0 1 2 0 1 0 0 1 1 1 1 0 1 2 1 2 1 1 1 1 2 1 1 1 1 1 1 1 0 1 1 1 1 0 1 1 1 1 1 1 0 2 1 1 1 1 0 2 0 1 1 1 0 1 1 1 1 0 0 2 1 0 1 1 1 2 1 1 1 1 1 1 1 1 1 0 1 2 1 1 1 1 0 1 1 1 1 1 2 1 1 1 0 1 2 1 2 1 2 1 0 1 1 1 0 1 0 1 1 0 1 0 0 1 1 1 1 0 0 1 1 1 1 1 0 1 1 1 1 1 1 2 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 1 1 1 0 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 0 0 1 1 1 1 2 0 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 1 1 0 1 1 1 1 1 1 0 1 0 1 2 1 1 1 1 0 1 0 1 1 1 1 1 1 1 2 2 1 0 1 1 1 1 2 1 0 1 1 1 1 1 1 1 0 1 1 0 1 0 2 1 2 1 1 1 2 1 1 1 1 2 1 1 1 2 2 1 2 2 1 1 1 1 1 1 1 2 0 0 1 1 0 1 1 0 1 2 1 2 0 1 1 2 1 1 1 0 1 1 1 2 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 2 1 1 0 1 2 1 2 1 1 1 0 1 1 2 1 1 1 1 0 1 0 2 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 2 1 2 1 1 1 2 1 1 1 1 1 0 1 1 1 1 1 0 1 2 1 2 1 1 1
-1
rotten_oranges
{"difficulty": {"n": [25, 50]}, "matrix": [[1, 1, 1, 1, 1, 2, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 2], [1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 1, 2, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2], [0, 1, 1, 1, 2, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 1], [1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 2, 1, 1, 0, 1, 1, 0, 0, 1, 2, 2, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2], [1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1], [0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 0, 2, 1, 1, 2, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 2, 1, 1], [1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 2, 0], [1, 2, 0, 2, 1, 1, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 2, 1, 1, 1, 1], [1, 2, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 2, 1, 0, 1, 1, 2, 1, 1, 0, 0, 1, 1, 1], [1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 0, 1, 1, 1, 2, 1, 2, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 2, 1, 2], [1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 2, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1], [2, 0, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 2, 1], [1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1], [0, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 2, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 2, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1], [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 2, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 2], [1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 2, 1, 1, 1, 1], [0, 0, 1, 1, 0, 1, 1, 0, 0, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 2, 0, 1, 0, 0, 1, 1], [1, 1, 0, 1, 2, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 2, 1], [1, 1, 1, 0, 2, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 2, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1], [2, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 1, 2, 1, 2, 1, 2, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1], [0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 2, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1], [1, 2, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 2], [1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1], [1, 0, 1, 0, 2, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 2, 2, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 0, 0], [1, 1, 0, 1, 1, 0, 1, 2, 1, 2, 0, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 2, 1, 1, 0, 1, 2, 1, 2, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 0, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 0, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 2, 1, 2, 1, 1, 1]], "n": 34, "solution": -1, "source_dataset": "rotten_oranges", "source_index": 143}
You are a police officer. A maniac has planted a bomb next to a public fountain. To defuse the bomb, you must solve a puzzle. The puzzle is solved when you fill any of the available jugs with the target amount of water. You have three move types: 'fill', 'empty' and 'pour'. To fill Jug A, you 'fill A'. To empty Jug B, you 'empty B'. To pour the contents of Jug A into Jug B, you 'pour A->B'. All jugs are empty to begin with. The empty jugs hold this many litres of water: A:13, B:3, C:3, D:13 And your target is: 2 litres. How do you defuse the bomb? Reply as a JSON-parsable list of moves which result in any of the jugs being filled with the target amount.
["fill B", "pour B->A", "fill B", "pour B->A", "fill B", "pour B->A", "fill B", "pour B->A", "fill B", "pour B->A"]
jugs
{"difficulty": {"difficulty": 10, "num_jugs": 4}, "puzzle": {"jug_capacities": [13, 3, 3, 13], "min_moves": 10, "target": 2}, "source_dataset": "jugs", "source_index": 47}
You are given an n x n grid where each cell can have one of three values: - 0 representing an empty cell - 1 representing a fresh orange - 2 representing a rotten orange Every minute, any fresh orange that is 4-directionally adjacent to a rotten orange becomes rotten. Your task is determine the minimum number of minutes that must elapse until no cell has a fresh orange. If this is impossible, return -1. Now, determine the minimum number of minutes that must elapse until no cell in the grid below has a fresh orange: 1 0 2 1 1 2 1 1 0 1 1 1 1 1 1 2 2 1 0 1 1 0 1 1 1 2 1 1 1 1 1 1 1 1 1 0 2 1 2 1 1 0 2 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 0 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 0 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 2 1 2 1 2 1 0 1 0 2 2 0 0 0 1 1 1 1 1 1 1 1 1 1 1 2 1 0 1 0 0 1 1 1 1 0 2 2 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 2 1 1 1 1 1 0 1 1 1 1 1 0 1 0 1 1 1 1 1 1 0 1 0 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 2 1 0 1 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 2 1 2 1 1 1 1 1 1 1 1 1 1 0 1 1 1 2 1 1 1 1 2 1 1 1 1 1 1 1 1 0 1 1 0 1 1 0 0 1 1 1 2 0 1 1 0 1 1 1 1 1 1 2 1 1 2 0 1 1 2 1 2 1 2 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 0 1 1 1 2 0 1 2 1 1 1 1 1 0 1 2 1 1 1 0 1 2 1 1 1 1 1 0 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 0 1 1 1 1 0 0 1 2 1 1 0 1 1 1 2 0 1 1 1 1 1 1 1 2 1 1 1 1 1 0 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 0 0 0 1 0 1 0 1 1 1 1 0 1 1 1 1 1 1 0 0 1 1 0 1 1 1 1 2 1 1 1 0 1 0 1 1 1 1 0 1 1 1 1 1 1 1 2 1 2 0 1 1 1 1 1 1 1 1 0 1 1 2 1 1 0 0 1 1 1 2 1 2 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 1 2 1 1 0 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 0 1 1 1 1 1 1 1 0 1 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 2 1 1 1 2 2 1 0 1 1 0 1 2 1 1 1 2 1 0 1 1 1 0 0 2 1 1 1 1 1 0 1 1 0 1 1 1 0 1 1 2 0 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 0 1 1 0 1 1 1 1 0 1 1 1 1 1 1 1 1 1 2 1 2 1 1 1 1 1 1 1 2 1 2 1 1 1 1 1 1 2 1 1 1 1 1 1 0 0 0 2 0 1 1 0 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 0 1 1 0 1 1 1 1 1 0 1 1 0 1 0 2 1 1 1 2 1 0 1 0 1 1 1 1 0 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 0 1 2 2 1 1 1 1 0 1 0 0 1 1 0 0 1 1 1 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 2 1 2 1 1 1 1 2 1 1 0 1 1 1 1 1 1 1 1 2 0 1 1 1 1 1 1 2 1 0 2 1 0 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 0 1 1 0 1 1 1 1 1 0 1 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 2 1 1 1 1 1 0 1 1 2 2 1 1 1 1 1 1 1 2 0 1 1 1 1 1 1 1 2 1 1 1 1
-1
rotten_oranges
{"difficulty": {"n": [25, 50]}, "matrix": [[1, 0, 2, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 2, 2, 1, 0, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1], [1, 1, 1, 1, 0, 2, 1, 2, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1], [1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1], [1, 1, 0, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 0, 1, 0, 2, 2, 0, 0, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 2, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1], [1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1], [1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2], [1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 2, 0, 1, 1, 0, 1, 1], [1, 1, 1, 1, 2, 1, 1, 2, 0, 1, 1, 2, 1, 2, 1, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 1, 1, 0, 1, 1, 1, 2, 0, 1, 2, 1, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 0, 1, 2, 1, 1, 1, 1], [1, 0, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 0, 1, 1, 1, 1], [0, 0, 1, 2, 1, 1, 0, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1], [0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 2, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1], [1, 1, 1, 1, 2, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 0, 0, 1, 1, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 2, 1, 1, 0, 1, 0, 1, 1], [1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1], [1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 2, 1, 0, 1, 1, 0, 1, 2, 1, 1, 1, 2, 1], [0, 1, 1, 1, 0, 0, 2, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1], [2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 0, 0, 0, 2, 0, 1, 1], [0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1], [1, 0, 1, 0, 2, 1, 1, 1, 2, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0], [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 2, 2, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1], [1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 2, 1, 0, 2, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1], [1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 2], [1, 1, 1, 1, 1, 0, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1]], "n": 31, "solution": -1, "source_dataset": "rotten_oranges", "source_index": 23}
Given a square matrix, your job is to rotate it clockwise. Your output should be a matrix in the same format as the input. Rotate the matrix below by 810 degrees clockwise: 7 5 9 2 3 3 7 2 1 5 0 3 1 7 4 2 6 7 5 9 1 6 1 4 7 0 5 7 1 0 7 1 1 3 2 6 4 5 3 5 7 4 2 1 0 9 8 5 0 2 5 3 4 5 0 8 2 8 9 8 0 9 8 5 0 6 1 0 0 3 6 7 7 3 3 5 3 8 8 3 2 7 1 8 0 5 8 2 7 9 1 2 9 7 3 1 2 4 6 4 7 3 3 4 4 3 2 1 0 9 4 7 0 1 0 6 4 5 5 6 8 4 4 8 4 4 2 5 4 2 2 3 8 1 6 9 8 5 8 2 9 7 7 8 1 7 7 2 7 7 6 8 4 9 1 2 1 6 2 5 3 3 4 7 8 1 4 7 3 0 5 6 4 5 8 1 3 3 7 3 5 5 8 7 7 5 8 1 6 9 9 9 3 6 2 1 5 3 5 3 6 2 8 0 9 0 5 4 0 1 5 7 9 4 3 8 6 3 5 2 5 6 8 9 5 7 7 5 4 8 3 1 6 2 9 5 0 7 2 3 9 2 6 1 3 8 9 7 8 0 3 4 3 4 6 2 3 3 1 5 1 9 4 9 6 8 5 5 6 4 7 1 4 5 5 2 7 1 0 9 9 2 8 1 8 9 8 6 7 6 7 5 7 5 4 9 9 1 3 6 8 1 4 9 8 4 7 2 2 5 9 2 6 3 2 2 4 2 0 5 4 5 5 5 8 1 1 4 4 4 4 5 2 4 8 7 9 9 5 9 1 1 3 6 9 2 2 2 7 1 2 7 6 0 4 4 9 7 8 3 2 8 8 0 0 3 0 2 7 5 3 7 1 9 6 5 3 9 8 6 2 7 6 8 1 7 1 8 3 0 2 5 4 9 7 1 2 7 3 4 9 5 9 6 0 4 0 5 3 6 7 4 4 2 9 9 6 2 1 5 3 9 2 2 0 2 4 5 8 1 3 3 1 8 5 2 3 1 2 5 3 5 5 4 7 9 9 1 4 6 3 4 1 5 0 2 3 6 5 3 9 1 6 9 3 0 9 2 4 3 5 2 3 0 3 7 7 2 9 2 6 9 0 0 4 9 9 4 5 7 6 8 6 9 8 7 1 6 0 5 9 4 2 8 4 4 0 2 4 6 9 6 9 5 6 8 0 2 6 2 1 3 7 5 8 5 5 3 7 9 2 0 2 8 3 2 5 2 5 1 6 4 6 6 9 5 1 9 4 2 2 4 2 8 6 1 7 2 1 7 6 6 0 7 9 9 7 0 8 1 3 7 1 8 3 6 2 9 6 4 5 8 9 4 2 7 3 0 6 2 8 9 2 6 4 8 2 3 7 9 7 3 6 5 7 7 1 2 8 9 2 2 3 2 8 3 8 7 9 6 6 3 5 2 4 5 7 4 2 0 3 7 9 3 0 4 4 3 9 0 5 3 1 3 5 0 6 7 6 5 9 1 2 8 0 1 3 8 8 4 5 2 4 4 2 5 4 8 7 4 0 2 0 6 9 7 5 9 8 8 3 6 9 4 3 6 1 0 7 3 6 7 2 6 9 2 7 5 7 5 8 8 0 2 8 0 6 3 5 9 9 1 7 5 0 1 4 7 7 7 9 2 0 3 5 8 8 5 1 4 4 5 7 5 1 0 4 7 3 5 0 8 8 6 0 5 5 2 1 3 2 9 5 8 1 1 9 6 9 2 5 3 4 5 1 0 7 0 5 2 9 9 9 2 4 7 8 3 8 1 8 6 5 7 7 4 2 2 6 7 1 8 2 3 7 4 5 0 7 7 1 4 8 4 9 8 1 9 7 1 5 8 0 3 5 5 5 4 8 1 4 0 2 9 6 1 8 5 1 8 9 8 1 4 7 9 1 8 7 6 3
0 7 1 8 7 8 9 9 5 4 7 9 3 2 0 9 7 5 7 9 6 0 8 7 4 2 9 0 7 3 7 1 8 5 7 0 2 8 2 5 8 0 3 5 8 1 4 5 4 2 9 1 7 5 7 8 7 5 5 4 9 5 7 4 5 2 9 8 8 7 9 1 3 6 2 5 7 9 9 0 3 2 5 9 0 1 9 5 2 6 1 5 0 3 3 4 6 5 1 2 2 6 2 7 5 5 6 5 5 3 7 6 1 9 1 2 5 2 9 4 8 2 1 2 2 1 5 6 4 5 7 7 6 5 4 8 0 4 7 7 8 2 8 3 3 4 6 2 4 8 0 3 8 7 7 3 0 3 3 4 6 0 8 9 5 7 0 3 6 4 9 5 2 3 8 7 5 5 0 6 5 3 3 2 7 5 5 5 4 8 4 1 9 5 2 1 5 8 4 7 0 6 7 1 1 3 7 2 9 0 8 0 1 9 9 2 5 2 1 4 1 1 6 3 5 5 4 8 3 6 4 2 4 8 4 5 8 7 6 7 6 7 2 4 3 4 9 7 9 4 3 4 9 7 8 9 4 1 1 5 1 0 2 5 1 0 5 7 9 2 6 0 2 0 7 9 1 7 4 6 7 2 9 7 1 4 2 0 3 5 2 3 1 0 6 9 6 6 8 6 2 8 3 9 6 8 8 4 8 1 6 4 7 2 2 4 0 5 0 9 7 0 4 3 8 5 6 9 0 8 4 7 9 2 3 3 4 1 4 1 3 5 1 5 6 3 7 3 6 4 7 7 5 8 9 3 2 7 3 4 7 1 1 0 2 5 4 5 3 8 8 6 4 4 6 4 1 1 5 0 3 9 3 1 5 6 9 2 0 2 4 5 2 8 2 9 5 8 6 1 2 2 7 7 2 7 8 0 5 5 9 6 2 2 4 9 5 2 9 6 3 5 8 4 8 2 9 3 6 5 2 3 7 1 4 5 7 2 0 1 9 8 4 8 7 2 4 2 3 9 4 0 8 4 7 7 5 9 3 3 3 3 0 2 1 7 9 8 7 4 0 5 2 0 5 6 6 4 2 9 0 7 7 1 8 2 9 3 8 4 3 9 6 8 1 9 8 5 3 1 7 3 8 1 9 9 1 2 7 3 9 2 0 0 5 9 4 1 4 5 8 7 9 4 9 6 0 6 3 4 7 1 6 6 0 5 0 1 0 9 2 9 3 6 3 7 6 3 3 5 5 8 8 2 0 1 1 8 2 9 3 4 9 0 0 2 2 2 5 5 9 4 8 6 8 9 2 8 0 9 1 4 4 5 4 0 8 0 7 7 6 5 4 2 4 7 7 9 9 2 3 9 2 1 8 1 8 2 1 4 9 7 5 7 7 4 3 3 1 6 6 9 3 5 3 5 1 2 8 4 5 1 4 5 0 3 5 6 7 8 8 2 7 3 5 7 6 8 9 8 9 6 8 4 3 1 6 1 6 7 5 7 8 9 2 3 1 9 1 3 1 7 6 2 9 5 3 5 0 4 5 1 9 7 3 3 8 2 7 3 3 2 4 7 4 4 1 9 8 3 9 7 4 3 7 6 1 2 5 3 3 5 1 6 2 9 3 5 5 0 9 7 1 5 7 8 7 1 2 2 2 4 0 7 2 9 6 7 9 3 9 9 9 2 8 3 4 3 5 7 0 8 0 0 7 1 8 9 0 6 2 4 1 9 4 2 6 1 1 6 6 2 4 6 1 8 6 6 7 1 0 8 5 6 5 6 5 3 9 5 4 2 6 2 1 8 6 8 0 5 2 2 7 5 3 2 4 8 0 5 2 7 3 8 5 8 5 2 4 3 8 4 2 3 6 9 5 4 3 2 0 6 1 1 8 5 1 6 8 8 1
rotate_matrix
{"difficulty": {"n": [25, 50], "num_rotations": [5, 15]}, "matrix": [[7, 5, 9, 2, 3, 3, 7, 2, 1, 5, 0, 3, 1, 7, 4, 2, 6, 7, 5, 9, 1, 6, 1, 4, 7, 0, 5, 7, 1], [0, 7, 1, 1, 3, 2, 6, 4, 5, 3, 5, 7, 4, 2, 1, 0, 9, 8, 5, 0, 2, 5, 3, 4, 5, 0, 8, 2, 8], [9, 8, 0, 9, 8, 5, 0, 6, 1, 0, 0, 3, 6, 7, 7, 3, 3, 5, 3, 8, 8, 3, 2, 7, 1, 8, 0, 5, 8], [2, 7, 9, 1, 2, 9, 7, 3, 1, 2, 4, 6, 4, 7, 3, 3, 4, 4, 3, 2, 1, 0, 9, 4, 7, 0, 1, 0, 6], [4, 5, 5, 6, 8, 4, 4, 8, 4, 4, 2, 5, 4, 2, 2, 3, 8, 1, 6, 9, 8, 5, 8, 2, 9, 7, 7, 8, 1], [7, 7, 2, 7, 7, 6, 8, 4, 9, 1, 2, 1, 6, 2, 5, 3, 3, 4, 7, 8, 1, 4, 7, 3, 0, 5, 6, 4, 5], [8, 1, 3, 3, 7, 3, 5, 5, 8, 7, 7, 5, 8, 1, 6, 9, 9, 9, 3, 6, 2, 1, 5, 3, 5, 3, 6, 2, 8], [0, 9, 0, 5, 4, 0, 1, 5, 7, 9, 4, 3, 8, 6, 3, 5, 2, 5, 6, 8, 9, 5, 7, 7, 5, 4, 8, 3, 1], [6, 2, 9, 5, 0, 7, 2, 3, 9, 2, 6, 1, 3, 8, 9, 7, 8, 0, 3, 4, 3, 4, 6, 2, 3, 3, 1, 5, 1], [9, 4, 9, 6, 8, 5, 5, 6, 4, 7, 1, 4, 5, 5, 2, 7, 1, 0, 9, 9, 2, 8, 1, 8, 9, 8, 6, 7, 6], [7, 5, 7, 5, 4, 9, 9, 1, 3, 6, 8, 1, 4, 9, 8, 4, 7, 2, 2, 5, 9, 2, 6, 3, 2, 2, 4, 2, 0], [5, 4, 5, 5, 5, 8, 1, 1, 4, 4, 4, 4, 5, 2, 4, 8, 7, 9, 9, 5, 9, 1, 1, 3, 6, 9, 2, 2, 2], [7, 1, 2, 7, 6, 0, 4, 4, 9, 7, 8, 3, 2, 8, 8, 0, 0, 3, 0, 2, 7, 5, 3, 7, 1, 9, 6, 5, 3], [9, 8, 6, 2, 7, 6, 8, 1, 7, 1, 8, 3, 0, 2, 5, 4, 9, 7, 1, 2, 7, 3, 4, 9, 5, 9, 6, 0, 4], [0, 5, 3, 6, 7, 4, 4, 2, 9, 9, 6, 2, 1, 5, 3, 9, 2, 2, 0, 2, 4, 5, 8, 1, 3, 3, 1, 8, 5], [2, 3, 1, 2, 5, 3, 5, 5, 4, 7, 9, 9, 1, 4, 6, 3, 4, 1, 5, 0, 2, 3, 6, 5, 3, 9, 1, 6, 9], [3, 0, 9, 2, 4, 3, 5, 2, 3, 0, 3, 7, 7, 2, 9, 2, 6, 9, 0, 0, 4, 9, 9, 4, 5, 7, 6, 8, 6], [9, 8, 7, 1, 6, 0, 5, 9, 4, 2, 8, 4, 4, 0, 2, 4, 6, 9, 6, 9, 5, 6, 8, 0, 2, 6, 2, 1, 3], [7, 5, 8, 5, 5, 3, 7, 9, 2, 0, 2, 8, 3, 2, 5, 2, 5, 1, 6, 4, 6, 6, 9, 5, 1, 9, 4, 2, 2], [4, 2, 8, 6, 1, 7, 2, 1, 7, 6, 6, 0, 7, 9, 9, 7, 0, 8, 1, 3, 7, 1, 8, 3, 6, 2, 9, 6, 4], [5, 8, 9, 4, 2, 7, 3, 0, 6, 2, 8, 9, 2, 6, 4, 8, 2, 3, 7, 9, 7, 3, 6, 5, 7, 7, 1, 2, 8], [9, 2, 2, 3, 2, 8, 3, 8, 7, 9, 6, 6, 3, 5, 2, 4, 5, 7, 4, 2, 0, 3, 7, 9, 3, 0, 4, 4, 3], [9, 0, 5, 3, 1, 3, 5, 0, 6, 7, 6, 5, 9, 1, 2, 8, 0, 1, 3, 8, 8, 4, 5, 2, 4, 4, 2, 5, 4], [8, 7, 4, 0, 2, 0, 6, 9, 7, 5, 9, 8, 8, 3, 6, 9, 4, 3, 6, 1, 0, 7, 3, 6, 7, 2, 6, 9, 2], [7, 5, 7, 5, 8, 8, 0, 2, 8, 0, 6, 3, 5, 9, 9, 1, 7, 5, 0, 1, 4, 7, 7, 7, 9, 2, 0, 3, 5], [8, 8, 5, 1, 4, 4, 5, 7, 5, 1, 0, 4, 7, 3, 5, 0, 8, 8, 6, 0, 5, 5, 2, 1, 3, 2, 9, 5, 8], [1, 1, 9, 6, 9, 2, 5, 3, 4, 5, 1, 0, 7, 0, 5, 2, 9, 9, 9, 2, 4, 7, 8, 3, 8, 1, 8, 6, 5], [7, 7, 4, 2, 2, 6, 7, 1, 8, 2, 3, 7, 4, 5, 0, 7, 7, 1, 4, 8, 4, 9, 8, 1, 9, 7, 1, 5, 8], [0, 3, 5, 5, 5, 4, 8, 1, 4, 0, 2, 9, 6, 1, 8, 5, 1, 8, 9, 8, 1, 4, 7, 9, 1, 8, 7, 6, 3]], "n": 29, "num_rotations": 9, "solution": [[0, 7, 1, 8, 7, 8, 9, 9, 5, 4, 7, 9, 3, 2, 0, 9, 7, 5, 7, 9, 6, 0, 8, 7, 4, 2, 9, 0, 7], [3, 7, 1, 8, 5, 7, 0, 2, 8, 2, 5, 8, 0, 3, 5, 8, 1, 4, 5, 4, 2, 9, 1, 7, 5, 7, 8, 7, 5], [5, 4, 9, 5, 7, 4, 5, 2, 9, 8, 8, 7, 9, 1, 3, 6, 2, 5, 7, 9, 9, 0, 3, 2, 5, 9, 0, 1, 9], [5, 2, 6, 1, 5, 0, 3, 3, 4, 6, 5, 1, 2, 2, 6, 2, 7, 5, 5, 6, 5, 5, 3, 7, 6, 1, 9, 1, 2], [5, 2, 9, 4, 8, 2, 1, 2, 2, 1, 5, 6, 4, 5, 7, 7, 6, 5, 4, 8, 0, 4, 7, 7, 8, 2, 8, 3, 3], [4, 6, 2, 4, 8, 0, 3, 8, 7, 7, 3, 0, 3, 3, 4, 6, 0, 8, 9, 5, 7, 0, 3, 6, 4, 9, 5, 2, 3], [8, 7, 5, 5, 0, 6, 5, 3, 3, 2, 7, 5, 5, 5, 4, 8, 4, 1, 9, 5, 2, 1, 5, 8, 4, 7, 0, 6, 7], [1, 1, 3, 7, 2, 9, 0, 8, 0, 1, 9, 9, 2, 5, 2, 1, 4, 1, 1, 6, 3, 5, 5, 4, 8, 3, 6, 4, 2], [4, 8, 4, 5, 8, 7, 6, 7, 6, 7, 2, 4, 3, 4, 9, 7, 9, 4, 3, 4, 9, 7, 8, 9, 4, 1, 1, 5, 1], [0, 2, 5, 1, 0, 5, 7, 9, 2, 6, 0, 2, 0, 7, 9, 1, 7, 4, 6, 7, 2, 9, 7, 1, 4, 2, 0, 3, 5], [2, 3, 1, 0, 6, 9, 6, 6, 8, 6, 2, 8, 3, 9, 6, 8, 8, 4, 8, 1, 6, 4, 7, 2, 2, 4, 0, 5, 0], [9, 7, 0, 4, 3, 8, 5, 6, 9, 0, 8, 4, 7, 9, 2, 3, 3, 4, 1, 4, 1, 3, 5, 1, 5, 6, 3, 7, 3], [6, 4, 7, 7, 5, 8, 9, 3, 2, 7, 3, 4, 7, 1, 1, 0, 2, 5, 4, 5, 3, 8, 8, 6, 4, 4, 6, 4, 1], [1, 5, 0, 3, 9, 3, 1, 5, 6, 9, 2, 0, 2, 4, 5, 2, 8, 2, 9, 5, 8, 6, 1, 2, 2, 7, 7, 2, 7], [8, 0, 5, 5, 9, 6, 2, 2, 4, 9, 5, 2, 9, 6, 3, 5, 8, 4, 8, 2, 9, 3, 6, 5, 2, 3, 7, 1, 4], [5, 7, 2, 0, 1, 9, 8, 4, 8, 7, 2, 4, 2, 3, 9, 4, 0, 8, 4, 7, 7, 5, 9, 3, 3, 3, 3, 0, 2], [1, 7, 9, 8, 7, 4, 0, 5, 2, 0, 5, 6, 6, 4, 2, 9, 0, 7, 7, 1, 8, 2, 9, 3, 8, 4, 3, 9, 6], [8, 1, 9, 8, 5, 3, 1, 7, 3, 8, 1, 9, 9, 1, 2, 7, 3, 9, 2, 0, 0, 5, 9, 4, 1, 4, 5, 8, 7], [9, 4, 9, 6, 0, 6, 3, 4, 7, 1, 6, 6, 0, 5, 0, 1, 0, 9, 2, 9, 3, 6, 3, 7, 6, 3, 3, 5, 5], [8, 8, 2, 0, 1, 1, 8, 2, 9, 3, 4, 9, 0, 0, 2, 2, 2, 5, 5, 9, 4, 8, 6, 8, 9, 2, 8, 0, 9], [1, 4, 4, 5, 4, 0, 8, 0, 7, 7, 6, 5, 4, 2, 4, 7, 7, 9, 9, 2, 3, 9, 2, 1, 8, 1, 8, 2, 1], [4, 9, 7, 5, 7, 7, 4, 3, 3, 1, 6, 6, 9, 3, 5, 3, 5, 1, 2, 8, 4, 5, 1, 4, 5, 0, 3, 5, 6], [7, 8, 8, 2, 7, 3, 5, 7, 6, 8, 9, 8, 9, 6, 8, 4, 3, 1, 6, 1, 6, 7, 5, 7, 8, 9, 2, 3, 1], [9, 1, 3, 1, 7, 6, 2, 9, 5, 3, 5, 0, 4, 5, 1, 9, 7, 3, 3, 8, 2, 7, 3, 3, 2, 4, 7, 4, 4], [1, 9, 8, 3, 9, 7, 4, 3, 7, 6, 1, 2, 5, 3, 3, 5, 1, 6, 2, 9, 3, 5, 5, 0, 9, 7, 1, 5, 7], [8, 7, 1, 2, 2, 2, 4, 0, 7, 2, 9, 6, 7, 9, 3, 9, 9, 9, 2, 8, 3, 4, 3, 5, 7, 0, 8, 0, 0], [7, 1, 8, 9, 0, 6, 2, 4, 1, 9, 4, 2, 6, 1, 1, 6, 6, 2, 4, 6, 1, 8, 6, 6, 7, 1, 0, 8, 5], [6, 5, 6, 5, 3, 9, 5, 4, 2, 6, 2, 1, 8, 6, 8, 0, 5, 2, 2, 7, 5, 3, 2, 4, 8, 0, 5, 2, 7], [3, 8, 5, 8, 5, 2, 4, 3, 8, 4, 2, 3, 6, 9, 5, 4, 3, 2, 0, 6, 1, 1, 8, 5, 1, 6, 8, 8, 1]], "source_dataset": "rotate_matrix", "source_index": 6}
Solve this cryptarithm: AWU TJKWQ WFF AMZ UZMMU TKJZU UFZU WAF + FUMFK -------- QWZUFK Each letter stands for a unique digit (0-9). No leading letter can be zero. Provide a comma separated mapping from letters to digits that satisfies the equation in your final answer. Output format: "A=1,B=2,C=3" (without quotes)
A=8,F=9,J=3,K=0,M=4,Q=2,T=7,U=1,W=5,Z=6
cryptarithm
{"difficulty": {"words": [5, 10]}, "digit_to_letter": {"0": "K", "1": "U", "2": "Q", "3": "J", "4": "M", "5": "W", "6": "Z", "7": "T", "8": "A", "9": "F"}, "letter_to_digit": {"A": 8, "F": 9, "J": 3, "K": 0, "M": 4, "Q": 2, "T": 7, "U": 1, "W": 5, "Z": 6}, "letters": ["Z", "F", "J", "W", "M", "Q", "A", "K", "T", "U"], "result_letters": "QWZUFK", "source_dataset": "cryptarithm", "source_index": 86, "sum_number": 256190, "word_values": [851, 73052, 599, 846, 16441, 70361, 1961, 589, 91490], "words_letters": ["AWU", "TJKWQ", "WFF", "AMZ", "UZMMU", "TKJZU", "UFZU", "WAF", "FUMFK"]}
An anagram is a word formed by rearranging the letters of a different word, using all the original letters exactly once. Your job is to group the anagrams together. You can return the answer in any order. The output is a list of lists of strings, where each outer list contains a group of anagrams, e.g. [["eat", "tea"], ["tan", "nat"]]. Group the following list of words into anagrams: ["gasolinic", "logicians", "oillet", "elliot", "selenitic", "insectile", "bono", "boon", "teinder", "redient", "nitered", "rainful", "unfrail", "rumbled", "drumble", "radishes", "airsheds", "encoop", "poonce", "retwining", "wintering", "thruputs", "upthrust", "vituper", "ruptive", "melton", "molten", "loment", "tolmen", "kylo", "yolk", "uspoken", "unspoke", "residenter", "tenderiser", "outbribed", "outribbed", "termital", "remittal", "coniology", "iconology", "thoraxes", "oxhearts", "tenners", "rennets", "tic", "cit", "sentition", "tenonitis"]
[["airsheds", "radishes"], ["bono", "boon"], ["cit", "tic"], ["coniology", "iconology"], ["drumble", "rumbled"], ["elliot", "oillet"], ["encoop", "poonce"], ["gasolinic", "logicians"], ["insectile", "selenitic"], ["kylo", "yolk"], ["loment", "melton", "molten", "tolmen"], ["nitered", "redient", "teinder"], ["outbribed", "outribbed"], ["oxhearts", "thoraxes"], ["rainful", "unfrail"], ["remittal", "termital"], ["rennets", "tenners"], ["residenter", "tenderiser"], ["retwining", "wintering"], ["ruptive", "vituper"], ["sentition", "tenonitis"], ["thruputs", "upthrust"], ["unspoke", "uspoken"]]
group_anagrams
{"anagram_groups": 23, "difficulty": {"anagram_groups": [10, 50], "words_per_group": [2, 5]}, "solution": [["airsheds", "radishes"], ["bono", "boon"], ["cit", "tic"], ["coniology", "iconology"], ["drumble", "rumbled"], ["elliot", "oillet"], ["encoop", "poonce"], ["gasolinic", "logicians"], ["insectile", "selenitic"], ["kylo", "yolk"], ["loment", "melton", "molten", "tolmen"], ["nitered", "redient", "teinder"], ["outbribed", "outribbed"], ["oxhearts", "thoraxes"], ["rainful", "unfrail"], ["remittal", "termital"], ["rennets", "tenners"], ["residenter", "tenderiser"], ["retwining", "wintering"], ["ruptive", "vituper"], ["sentition", "tenonitis"], ["thruputs", "upthrust"], ["unspoke", "uspoken"]], "source_dataset": "group_anagrams", "source_index": 99, "words": ["gasolinic", "logicians", "oillet", "elliot", "selenitic", "insectile", "bono", "boon", "teinder", "redient", "nitered", "rainful", "unfrail", "rumbled", "drumble", "radishes", "airsheds", "encoop", "poonce", "retwining", "wintering", "thruputs", "upthrust", "vituper", "ruptive", "melton", "molten", "loment", "tolmen", "kylo", "yolk", "uspoken", "unspoke", "residenter", "tenderiser", "outbribed", "outribbed", "termital", "remittal", "coniology", "iconology", "thoraxes", "oxhearts", "tenners", "rennets", "tic", "cit", "sentition", "tenonitis"]}
An anagram is a word formed by rearranging the letters of a different word, using all the original letters exactly once. Your job is to group the anagrams together. You can return the answer in any order. The output is a list of lists of strings, where each outer list contains a group of anagrams, e.g. [["eat", "tea"], ["tan", "nat"]]. Group the following list of words into anagrams: ["aesculin", "lunacies", "sidetrack", "trackside", "lisps", "pliss", "slips", "pythonism", "hypnotism", "interpolate", "triantelope", "thyroiodin", "iodothyrin", "tweest", "tweets", "already", "aleyard", "bereavers", "berreaves", "ticked", "detick", "discuses", "decussis", "disperser", "presiders", "hevi", "hive", "ethernets", "thestreen", "resectional", "secretional", "silently", "tinselly", "murly", "rumly", "nothous", "hontous", "houston", "preparation", "paraprotein", "defrock", "frocked", "parietals", "psalteria", "anteluminary", "unalimentary", "kylies", "skeily", "kileys", "demit", "timed", "tousche", "techous", "touches", "guides", "guised", "acronic", "caronic", "berinse", "besiren", "numbat", "tubman", "hemiterata", "metatheria", "tepid", "depit", "curacao", "curacoa", "engrained", "grenadine", "endearing", "hortense", "honester", "annuals", "unnasal", "remuda", "emraud", "retardent", "tetrander", "aviatrices", "vicariates", "freesia", "faeries", "dubitante", "intubated"]
[["acronic", "caronic"], ["aesculin", "lunacies"], ["aleyard", "already"], ["annuals", "unnasal"], ["anteluminary", "unalimentary"], ["aviatrices", "vicariates"], ["bereavers", "berreaves"], ["berinse", "besiren"], ["curacao", "curacoa"], ["decussis", "discuses"], ["defrock", "frocked"], ["demit", "timed"], ["depit", "tepid"], ["detick", "ticked"], ["disperser", "presiders"], ["dubitante", "intubated"], ["emraud", "remuda"], ["endearing", "engrained", "grenadine"], ["ethernets", "thestreen"], ["faeries", "freesia"], ["guides", "guised"], ["hemiterata", "metatheria"], ["hevi", "hive"], ["honester", "hortense"], ["hontous", "houston", "nothous"], ["hypnotism", "pythonism"], ["interpolate", "triantelope"], ["iodothyrin", "thyroiodin"], ["kileys", "kylies", "skeily"], ["lisps", "pliss", "slips"], ["murly", "rumly"], ["numbat", "tubman"], ["paraprotein", "preparation"], ["parietals", "psalteria"], ["resectional", "secretional"], ["retardent", "tetrander"], ["sidetrack", "trackside"], ["silently", "tinselly"], ["techous", "touches", "tousche"], ["tweest", "tweets"]]
group_anagrams
{"anagram_groups": 40, "difficulty": {"anagram_groups": [10, 50], "words_per_group": [2, 5]}, "solution": [["acronic", "caronic"], ["aesculin", "lunacies"], ["aleyard", "already"], ["annuals", "unnasal"], ["anteluminary", "unalimentary"], ["aviatrices", "vicariates"], ["bereavers", "berreaves"], ["berinse", "besiren"], ["curacao", "curacoa"], ["decussis", "discuses"], ["defrock", "frocked"], ["demit", "timed"], ["depit", "tepid"], ["detick", "ticked"], ["disperser", "presiders"], ["dubitante", "intubated"], ["emraud", "remuda"], ["endearing", "engrained", "grenadine"], ["ethernets", "thestreen"], ["faeries", "freesia"], ["guides", "guised"], ["hemiterata", "metatheria"], ["hevi", "hive"], ["honester", "hortense"], ["hontous", "houston", "nothous"], ["hypnotism", "pythonism"], ["interpolate", "triantelope"], ["iodothyrin", "thyroiodin"], ["kileys", "kylies", "skeily"], ["lisps", "pliss", "slips"], ["murly", "rumly"], ["numbat", "tubman"], ["paraprotein", "preparation"], ["parietals", "psalteria"], ["resectional", "secretional"], ["retardent", "tetrander"], ["sidetrack", "trackside"], ["silently", "tinselly"], ["techous", "touches", "tousche"], ["tweest", "tweets"]], "source_dataset": "group_anagrams", "source_index": 148, "words": ["aesculin", "lunacies", "sidetrack", "trackside", "lisps", "pliss", "slips", "pythonism", "hypnotism", "interpolate", "triantelope", "thyroiodin", "iodothyrin", "tweest", "tweets", "already", "aleyard", "bereavers", "berreaves", "ticked", "detick", "discuses", "decussis", "disperser", "presiders", "hevi", "hive", "ethernets", "thestreen", "resectional", "secretional", "silently", "tinselly", "murly", "rumly", "nothous", "hontous", "houston", "preparation", "paraprotein", "defrock", "frocked", "parietals", "psalteria", "anteluminary", "unalimentary", "kylies", "skeily", "kileys", "demit", "timed", "tousche", "techous", "touches", "guides", "guised", "acronic", "caronic", "berinse", "besiren", "numbat", "tubman", "hemiterata", "metatheria", "tepid", "depit", "curacao", "curacoa", "engrained", "grenadine", "endearing", "hortense", "honester", "annuals", "unnasal", "remuda", "emraud", "retardent", "tetrander", "aviatrices", "vicariates", "freesia", "faeries", "dubitante", "intubated"]}
Decrypt this Caesar cipher text: NKUWHPU LWUIAJPO IQOP XA LWEZ SEPDEJ ZWUO BKHHKSEJC AWYD ZWPA KJ SDEYD UKQ LNALWNA WNA HACWHHU NAMQENAZ PK UKQN LANEKZEY PWT NAPQNJO. Provide only the decrypted text as your final answer.
ROYALTY PAYMENTS MUST BE PAID WITHIN DAYS FOLLOWING EACH DATE ON WHICH YOU PREPARE ARE LEGALLY REQUIRED TO YOUR PERIODIC TAX RETURNS
caesar_cipher
{"cipher_text": "NKUWHPU LWUIAJPO IQOP XA LWEZ SEPDEJ ZWUO BKHHKSEJC AWYD ZWPA KJ SDEYD UKQ LNALWNA WNA HACWHHU NAMQENAZ PK UKQN LANEKZEY PWT NAPQNJO", "clear_text": "ROYALTY PAYMENTS MUST BE PAID WITHIN DAYS FOLLOWING EACH DATE ON WHICH YOU PREPARE ARE LEGALLY REQUIRED TO YOUR PERIODIC TAX RETURNS", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 22, "rotation": 22, "source_dataset": "caesar_cipher", "source_index": 29}
Solve this cryptarithm: MSSM APCSC MSGEG CHXAH SXM EASP ASHW SACH HASXG + EMA -------- WGCMMH Each letter stands for a unique digit (0-9). No leading letter can be zero. Provide a comma separated mapping from letters to digits that satisfies the equation in your final answer. Output format: "A=1,B=2,C=3" (without quotes)
A=7,C=1,E=2,G=0,H=9,M=8,P=4,S=5,W=3,X=6
cryptarithm
{"difficulty": {"words": [5, 10]}, "digit_to_letter": {"0": "G", "1": "C", "2": "E", "3": "W", "4": "P", "5": "S", "6": "X", "7": "A", "8": "M", "9": "H"}, "letter_to_digit": {"A": 7, "C": 1, "E": 2, "G": 0, "H": 9, "M": 8, "P": 4, "S": 5, "W": 3, "X": 6}, "letters": ["W", "G", "P", "M", "E", "X", "A", "C", "S", "H"], "result_letters": "WGCMMH", "source_dataset": "cryptarithm", "source_index": 76, "sum_number": 301889, "word_values": [8558, 74151, 85020, 19679, 568, 2754, 7593, 5719, 97560, 287], "words_letters": ["MSSM", "APCSC", "MSGEG", "CHXAH", "SXM", "EASP", "ASHW", "SACH", "HASXG", "EMA"]}
Solve this cryptarithm: TVQ SSGXA FFXIV AIA + XXI ------- XAXXF Each letter stands for a unique digit (0-9). No leading letter can be zero. Provide a comma separated mapping from letters to digits that satisfies the equation in your final answer. Output format: "A=1,B=2,C=3" (without quotes)
A=8,F=1,G=9,I=0,Q=2,S=4,T=7,V=3,X=5
cryptarithm
{"difficulty": {"words": [5, 10]}, "digit_to_letter": {"0": "I", "1": "F", "2": "Q", "3": "V", "4": "S", "5": "X", "7": "T", "8": "A", "9": "G"}, "letter_to_digit": {"A": 8, "F": 1, "G": 9, "I": 0, "Q": 2, "S": 4, "T": 7, "V": 3, "X": 5}, "letters": ["F", "X", "A", "S", "T", "G", "V", "I", "Q"], "result_letters": "XAXXF", "source_dataset": "cryptarithm", "source_index": 125, "sum_number": 58551, "word_values": [732, 44958, 11503, 808, 550], "words_letters": ["TVQ", "SSGXA", "FFXIV", "AIA", "XXI"]}
Solve this cryptarithm: QFCJJ OLR NQXOJ LCRN QOXQ + CQC -------- LQOCCL Each letter stands for a unique digit (0-9). No leading letter can be zero. Provide a comma separated mapping from letters to digits that satisfies the equation in your final answer. Output format: "A=1,B=2,C=3" (without quotes)
C=4,F=9,J=7,L=1,N=8,O=2,Q=5,R=0,X=6
cryptarithm
{"difficulty": {"words": [5, 10]}, "digit_to_letter": {"0": "R", "1": "L", "2": "O", "4": "C", "5": "Q", "6": "X", "7": "J", "8": "N", "9": "F"}, "letter_to_digit": {"C": 4, "F": 9, "J": 7, "L": 1, "N": 8, "O": 2, "Q": 5, "R": 0, "X": 6}, "letters": ["R", "O", "X", "Q", "C", "L", "J", "N", "F"], "result_letters": "LQOCCL", "source_dataset": "cryptarithm", "source_index": 141, "sum_number": 152441, "word_values": [59477, 210, 85627, 1408, 5265, 454], "words_letters": ["QFCJJ", "OLR", "NQXOJ", "LCRN", "QOXQ", "CQC"]}
You are a police officer. A maniac has planted a bomb next to a public fountain. To defuse the bomb, you must solve a puzzle. The puzzle is solved when you fill any of the available jugs with the target amount of water. You have three move types: 'fill', 'empty' and 'pour'. To fill Jug A, you 'fill A'. To empty Jug B, you 'empty B'. To pour the contents of Jug A into Jug B, you 'pour A->B'. All jugs are empty to begin with. The empty jugs hold this many litres of water: A:13, B:13, C:13, D:11 And your target is: 8 litres. How do you defuse the bomb? Reply as a JSON-parsable list of moves which result in any of the jugs being filled with the target amount.
["No solution"]
jugs
{"difficulty": {"difficulty": 10, "num_jugs": 4}, "puzzle": {"jug_capacities": [13, 13, 13, 11], "min_moves": 14, "target": 8}, "source_dataset": "jugs", "source_index": 11}
Given a square matrix, your job is to rotate it clockwise. Your output should be a matrix in the same format as the input. Rotate the matrix below by 540 degrees clockwise: 3 3 9 7 1 5 3 3 4 5 5 2 1 5 4 2 4 4 4 3 3 8 8 1 6 3 3 0 1 0 7 6 6 9 6 6 8 6 1 0 0 6 5 4 9 3 2 6 6 9 5 7 4 5 6 4 4 6 4 8 8 5 0 5 8 3 8 3 5 5 8 4 2 8 9 1 0 5 3 9 1 3 2 6 0 9 2 7 1 7 0 1 9 3 2 8 5 5 3 7 3 8 8 9 9 9 2 5 2 6 0 6 2 7 2 5 7 4 0 7 7 6 3 5 0 0 8 4 1 6 4 7 2 8 4 8 2 1 2 0 2 3 0 2 8 8 0 8 5 3 1 5 6 1 1 2 4 6 4 7 7 8 4 4 9 6 4 6 9 5 3 3 1 6 5 9 5 4 2 8 4 3 4 1 6 2 4 8 9 8 8 0 8 3 8 0 2 3 0 4 1 6 6 3 7 6 6 8 4 8 7 1 6 0 0 1 9 0 2 4 0 2 6 3 6 8 8 0 1 2 9 1 4 8 6 1 6 2 0 3 7 2 8 9 3 7 2 5 0 8 0 2 1 5 6 4 7 9 5 3 5 8 2 7 3 7 8 7 3 1 7 0 8 0 3 0 2 7 6 2 6 2 7 4 2 6 5 9 5 2 9 2 8 7 4 8 5 7 1 6 3 0 6 5 9 3 1 2 4 4 1 6 1 2 3 8 7 6 7 5 1 2 7 8 7 4 4 6 1 7 3 8 5 3 1 1 5 4 4 8 9 0 2 4 8 8 9 9 0 9 9 1 7 4 5 4 5 8 2 9 4 8 6 5 3 5 7 9 1 1 9 6 1 7 4 4 7 2 9 8 9 1 2 1 0 5 3 2 6 9 8 3 1 4 7 9 8 0 2 9 4 7 6 5 8 1 7 8 8 0 1 4 1 7 9 8 5 0 8 1 8 7 4 8 2 6 3 6 6 7 2 5 3 5 5 0 8 9 6 3 8 7 6 1 7 4 5 8 1 1 0 0 2 2 0 9 7 1 0 1 3 9 8 1 0 0 3 4 9 7 0 6 6 0 2 1 5 1 7 4 5 1 5 7 5 5 2 0 4 5 3 2 5 5 5 9 9 0 1 0 2 3 0 1 1 3 8 6 6 2 0 4 1 4 9 5 5 1 0 6 8 3 6 9 1 1 8 1 0 2 7 5 3 6 2 2 2 4 5 2 7 5 6 8 3 2 0 8 3 9 2 1 8 1 9 6 7 1 2 3 2 2 7 3 6 9 9 2 1 6 8 5 9 6 1 2 0 0 8 6 0 0 6 1 1 0 7 7 1 1 3 4 7 5 8 8 0 5 4 6 9 0 4 8 2 7 8 1 8 1 4 8 9 0 4 8 5 9 0 3 5 2 1 4 2 2 0 5 3 9 1 5 5 4 6 7 0 8 8 8 9 0 2 4 5 0 1 9 2 7 0 7 3 3 5 0 3 7 7 2 6 7 4 3 7 0 4 3 6 8 0 0 3 8 8 3 0 2 1 8 4 5 0 8 3 3 5 2 9 4 0 4 7 5 4 8 3 6 1 3 0 9 5 4 8 8 8 5 3 4 7 6 1 9 5 2 3 2 2 7 9 6 2 1 2 4 7 5 6 5 0 5 8 8 0 6 4 2 6 7 7 4 0 5 3 7 4 6 0 0 4 3 4 1 2 0 6 9 0 1 6 4 7 4 5 4 7 0 0 5 1 7 6 3 2 5 0 6 1 3 1 2 2 6 7 7 9 4 5 9 6 5 2 3 8 3 9 5 4 7 4 0 2 1 5 9 6 1 8 9 1 9 9 9 0 3 4 3 0 7 5 2 5 3 9 3 5 1 0 7 5 5 1 6 4 0 8 9 8 8 7 9 3 1 3 9 8 9 6 1 1 2 5 4 6 6 5 5 2 8 2 1 3 5 2 8 0 7 3 4 1 8 6 0 7 1 0 1 1 2 1 4 8 0 3 8 4 2 0 7 5 3 9 4 6 6 8 0 5 0 4 8 5 7 5 9 9 3 1 7 0 7 3 0 2 7 0 8 9 1 2 1 7 0 4 1 9 7 6 1 6 2 4 7 1 9 1 5 9 9 5 4 5 9 9 7 9 5 9 3 0 9 0 2 5 6 7 8 0 2 9 3 0 9 8 6 2 3 0 0 2 3 9 6 2 9 4 6 2 1 9 4 4 9 8 8 2 0 2 5 0 8 9 0 3 6 0 6 6 1 2 5 1 2 8 9 1 5 3 2 9 5 4 8 2 9 5 8 2 2 3 6 1 2 4 8 5 7 1 1 4 8 3 0 3 5 6 8 1 2 8 0 9 2 3 9 4 3 0 2 9 2 5 8 6 5 4 4 2 7 3 3 9 6 7 0 3 3 6 2 4 4 5 9 2 7 5 6 5 6 9 5 9 7 7 8 4 3 2 1 7 3 8 4 6 6 9 3 5 7 1 1 8 4 9 3 2 3 5 9 7 3 2 8 1 4 6 0 5 2 7 0 1 5 4 1 3 7 6 9 1 9 9 5 9 8 1 1 0 9 8 7 1 1 8 7 0 1 9 9 0 1 2 7 9 7 2 4 8 0 8 4 3 3 9 0 5 4 9 1 6 1 3 7 6 8 7 9 4 6 0 6 2 3 2 8 6 5 3 0 0 6 3 6 5 9 5 2 5 7 6 2 5 5 5 6 6 0 3 9 7 1 5 4 8 4 9 6 6 6 6 3 7 1 0 6 1 4 6 2 8 4 1 2 9 1 8 2 2 2 2 3 8 2 3 4 7 1 5 9 1 1 6 7 1 1 6 5 8 7 8 0 0 2 5 0 8 7 8 8 3 4 7 0 9 1 7 9 8 6 4 8 2 7 5 4 4 4 8 0 0 2 1 8 7 0 1 1 7 0 1 6 2 8 7 2 1 3 9 6 7 3 9 9 4 5 5 6 8 1 8 9 0 3 9 7 1 2 8 0 1 5 1 7 6 7 2 0 4 9 6 1 7 8 0 5 0 3 3 2 5 4 1 2 4 3 3 9 9 1 1 2 9 1 6 6 7 6 3 4 0 6 8 4 6 2 2 3 4 4 9 1 8 9 1 2 6 7 3 2 0 1 6 9 9 7 9 0 5 1 4 9 4 6 2 9 0 8 8 9 2 4 8 5 3 6 2 9 0 0 8 3 1 8 0 6 2 4 0 0 6 0 4 8 3 3 8 4 8 5 4 7 7 8 2 4 8 0 6 8 5 4 2 7 9 5 3 6 0 0 2 8 2 1 2 9 7 9 9 5 3 9 7 4 7 0 6 4 9 5 3 1 4 8 1 1 6 0 8 1 2 5 9 5 6 7 4 7 8 8 1 1 6 8 6 5 9 8 7 7 1 4 9 0 8 8 4 4 7 6 4 2 6 5 1 9 0 9 2 6 5 4 6 2 8 8 8 1 1 9 0 2 6 4 8 8 2 0 0 3 2 8 7 8 4 8 5 6 1 6 5 3 9 1 8 8 0 7 1 1 3 7 4 3 0 7 2 2 3 7 8 7 0 0 5 7 1 6 6 1 1 9 8 7 6 1 4 9 8 8 7 8 6 2 1 9 6 1 6 1 8 7 4 3 4 8 4 7 0 5 9 0 2 2 4 3 8 9 1 5 6 7 4 4 2 3 0 9 9 0 3 7 8 2 8 8 3 2 7 9 7 6 7 6 6 1 5 9 8 4 2 6 7 0 4 4 7 7 6 0 8 4 6 3 9 6 5 6 5 4 1
1 4 5 6 5 6 9 3 6 4 8 0 6 7 7 4 4 0 7 6 2 4 8 9 5 1 6 6 7 6 7 9 7 2 3 8 8 2 8 7 3 0 9 9 0 3 2 4 4 7 6 5 1 9 8 3 4 2 2 0 9 5 0 7 4 8 4 3 4 7 8 1 6 1 6 9 1 2 6 8 7 8 8 9 4 1 6 7 8 9 1 1 6 6 1 7 5 0 0 7 8 7 3 2 2 7 0 3 4 7 3 1 1 7 0 8 8 1 9 3 5 6 1 6 5 8 4 8 7 8 2 3 0 0 2 8 8 4 6 2 0 9 1 1 8 8 8 2 6 4 5 6 2 9 0 9 1 5 6 2 4 6 7 4 4 8 8 0 9 4 1 7 7 8 9 5 6 8 6 1 1 8 8 7 4 7 6 5 9 5 2 1 8 0 6 1 1 8 4 1 3 5 9 4 6 0 7 4 7 9 3 5 9 9 7 9 2 1 2 8 2 0 0 6 3 5 9 7 2 4 5 8 6 0 8 4 2 8 7 7 4 5 8 4 8 3 3 8 4 0 6 0 0 4 2 6 0 8 1 3 8 0 0 9 2 6 3 5 8 4 2 9 8 8 0 9 2 6 4 9 4 1 5 0 9 7 9 9 6 1 0 2 3 7 6 2 1 9 8 1 9 4 4 3 2 2 6 4 8 6 0 4 3 6 7 6 6 1 9 2 1 1 9 9 3 3 4 2 1 4 5 2 3 3 0 5 0 8 7 1 6 9 4 0 2 7 6 7 1 5 1 0 8 2 1 7 9 3 0 9 8 1 8 6 5 5 4 9 9 3 7 6 9 3 1 2 7 8 2 6 1 0 7 1 1 0 7 8 1 2 0 0 8 4 4 4 5 7 2 8 4 6 8 9 7 1 9 0 7 4 3 8 8 7 8 0 5 2 0 0 8 7 8 5 6 1 1 7 6 1 1 9 5 1 7 4 3 2 8 3 2 2 2 2 8 1 9 2 1 4 8 2 6 4 1 6 0 1 7 3 6 6 6 6 9 4 8 4 5 1 7 9 3 0 6 6 5 5 5 2 6 7 5 2 5 9 5 6 3 6 0 0 3 5 6 8 2 3 2 6 0 6 4 9 7 8 6 7 3 1 6 1 9 4 5 0 9 3 3 4 8 0 8 4 2 7 9 7 2 1 0 9 9 1 0 7 8 1 1 7 8 9 0 1 1 8 9 5 9 9 1 9 6 7 3 1 4 5 1 0 7 2 5 0 6 4 1 8 2 3 7 9 5 3 2 3 9 4 8 1 1 7 5 3 9 6 6 4 8 3 7 1 2 3 4 8 7 7 9 5 9 6 5 6 5 7 2 9 5 4 4 2 6 3 3 0 7 6 9 3 3 7 2 4 4 5 6 8 5 2 9 2 0 3 4 9 3 2 9 0 8 2 1 8 6 5 3 0 3 8 4 1 1 7 5 8 4 2 1 6 3 2 2 8 5 9 2 8 4 5 9 2 3 5 1 9 8 2 1 5 2 1 6 6 0 6 3 0 9 8 0 5 2 0 2 8 8 9 4 4 9 1 2 6 4 9 2 6 9 3 2 0 0 3 2 6 8 9 0 3 9 2 0 8 7 6 5 2 0 9 0 3 9 5 9 7 9 9 5 4 5 9 9 5 1 9 1 7 4 2 6 1 6 7 9 1 4 0 7 1 2 1 9 8 0 7 2 0 3 7 0 7 1 3 9 9 5 7 5 8 4 0 5 0 8 6 6 4 9 3 5 7 0 2 4 8 3 0 8 4 1 2 1 1 0 1 7 0 6 8 1 4 3 7 0 8 2 5 3 1 2 8 2 5 5 6 6 4 5 2 1 1 6 9 8 9 3 1 3 9 7 8 8 9 8 0 4 6 1 5 5 7 0 1 5 3 9 3 5 2 5 7 0 3 4 3 0 9 9 9 1 9 8 1 6 9 5 1 2 0 4 7 4 5 9 3 8 3 2 5 6 9 5 4 9 7 7 6 2 2 1 3 1 6 0 5 2 3 6 7 1 5 0 0 7 4 5 4 7 4 6 1 0 9 6 0 2 1 4 3 4 0 0 6 4 7 3 5 0 4 7 7 6 2 4 6 0 8 8 5 0 5 6 5 7 4 2 1 2 6 9 7 2 2 3 2 5 9 1 6 7 4 3 5 8 8 8 4 5 9 0 3 1 6 3 8 4 5 7 4 0 4 9 2 5 3 3 8 0 5 4 8 1 2 0 3 8 8 3 0 0 8 6 3 4 0 7 3 4 7 6 2 7 7 3 0 5 3 3 7 0 7 2 9 1 0 5 4 2 0 9 8 8 8 0 7 6 4 5 5 1 9 3 5 0 2 2 4 1 2 5 3 0 9 5 8 4 0 9 8 4 1 8 1 8 7 2 8 4 0 9 6 4 5 0 8 8 5 7 4 3 1 1 7 7 0 1 1 6 0 0 6 8 0 0 2 1 6 9 5 8 6 1 2 9 9 6 3 7 2 2 3 2 1 7 6 9 1 8 1 2 9 3 8 0 2 3 8 6 5 7 2 5 4 2 2 2 6 3 5 7 2 0 1 8 1 1 9 6 3 8 6 0 1 5 5 9 4 1 4 0 2 6 6 8 3 1 1 0 3 2 0 1 0 9 9 5 5 5 2 3 5 4 0 2 5 5 7 5 1 5 4 7 1 5 1 2 0 6 6 0 7 9 4 3 0 0 1 8 9 3 1 0 1 7 9 0 2 2 0 0 1 1 8 5 4 7 1 6 7 8 3 6 9 8 0 5 5 3 5 2 7 6 6 3 6 2 8 4 7 8 1 8 0 5 8 9 7 1 4 1 0 8 8 7 1 8 5 6 7 4 9 2 0 8 9 7 4 1 3 8 9 6 2 3 5 0 1 2 1 9 8 9 2 7 4 4 7 1 6 9 1 1 9 7 5 3 5 6 8 4 9 2 8 5 4 5 4 7 1 9 9 0 9 9 8 8 4 2 0 9 8 4 4 5 1 1 3 5 8 3 7 1 6 4 4 7 8 7 2 1 5 7 6 7 8 3 2 1 6 1 4 4 2 1 3 9 5 6 0 3 6 1 7 5 8 4 7 8 2 9 2 5 9 5 6 2 4 7 2 6 2 6 7 2 0 3 0 8 0 7 1 3 7 8 7 3 7 2 8 5 3 5 9 7 4 6 5 1 2 0 8 0 5 2 7 3 9 8 2 7 3 0 2 6 1 6 8 4 1 9 2 1 0 8 8 6 3 6 2 0 4 2 0 9 1 0 0 6 1 7 8 4 8 6 6 7 3 6 6 1 4 0 3 2 0 8 3 8 0 8 8 9 8 4 2 6 1 4 3 4 8 2 4 5 9 5 6 1 3 3 5 9 6 4 6 9 4 4 8 7 7 4 6 4 2 1 1 6 5 1 3 5 8 0 8 8 2 0 3 2 0 2 1 2 8 4 8 2 7 4 6 1 4 8 0 0 5 3 6 7 7 0 4 7 5 2 7 2 6 0 6 2 5 2 9 9 9 8 8 3 7 3 5 5 8 2 3 9 1 0 7 1 7 2 9 0 6 2 3 1 9 3 5 0 1 9 8 2 4 8 5 5 3 8 3 8 5 0 5 8 8 4 6 4 4 6 5 4 7 5 9 6 6 2 3 9 4 5 6 0 0 1 6 8 6 6 9 6 6 7 0 1 0 3 3 6 1 8 8 3 3 4 4 4 2 4 5 1 2 5 5 4 3 3 5 1 7 9 3 3
rotate_matrix
{"difficulty": {"n": [25, 50], "num_rotations": [5, 15]}, "matrix": [[3, 3, 9, 7, 1, 5, 3, 3, 4, 5, 5, 2, 1, 5, 4, 2, 4, 4, 4, 3, 3, 8, 8, 1, 6, 3, 3, 0, 1, 0, 7, 6, 6, 9, 6, 6, 8, 6, 1, 0, 0], [6, 5, 4, 9, 3, 2, 6, 6, 9, 5, 7, 4, 5, 6, 4, 4, 6, 4, 8, 8, 5, 0, 5, 8, 3, 8, 3, 5, 5, 8, 4, 2, 8, 9, 1, 0, 5, 3, 9, 1, 3], [2, 6, 0, 9, 2, 7, 1, 7, 0, 1, 9, 3, 2, 8, 5, 5, 3, 7, 3, 8, 8, 9, 9, 9, 2, 5, 2, 6, 0, 6, 2, 7, 2, 5, 7, 4, 0, 7, 7, 6, 3], [5, 0, 0, 8, 4, 1, 6, 4, 7, 2, 8, 4, 8, 2, 1, 2, 0, 2, 3, 0, 2, 8, 8, 0, 8, 5, 3, 1, 5, 6, 1, 1, 2, 4, 6, 4, 7, 7, 8, 4, 4], [9, 6, 4, 6, 9, 5, 3, 3, 1, 6, 5, 9, 5, 4, 2, 8, 4, 3, 4, 1, 6, 2, 4, 8, 9, 8, 8, 0, 8, 3, 8, 0, 2, 3, 0, 4, 1, 6, 6, 3, 7], [6, 6, 8, 4, 8, 7, 1, 6, 0, 0, 1, 9, 0, 2, 4, 0, 2, 6, 3, 6, 8, 8, 0, 1, 2, 9, 1, 4, 8, 6, 1, 6, 2, 0, 3, 7, 2, 8, 9, 3, 7], [2, 5, 0, 8, 0, 2, 1, 5, 6, 4, 7, 9, 5, 3, 5, 8, 2, 7, 3, 7, 8, 7, 3, 1, 7, 0, 8, 0, 3, 0, 2, 7, 6, 2, 6, 2, 7, 4, 2, 6, 5], [9, 5, 2, 9, 2, 8, 7, 4, 8, 5, 7, 1, 6, 3, 0, 6, 5, 9, 3, 1, 2, 4, 4, 1, 6, 1, 2, 3, 8, 7, 6, 7, 5, 1, 2, 7, 8, 7, 4, 4, 6], [1, 7, 3, 8, 5, 3, 1, 1, 5, 4, 4, 8, 9, 0, 2, 4, 8, 8, 9, 9, 0, 9, 9, 1, 7, 4, 5, 4, 5, 8, 2, 9, 4, 8, 6, 5, 3, 5, 7, 9, 1], [1, 9, 6, 1, 7, 4, 4, 7, 2, 9, 8, 9, 1, 2, 1, 0, 5, 3, 2, 6, 9, 8, 3, 1, 4, 7, 9, 8, 0, 2, 9, 4, 7, 6, 5, 8, 1, 7, 8, 8, 0], [1, 4, 1, 7, 9, 8, 5, 0, 8, 1, 8, 7, 4, 8, 2, 6, 3, 6, 6, 7, 2, 5, 3, 5, 5, 0, 8, 9, 6, 3, 8, 7, 6, 1, 7, 4, 5, 8, 1, 1, 0], [0, 2, 2, 0, 9, 7, 1, 0, 1, 3, 9, 8, 1, 0, 0, 3, 4, 9, 7, 0, 6, 6, 0, 2, 1, 5, 1, 7, 4, 5, 1, 5, 7, 5, 5, 2, 0, 4, 5, 3, 2], [5, 5, 5, 9, 9, 0, 1, 0, 2, 3, 0, 1, 1, 3, 8, 6, 6, 2, 0, 4, 1, 4, 9, 5, 5, 1, 0, 6, 8, 3, 6, 9, 1, 1, 8, 1, 0, 2, 7, 5, 3], [6, 2, 2, 2, 4, 5, 2, 7, 5, 6, 8, 3, 2, 0, 8, 3, 9, 2, 1, 8, 1, 9, 6, 7, 1, 2, 3, 2, 2, 7, 3, 6, 9, 9, 2, 1, 6, 8, 5, 9, 6], [1, 2, 0, 0, 8, 6, 0, 0, 6, 1, 1, 0, 7, 7, 1, 1, 3, 4, 7, 5, 8, 8, 0, 5, 4, 6, 9, 0, 4, 8, 2, 7, 8, 1, 8, 1, 4, 8, 9, 0, 4], [8, 5, 9, 0, 3, 5, 2, 1, 4, 2, 2, 0, 5, 3, 9, 1, 5, 5, 4, 6, 7, 0, 8, 8, 8, 9, 0, 2, 4, 5, 0, 1, 9, 2, 7, 0, 7, 3, 3, 5, 0], [3, 7, 7, 2, 6, 7, 4, 3, 7, 0, 4, 3, 6, 8, 0, 0, 3, 8, 8, 3, 0, 2, 1, 8, 4, 5, 0, 8, 3, 3, 5, 2, 9, 4, 0, 4, 7, 5, 4, 8, 3], [6, 1, 3, 0, 9, 5, 4, 8, 8, 8, 5, 3, 4, 7, 6, 1, 9, 5, 2, 3, 2, 2, 7, 9, 6, 2, 1, 2, 4, 7, 5, 6, 5, 0, 5, 8, 8, 0, 6, 4, 2], [6, 7, 7, 4, 0, 5, 3, 7, 4, 6, 0, 0, 4, 3, 4, 1, 2, 0, 6, 9, 0, 1, 6, 4, 7, 4, 5, 4, 7, 0, 0, 5, 1, 7, 6, 3, 2, 5, 0, 6, 1], [3, 1, 2, 2, 6, 7, 7, 9, 4, 5, 9, 6, 5, 2, 3, 8, 3, 9, 5, 4, 7, 4, 0, 2, 1, 5, 9, 6, 1, 8, 9, 1, 9, 9, 9, 0, 3, 4, 3, 0, 7], [5, 2, 5, 3, 9, 3, 5, 1, 0, 7, 5, 5, 1, 6, 4, 0, 8, 9, 8, 8, 7, 9, 3, 1, 3, 9, 8, 9, 6, 1, 1, 2, 5, 4, 6, 6, 5, 5, 2, 8, 2], [1, 3, 5, 2, 8, 0, 7, 3, 4, 1, 8, 6, 0, 7, 1, 0, 1, 1, 2, 1, 4, 8, 0, 3, 8, 4, 2, 0, 7, 5, 3, 9, 4, 6, 6, 8, 0, 5, 0, 4, 8], [5, 7, 5, 9, 9, 3, 1, 7, 0, 7, 3, 0, 2, 7, 0, 8, 9, 1, 2, 1, 7, 0, 4, 1, 9, 7, 6, 1, 6, 2, 4, 7, 1, 9, 1, 5, 9, 9, 5, 4, 5], [9, 9, 7, 9, 5, 9, 3, 0, 9, 0, 2, 5, 6, 7, 8, 0, 2, 9, 3, 0, 9, 8, 6, 2, 3, 0, 0, 2, 3, 9, 6, 2, 9, 4, 6, 2, 1, 9, 4, 4, 9], [8, 8, 2, 0, 2, 5, 0, 8, 9, 0, 3, 6, 0, 6, 6, 1, 2, 5, 1, 2, 8, 9, 1, 5, 3, 2, 9, 5, 4, 8, 2, 9, 5, 8, 2, 2, 3, 6, 1, 2, 4], [8, 5, 7, 1, 1, 4, 8, 3, 0, 3, 5, 6, 8, 1, 2, 8, 0, 9, 2, 3, 9, 4, 3, 0, 2, 9, 2, 5, 8, 6, 5, 4, 4, 2, 7, 3, 3, 9, 6, 7, 0], [3, 3, 6, 2, 4, 4, 5, 9, 2, 7, 5, 6, 5, 6, 9, 5, 9, 7, 7, 8, 4, 3, 2, 1, 7, 3, 8, 4, 6, 6, 9, 3, 5, 7, 1, 1, 8, 4, 9, 3, 2], [3, 5, 9, 7, 3, 2, 8, 1, 4, 6, 0, 5, 2, 7, 0, 1, 5, 4, 1, 3, 7, 6, 9, 1, 9, 9, 5, 9, 8, 1, 1, 0, 9, 8, 7, 1, 1, 8, 7, 0, 1], [9, 9, 0, 1, 2, 7, 9, 7, 2, 4, 8, 0, 8, 4, 3, 3, 9, 0, 5, 4, 9, 1, 6, 1, 3, 7, 6, 8, 7, 9, 4, 6, 0, 6, 2, 3, 2, 8, 6, 5, 3], [0, 0, 6, 3, 6, 5, 9, 5, 2, 5, 7, 6, 2, 5, 5, 5, 6, 6, 0, 3, 9, 7, 1, 5, 4, 8, 4, 9, 6, 6, 6, 6, 3, 7, 1, 0, 6, 1, 4, 6, 2], [8, 4, 1, 2, 9, 1, 8, 2, 2, 2, 2, 3, 8, 2, 3, 4, 7, 1, 5, 9, 1, 1, 6, 7, 1, 1, 6, 5, 8, 7, 8, 0, 0, 2, 5, 0, 8, 7, 8, 8, 3], [4, 7, 0, 9, 1, 7, 9, 8, 6, 4, 8, 2, 7, 5, 4, 4, 4, 8, 0, 0, 2, 1, 8, 7, 0, 1, 1, 7, 0, 1, 6, 2, 8, 7, 2, 1, 3, 9, 6, 7, 3], [9, 9, 4, 5, 5, 6, 8, 1, 8, 9, 0, 3, 9, 7, 1, 2, 8, 0, 1, 5, 1, 7, 6, 7, 2, 0, 4, 9, 6, 1, 7, 8, 0, 5, 0, 3, 3, 2, 5, 4, 1], [2, 4, 3, 3, 9, 9, 1, 1, 2, 9, 1, 6, 6, 7, 6, 3, 4, 0, 6, 8, 4, 6, 2, 2, 3, 4, 4, 9, 1, 8, 9, 1, 2, 6, 7, 3, 2, 0, 1, 6, 9], [9, 7, 9, 0, 5, 1, 4, 9, 4, 6, 2, 9, 0, 8, 8, 9, 2, 4, 8, 5, 3, 6, 2, 9, 0, 0, 8, 3, 1, 8, 0, 6, 2, 4, 0, 0, 6, 0, 4, 8, 3], [3, 8, 4, 8, 5, 4, 7, 7, 8, 2, 4, 8, 0, 6, 8, 5, 4, 2, 7, 9, 5, 3, 6, 0, 0, 2, 8, 2, 1, 2, 9, 7, 9, 9, 5, 3, 9, 7, 4, 7, 0], [6, 4, 9, 5, 3, 1, 4, 8, 1, 1, 6, 0, 8, 1, 2, 5, 9, 5, 6, 7, 4, 7, 8, 8, 1, 1, 6, 8, 6, 5, 9, 8, 7, 7, 1, 4, 9, 0, 8, 8, 4], [4, 7, 6, 4, 2, 6, 5, 1, 9, 0, 9, 2, 6, 5, 4, 6, 2, 8, 8, 8, 1, 1, 9, 0, 2, 6, 4, 8, 8, 2, 0, 0, 3, 2, 8, 7, 8, 4, 8, 5, 6], [1, 6, 5, 3, 9, 1, 8, 8, 0, 7, 1, 1, 3, 7, 4, 3, 0, 7, 2, 2, 3, 7, 8, 7, 0, 0, 5, 7, 1, 6, 6, 1, 1, 9, 8, 7, 6, 1, 4, 9, 8], [8, 7, 8, 6, 2, 1, 9, 6, 1, 6, 1, 8, 7, 4, 3, 4, 8, 4, 7, 0, 5, 9, 0, 2, 2, 4, 3, 8, 9, 1, 5, 6, 7, 4, 4, 2, 3, 0, 9, 9, 0], [3, 7, 8, 2, 8, 8, 3, 2, 7, 9, 7, 6, 7, 6, 6, 1, 5, 9, 8, 4, 2, 6, 7, 0, 4, 4, 7, 7, 6, 0, 8, 4, 6, 3, 9, 6, 5, 6, 5, 4, 1]], "n": 41, "num_rotations": 6, "solution": [[1, 4, 5, 6, 5, 6, 9, 3, 6, 4, 8, 0, 6, 7, 7, 4, 4, 0, 7, 6, 2, 4, 8, 9, 5, 1, 6, 6, 7, 6, 7, 9, 7, 2, 3, 8, 8, 2, 8, 7, 3], [0, 9, 9, 0, 3, 2, 4, 4, 7, 6, 5, 1, 9, 8, 3, 4, 2, 2, 0, 9, 5, 0, 7, 4, 8, 4, 3, 4, 7, 8, 1, 6, 1, 6, 9, 1, 2, 6, 8, 7, 8], [8, 9, 4, 1, 6, 7, 8, 9, 1, 1, 6, 6, 1, 7, 5, 0, 0, 7, 8, 7, 3, 2, 2, 7, 0, 3, 4, 7, 3, 1, 1, 7, 0, 8, 8, 1, 9, 3, 5, 6, 1], [6, 5, 8, 4, 8, 7, 8, 2, 3, 0, 0, 2, 8, 8, 4, 6, 2, 0, 9, 1, 1, 8, 8, 8, 2, 6, 4, 5, 6, 2, 9, 0, 9, 1, 5, 6, 2, 4, 6, 7, 4], [4, 8, 8, 0, 9, 4, 1, 7, 7, 8, 9, 5, 6, 8, 6, 1, 1, 8, 8, 7, 4, 7, 6, 5, 9, 5, 2, 1, 8, 0, 6, 1, 1, 8, 4, 1, 3, 5, 9, 4, 6], [0, 7, 4, 7, 9, 3, 5, 9, 9, 7, 9, 2, 1, 2, 8, 2, 0, 0, 6, 3, 5, 9, 7, 2, 4, 5, 8, 6, 0, 8, 4, 2, 8, 7, 7, 4, 5, 8, 4, 8, 3], [3, 8, 4, 0, 6, 0, 0, 4, 2, 6, 0, 8, 1, 3, 8, 0, 0, 9, 2, 6, 3, 5, 8, 4, 2, 9, 8, 8, 0, 9, 2, 6, 4, 9, 4, 1, 5, 0, 9, 7, 9], [9, 6, 1, 0, 2, 3, 7, 6, 2, 1, 9, 8, 1, 9, 4, 4, 3, 2, 2, 6, 4, 8, 6, 0, 4, 3, 6, 7, 6, 6, 1, 9, 2, 1, 1, 9, 9, 3, 3, 4, 2], [1, 4, 5, 2, 3, 3, 0, 5, 0, 8, 7, 1, 6, 9, 4, 0, 2, 7, 6, 7, 1, 5, 1, 0, 8, 2, 1, 7, 9, 3, 0, 9, 8, 1, 8, 6, 5, 5, 4, 9, 9], [3, 7, 6, 9, 3, 1, 2, 7, 8, 2, 6, 1, 0, 7, 1, 1, 0, 7, 8, 1, 2, 0, 0, 8, 4, 4, 4, 5, 7, 2, 8, 4, 6, 8, 9, 7, 1, 9, 0, 7, 4], [3, 8, 8, 7, 8, 0, 5, 2, 0, 0, 8, 7, 8, 5, 6, 1, 1, 7, 6, 1, 1, 9, 5, 1, 7, 4, 3, 2, 8, 3, 2, 2, 2, 2, 8, 1, 9, 2, 1, 4, 8], [2, 6, 4, 1, 6, 0, 1, 7, 3, 6, 6, 6, 6, 9, 4, 8, 4, 5, 1, 7, 9, 3, 0, 6, 6, 5, 5, 5, 2, 6, 7, 5, 2, 5, 9, 5, 6, 3, 6, 0, 0], [3, 5, 6, 8, 2, 3, 2, 6, 0, 6, 4, 9, 7, 8, 6, 7, 3, 1, 6, 1, 9, 4, 5, 0, 9, 3, 3, 4, 8, 0, 8, 4, 2, 7, 9, 7, 2, 1, 0, 9, 9], [1, 0, 7, 8, 1, 1, 7, 8, 9, 0, 1, 1, 8, 9, 5, 9, 9, 1, 9, 6, 7, 3, 1, 4, 5, 1, 0, 7, 2, 5, 0, 6, 4, 1, 8, 2, 3, 7, 9, 5, 3], [2, 3, 9, 4, 8, 1, 1, 7, 5, 3, 9, 6, 6, 4, 8, 3, 7, 1, 2, 3, 4, 8, 7, 7, 9, 5, 9, 6, 5, 6, 5, 7, 2, 9, 5, 4, 4, 2, 6, 3, 3], [0, 7, 6, 9, 3, 3, 7, 2, 4, 4, 5, 6, 8, 5, 2, 9, 2, 0, 3, 4, 9, 3, 2, 9, 0, 8, 2, 1, 8, 6, 5, 3, 0, 3, 8, 4, 1, 1, 7, 5, 8], [4, 2, 1, 6, 3, 2, 2, 8, 5, 9, 2, 8, 4, 5, 9, 2, 3, 5, 1, 9, 8, 2, 1, 5, 2, 1, 6, 6, 0, 6, 3, 0, 9, 8, 0, 5, 2, 0, 2, 8, 8], [9, 4, 4, 9, 1, 2, 6, 4, 9, 2, 6, 9, 3, 2, 0, 0, 3, 2, 6, 8, 9, 0, 3, 9, 2, 0, 8, 7, 6, 5, 2, 0, 9, 0, 3, 9, 5, 9, 7, 9, 9], [5, 4, 5, 9, 9, 5, 1, 9, 1, 7, 4, 2, 6, 1, 6, 7, 9, 1, 4, 0, 7, 1, 2, 1, 9, 8, 0, 7, 2, 0, 3, 7, 0, 7, 1, 3, 9, 9, 5, 7, 5], [8, 4, 0, 5, 0, 8, 6, 6, 4, 9, 3, 5, 7, 0, 2, 4, 8, 3, 0, 8, 4, 1, 2, 1, 1, 0, 1, 7, 0, 6, 8, 1, 4, 3, 7, 0, 8, 2, 5, 3, 1], [2, 8, 2, 5, 5, 6, 6, 4, 5, 2, 1, 1, 6, 9, 8, 9, 3, 1, 3, 9, 7, 8, 8, 9, 8, 0, 4, 6, 1, 5, 5, 7, 0, 1, 5, 3, 9, 3, 5, 2, 5], [7, 0, 3, 4, 3, 0, 9, 9, 9, 1, 9, 8, 1, 6, 9, 5, 1, 2, 0, 4, 7, 4, 5, 9, 3, 8, 3, 2, 5, 6, 9, 5, 4, 9, 7, 7, 6, 2, 2, 1, 3], [1, 6, 0, 5, 2, 3, 6, 7, 1, 5, 0, 0, 7, 4, 5, 4, 7, 4, 6, 1, 0, 9, 6, 0, 2, 1, 4, 3, 4, 0, 0, 6, 4, 7, 3, 5, 0, 4, 7, 7, 6], [2, 4, 6, 0, 8, 8, 5, 0, 5, 6, 5, 7, 4, 2, 1, 2, 6, 9, 7, 2, 2, 3, 2, 5, 9, 1, 6, 7, 4, 3, 5, 8, 8, 8, 4, 5, 9, 0, 3, 1, 6], [3, 8, 4, 5, 7, 4, 0, 4, 9, 2, 5, 3, 3, 8, 0, 5, 4, 8, 1, 2, 0, 3, 8, 8, 3, 0, 0, 8, 6, 3, 4, 0, 7, 3, 4, 7, 6, 2, 7, 7, 3], [0, 5, 3, 3, 7, 0, 7, 2, 9, 1, 0, 5, 4, 2, 0, 9, 8, 8, 8, 0, 7, 6, 4, 5, 5, 1, 9, 3, 5, 0, 2, 2, 4, 1, 2, 5, 3, 0, 9, 5, 8], [4, 0, 9, 8, 4, 1, 8, 1, 8, 7, 2, 8, 4, 0, 9, 6, 4, 5, 0, 8, 8, 5, 7, 4, 3, 1, 1, 7, 7, 0, 1, 1, 6, 0, 0, 6, 8, 0, 0, 2, 1], [6, 9, 5, 8, 6, 1, 2, 9, 9, 6, 3, 7, 2, 2, 3, 2, 1, 7, 6, 9, 1, 8, 1, 2, 9, 3, 8, 0, 2, 3, 8, 6, 5, 7, 2, 5, 4, 2, 2, 2, 6], [3, 5, 7, 2, 0, 1, 8, 1, 1, 9, 6, 3, 8, 6, 0, 1, 5, 5, 9, 4, 1, 4, 0, 2, 6, 6, 8, 3, 1, 1, 0, 3, 2, 0, 1, 0, 9, 9, 5, 5, 5], [2, 3, 5, 4, 0, 2, 5, 5, 7, 5, 1, 5, 4, 7, 1, 5, 1, 2, 0, 6, 6, 0, 7, 9, 4, 3, 0, 0, 1, 8, 9, 3, 1, 0, 1, 7, 9, 0, 2, 2, 0], [0, 1, 1, 8, 5, 4, 7, 1, 6, 7, 8, 3, 6, 9, 8, 0, 5, 5, 3, 5, 2, 7, 6, 6, 3, 6, 2, 8, 4, 7, 8, 1, 8, 0, 5, 8, 9, 7, 1, 4, 1], [0, 8, 8, 7, 1, 8, 5, 6, 7, 4, 9, 2, 0, 8, 9, 7, 4, 1, 3, 8, 9, 6, 2, 3, 5, 0, 1, 2, 1, 9, 8, 9, 2, 7, 4, 4, 7, 1, 6, 9, 1], [1, 9, 7, 5, 3, 5, 6, 8, 4, 9, 2, 8, 5, 4, 5, 4, 7, 1, 9, 9, 0, 9, 9, 8, 8, 4, 2, 0, 9, 8, 4, 4, 5, 1, 1, 3, 5, 8, 3, 7, 1], [6, 4, 4, 7, 8, 7, 2, 1, 5, 7, 6, 7, 8, 3, 2, 1, 6, 1, 4, 4, 2, 1, 3, 9, 5, 6, 0, 3, 6, 1, 7, 5, 8, 4, 7, 8, 2, 9, 2, 5, 9], [5, 6, 2, 4, 7, 2, 6, 2, 6, 7, 2, 0, 3, 0, 8, 0, 7, 1, 3, 7, 8, 7, 3, 7, 2, 8, 5, 3, 5, 9, 7, 4, 6, 5, 1, 2, 0, 8, 0, 5, 2], [7, 3, 9, 8, 2, 7, 3, 0, 2, 6, 1, 6, 8, 4, 1, 9, 2, 1, 0, 8, 8, 6, 3, 6, 2, 0, 4, 2, 0, 9, 1, 0, 0, 6, 1, 7, 8, 4, 8, 6, 6], [7, 3, 6, 6, 1, 4, 0, 3, 2, 0, 8, 3, 8, 0, 8, 8, 9, 8, 4, 2, 6, 1, 4, 3, 4, 8, 2, 4, 5, 9, 5, 6, 1, 3, 3, 5, 9, 6, 4, 6, 9], [4, 4, 8, 7, 7, 4, 6, 4, 2, 1, 1, 6, 5, 1, 3, 5, 8, 0, 8, 8, 2, 0, 3, 2, 0, 2, 1, 2, 8, 4, 8, 2, 7, 4, 6, 1, 4, 8, 0, 0, 5], [3, 6, 7, 7, 0, 4, 7, 5, 2, 7, 2, 6, 0, 6, 2, 5, 2, 9, 9, 9, 8, 8, 3, 7, 3, 5, 5, 8, 2, 3, 9, 1, 0, 7, 1, 7, 2, 9, 0, 6, 2], [3, 1, 9, 3, 5, 0, 1, 9, 8, 2, 4, 8, 5, 5, 3, 8, 3, 8, 5, 0, 5, 8, 8, 4, 6, 4, 4, 6, 5, 4, 7, 5, 9, 6, 6, 2, 3, 9, 4, 5, 6], [0, 0, 1, 6, 8, 6, 6, 9, 6, 6, 7, 0, 1, 0, 3, 3, 6, 1, 8, 8, 3, 3, 4, 4, 4, 2, 4, 5, 1, 2, 5, 5, 4, 3, 3, 5, 1, 7, 9, 3, 3]], "source_dataset": "rotate_matrix", "source_index": 47}
You are a police officer. A maniac has planted a bomb next to a public fountain. To defuse the bomb, you must solve a puzzle. The puzzle is solved when you fill any of the available jugs with the target amount of water. You have three move types: 'fill', 'empty' and 'pour'. To fill Jug A, you 'fill A'. To empty Jug B, you 'empty B'. To pour the contents of Jug A into Jug B, you 'pour A->B'. All jugs are empty to begin with. The empty jugs hold this many litres of water: A:13, B:7, C:13, D:7 And your target is: 10 litres. How do you defuse the bomb? Reply as a JSON-parsable list of moves which result in any of the jugs being filled with the target amount.
["fill A", "pour A->B", "empty B", "pour A->B", "fill A", "pour A->B", "empty B", "pour A->B", "empty B", "pour A->B", "fill A", "pour A->B", "empty B", "pour A->B", "empty B", "pour A->B", "fill A", "pour A->B"]
jugs
{"difficulty": {"difficulty": 10, "num_jugs": 4}, "puzzle": {"jug_capacities": [13, 7, 13, 7], "min_moves": 17, "target": 10}, "source_dataset": "jugs", "source_index": 34}
Your task is to convert a number between two different bases. If the target base is > 10, use lowercase letters a-z for digits above 9. Now, convert the base-15 number 139ba to base-12
3051a
base_conversion
{"decimal_value": 62950, "difficulty": {"base": [9, 18], "value": [10000, 100000]}, "source_base": 15, "source_dataset": "base_conversion", "source_index": 23, "source_repr": "139ba", "target_base": 12, "target_repr": "3051a"}
What will this Game of Life board look like after 2 steps of simulation? Assume a Moore neighborhood and wrapping topology. Reply as array of arrays representing rows in the grid from top to bottom in JSON format. (An empty 3x3 grid would look like this: [[0,0,0],[0,0,0],[0,0,0]]) [[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]].
[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]
game_of_life
{"difficulty": {"filled_cells_weights": 0.2, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2}, "filled_cells": 10, "grid_size_x": 50, "grid_size_y": 50, "simulation_steps": 2, "source_dataset": "game_of_life", "source_index": 116}
Decrypt this Caesar cipher text: OZWF SF AFUAVWFL AK VWKUJATWV LZSL AK SDJWSVQ HZGLGYJSHZK GX ALK ESAF XWSLMJWK SJW LJSFKEALLWV OALZ LZW FSJJSLANW. Provide only the decrypted text as your final answer.
WHEN AN INCIDENT IS DESCRIBED THAT IS ALREADY PHOTOGRAPHS OF ITS MAIN FEATURES ARE TRANSMITTED WITH THE NARRATIVE
caesar_cipher
{"cipher_text": "OZWF SF AFUAVWFL AK VWKUJATWV LZSL AK SDJWSVQ HZGLGYJSHZK GX ALK ESAF XWSLMJWK SJW LJSFKEALLWV OALZ LZW FSJJSLANW", "clear_text": "WHEN AN INCIDENT IS DESCRIBED THAT IS ALREADY PHOTOGRAPHS OF ITS MAIN FEATURES ARE TRANSMITTED WITH THE NARRATIVE", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 18, "rotation": 18, "source_dataset": "caesar_cipher", "source_index": 48}
An anagram is a word formed by rearranging the letters of a different word, using all the original letters exactly once. Your job is to group the anagrams together. You can return the answer in any order. The output is a list of lists of strings, where each outer list contains a group of anagrams, e.g. [["eat", "tea"], ["tan", "nat"]]. Group the following list of words into anagrams: ["executioner", "reexecution", "trialist", "taistril", "pringle", "perling", "pingler", "beroida", "boreiad", "conrector", "concretor", "tother", "hotter", "cylix", "xylic", "guiltier", "ligurite", "unfillable", "unfallible", "plicate", "capitle", "dishabit", "adhibits", "cottered", "detector", "baser", "saber", "barse", "esthetic", "techiest", "timeshare", "hetaerism", "matelessness", "tamelessness", "prater", "parter", "rapter", "repart", "iterable", "liberate", "burying", "rubying", "calendarial", "dalecarlian", "rechal", "rachel", "sansar", "sarans", "sulfo", "fouls", "gentles", "lengest", "hospitals", "thalposis", "clipse", "splice", "malingers", "maligners", "eructs", "truces", "rectus", "recuts", "cruets", "homopteran", "trophonema", "federate", "defeater", "redefeat", "resources", "recourses", "unsashed", "sunshade", "housewarm", "warmhouse", "cobras", "carobs", "otto", "toto", "slacker", "lackers", "hective", "chetive", "nongeneric", "nonenergic", "isobront", "biotrons", "clum", "culm", "prelingual", "perlingual", "endosome", "moonseed", "potline", "topline", "pointel", "pontile", "rawish", "wairsh", "tracings", "scarting"]
[["adhibits", "dishabit"], ["barse", "baser", "saber"], ["beroida", "boreiad"], ["biotrons", "isobront"], ["burying", "rubying"], ["calendarial", "dalecarlian"], ["capitle", "plicate"], ["carobs", "cobras"], ["chetive", "hective"], ["clipse", "splice"], ["clum", "culm"], ["concretor", "conrector"], ["cottered", "detector"], ["cruets", "eructs", "rectus", "recuts", "truces"], ["cylix", "xylic"], ["defeater", "federate", "redefeat"], ["endosome", "moonseed"], ["esthetic", "techiest"], ["executioner", "reexecution"], ["fouls", "sulfo"], ["gentles", "lengest"], ["guiltier", "ligurite"], ["hetaerism", "timeshare"], ["homopteran", "trophonema"], ["hospitals", "thalposis"], ["hotter", "tother"], ["housewarm", "warmhouse"], ["iterable", "liberate"], ["lackers", "slacker"], ["maligners", "malingers"], ["matelessness", "tamelessness"], ["nonenergic", "nongeneric"], ["otto", "toto"], ["parter", "prater", "rapter", "repart"], ["perling", "pingler", "pringle"], ["perlingual", "prelingual"], ["pointel", "pontile", "potline", "topline"], ["rachel", "rechal"], ["rawish", "wairsh"], ["recourses", "resources"], ["sansar", "sarans"], ["scarting", "tracings"], ["sunshade", "unsashed"], ["taistril", "trialist"], ["unfallible", "unfillable"]]
group_anagrams
{"anagram_groups": 45, "difficulty": {"anagram_groups": [10, 50], "words_per_group": [2, 5]}, "solution": [["adhibits", "dishabit"], ["barse", "baser", "saber"], ["beroida", "boreiad"], ["biotrons", "isobront"], ["burying", "rubying"], ["calendarial", "dalecarlian"], ["capitle", "plicate"], ["carobs", "cobras"], ["chetive", "hective"], ["clipse", "splice"], ["clum", "culm"], ["concretor", "conrector"], ["cottered", "detector"], ["cruets", "eructs", "rectus", "recuts", "truces"], ["cylix", "xylic"], ["defeater", "federate", "redefeat"], ["endosome", "moonseed"], ["esthetic", "techiest"], ["executioner", "reexecution"], ["fouls", "sulfo"], ["gentles", "lengest"], ["guiltier", "ligurite"], ["hetaerism", "timeshare"], ["homopteran", "trophonema"], ["hospitals", "thalposis"], ["hotter", "tother"], ["housewarm", "warmhouse"], ["iterable", "liberate"], ["lackers", "slacker"], ["maligners", "malingers"], ["matelessness", "tamelessness"], ["nonenergic", "nongeneric"], ["otto", "toto"], ["parter", "prater", "rapter", "repart"], ["perling", "pingler", "pringle"], ["perlingual", "prelingual"], ["pointel", "pontile", "potline", "topline"], ["rachel", "rechal"], ["rawish", "wairsh"], ["recourses", "resources"], ["sansar", "sarans"], ["scarting", "tracings"], ["sunshade", "unsashed"], ["taistril", "trialist"], ["unfallible", "unfillable"]], "source_dataset": "group_anagrams", "source_index": 115, "words": ["executioner", "reexecution", "trialist", "taistril", "pringle", "perling", "pingler", "beroida", "boreiad", "conrector", "concretor", "tother", "hotter", "cylix", "xylic", "guiltier", "ligurite", "unfillable", "unfallible", "plicate", "capitle", "dishabit", "adhibits", "cottered", "detector", "baser", "saber", "barse", "esthetic", "techiest", "timeshare", "hetaerism", "matelessness", "tamelessness", "prater", "parter", "rapter", "repart", "iterable", "liberate", "burying", "rubying", "calendarial", "dalecarlian", "rechal", "rachel", "sansar", "sarans", "sulfo", "fouls", "gentles", "lengest", "hospitals", "thalposis", "clipse", "splice", "malingers", "maligners", "eructs", "truces", "rectus", "recuts", "cruets", "homopteran", "trophonema", "federate", "defeater", "redefeat", "resources", "recourses", "unsashed", "sunshade", "housewarm", "warmhouse", "cobras", "carobs", "otto", "toto", "slacker", "lackers", "hective", "chetive", "nongeneric", "nonenergic", "isobront", "biotrons", "clum", "culm", "prelingual", "perlingual", "endosome", "moonseed", "potline", "topline", "pointel", "pontile", "rawish", "wairsh", "tracings", "scarting"]}
Your task is to convert a number between two different bases. If the target base is > 10, use lowercase letters a-z for digits above 9. Now, convert the base-15 number 19bae to base-10
83639
base_conversion
{"decimal_value": 83639, "difficulty": {"base": [9, 18], "value": [10000, 100000]}, "source_base": 15, "source_dataset": "base_conversion", "source_index": 95, "source_repr": "19bae", "target_base": 10, "target_repr": "83639"}
Sort these numbers in descending order: -348.301, 365.951, -23.87, -326.8274, 276.36, 346.103, -62.5451, -473.2666, 473.978, -240.1319, -236.2664, -315.8868, -118.3084, -367.51, -314.14, 307.466, 277.67, 148.46, 149.59, 357.373, 410.321, -210.1816, 181.9774, 214.156, -282.5723, -448.0121, -75.643, -21.43, -404.2, -239.83, 457.6406, -315.5754, 273.76, -295.7008, 468.07, -496.5006, -441.1455, -170.973, -162.45, 121.54, -354.33, 475.262, 416.741, -119.0, 263.9906, -220.921, 347.8071, -420.1, -351.4446, 233.8859, -124.8767, -382.622, -220.87, 134.539, 346.2683, -157.2999, -428.869 Please follow the instruction below: ## 1. Let all your answers be a list of numbers. Instead of reporting your answer as -69, -13, 1, 7, 11, 43, 59, 61, use ['-69', '-13', '1', '7', '11', '43', '59', '61'] instead ## 2. Convert all numbers in the square brackets as strings. For example, ['-69', '-13', '1', '7', '11', '43', '59', '61']
['475.262', '473.978', '468.07', '457.6406', '416.741', '410.321', '365.951', '357.373', '347.8071', '346.2683', '346.103', '307.466', '277.67', '276.36', '273.76', '263.9906', '233.8859', '214.156', '181.9774', '149.59', '148.46', '134.539', '121.54', '-21.43', '-23.87', '-62.5451', '-75.643', '-118.3084', '-119.0', '-124.8767', '-157.2999', '-162.45', '-170.973', '-210.1816', '-220.87', '-220.921', '-236.2664', '-239.83', '-240.1319', '-282.5723', '-295.7008', '-314.14', '-315.5754', '-315.8868', '-326.8274', '-348.301', '-351.4446', '-354.33', '-367.51', '-382.622', '-404.2', '-420.1', '-428.869', '-441.1455', '-448.0121', '-473.2666', '-496.5006']
number_sorting
{"difficulty": {"decimals": [2, 4], "numbers": [50, 100], "value": [-500, 500]}, "direction": "descending", "numbers": 57, "original_numbers": ["-348.301", "365.951", "-23.87", "-326.8274", "276.36", "346.103", "-62.5451", "-473.2666", "473.978", "-240.1319", "-236.2664", "-315.8868", "-118.3084", "-367.51", "-314.14", "307.466", "277.67", "148.46", "149.59", "357.373", "410.321", "-210.1816", "181.9774", "214.156", "-282.5723", "-448.0121", "-75.643", "-21.43", "-404.2", "-239.83", "457.6406", "-315.5754", "273.76", "-295.7008", "468.07", "-496.5006", "-441.1455", "-170.973", "-162.45", "121.54", "-354.33", "475.262", "416.741", "-119.0", "263.9906", "-220.921", "347.8071", "-420.1", "-351.4446", "233.8859", "-124.8767", "-382.622", "-220.87", "134.539", "346.2683", "-157.2999", "-428.869"], "sorted_numbers": ["475.262", "473.978", "468.07", "457.6406", "416.741", "410.321", "365.951", "357.373", "347.8071", "346.2683", "346.103", "307.466", "277.67", "276.36", "273.76", "263.9906", "233.8859", "214.156", "181.9774", "149.59", "148.46", "134.539", "121.54", "-21.43", "-23.87", "-62.5451", "-75.643", "-118.3084", "-119.0", "-124.8767", "-157.2999", "-162.45", "-170.973", "-210.1816", "-220.87", "-220.921", "-236.2664", "-239.83", "-240.1319", "-282.5723", "-295.7008", "-314.14", "-315.5754", "-315.8868", "-326.8274", "-348.301", "-351.4446", "-354.33", "-367.51", "-382.622", "-404.2", "-420.1", "-428.869", "-441.1455", "-448.0121", "-473.2666", "-496.5006"], "source_dataset": "number_sorting", "source_index": 106}
Solve this cryptarithm: XNEIE NSXN NSARR IRN + SEY -------- DYINSI Each letter stands for a unique digit (0-9). No leading letter can be zero. Provide a comma separated mapping from letters to digits that satisfies the equation in your final answer. Output format: "A=1,B=2,C=3" (without quotes)
A=6,D=1,E=8,I=2,N=5,R=0,S=9,X=7,Y=4
cryptarithm
{"difficulty": {"words": [5, 10]}, "digit_to_letter": {"0": "R", "1": "D", "2": "I", "4": "Y", "5": "N", "6": "A", "7": "X", "8": "E", "9": "S"}, "letter_to_digit": {"A": 6, "D": 1, "E": 8, "I": 2, "N": 5, "R": 0, "S": 9, "X": 7, "Y": 4}, "letters": ["E", "N", "I", "R", "A", "Y", "X", "D", "S"], "result_letters": "DYINSI", "source_dataset": "cryptarithm", "source_index": 11, "sum_number": 142592, "word_values": [75828, 5975, 59600, 205, 984], "words_letters": ["XNEIE", "NSXN", "NSARR", "IRN", "SEY"]}
Decrypt this Caesar cipher text: SVN LHMTSDR KZSDQ SGD LZBGHMD CDONRHSDC GHL ZKK CQDRRDC ZS SGD SGQDRGNKC NE GHR NEEHBD. Provide only the decrypted text as your final answer.
TWO MINUTES LATER THE MACHINE DEPOSITED HIM ALL DRESSED AT THE THRESHOLD OF HIS OFFICE
caesar_cipher
{"cipher_text": "SVN LHMTSDR KZSDQ SGD LZBGHMD CDONRHSDC GHL ZKK CQDRRDC ZS SGD SGQDRGNKC NE GHR NEEHBD", "clear_text": "TWO MINUTES LATER THE MACHINE DEPOSITED HIM ALL DRESSED AT THE THRESHOLD OF HIS OFFICE", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 15, "rotation": 25, "source_dataset": "caesar_cipher", "source_index": 89}
Given a square matrix, your job is to rotate it clockwise. Your output should be a matrix in the same format as the input. Rotate the matrix below by 990 degrees clockwise: 1 8 7 9 2 7 4 9 1 7 6 8 8 3 7 1 0 4 6 0 6 5 8 6 7 8 6 2 0 4 9 9 3 1 7 5 4 2 3 0 3 4 4 0 3 8 2 9 6 1 1 1 3 2 8 2 7 7 7 8 3 5 4 3 0 6 1 6 6 0 1 5 6 2 5 7 1 2 3 1 8 4 6 6 4 6 1 7 0 1 1 4 8 7 8 1 3 5 0 3 1 0 4 3 2 6 0 9 9 6 9 2 0 3 2 8 3 6 2 6 1 1 9 6 4 9 6 4 3 4 7 5 2 7 6 7 6 2 7 4 5 8 1 4 5 1 1 9 8 7 8 5 8 1 5 8 6 7 7 6 0 0 3 9 1 0 5 3 4 7 8 5 1 0 8 7 5 7 5 0 0 5 8 1 3 7 9 9 6 2 2 9 0 0 5 9 1 8 6 3 1 7 1 7 5 7 3 2 5 3 9 4 3 3 4 0 8 6 3 6 3 2 7 6 4 3 8 0 1 3 2 3 0 5 3 2 1 4 6 2 3 9 8 5 1 6 8 2 6 5 4 6 2 3 4 9 0 3 6 7 9 6 7 2 0 1 8 3 8 0 1 0 5 2 4 4 0 4 9 5 4 5 1 7 4 5 9 4 9 5 0 9 5 1 1 4 8 2 0 2 6 6 0 9 9 4 8 8 5 4 0 2 4 8 5 3 6 6 2 0 0 5 4 9 9 8 9 6 4 8 9 8 4 9 6 3 6 6 2 1 8 1 8 4 3 7 1 2 6 3 3 4 0 3 5 8 5 8 4 2 7 8 5 6 3 6 5 0 8 6 9 5 6 5 4 3 7 9 9 5 5 6 4 0 3 5 2 2 8 2 3 5 9 2 9 7 6 8 7 1 3 2 2 7 0 2 5 6 7 1 7 8 4 1 2 5 8 2 9 6 7 8 9 4 5 9 1 8 1 5 6 6 2 9 2 5 8 8 2 6 1 7 3 6 1 8 4 9 6 7 5 8 3 6 7 1 8 5 1 1 0 8 7 7 5 8 8 2 8 0 8 3 8 6 1 8 4 5 6 2 6 4 9 1 7 6 7 6 0 4 0 7 0 6 9 5 0 0 0 1 4 8 1 2 0 4 4 7 7 7 3 5 8 3 1 1 3 8 6 1 4 4 3 1 7 8 5 0 2 3 6 3 1 0 8 7 2 4 2 9 6 7 6 7 0 1 2 5 1 6 3 2 3 7 6 5 7 6 3 5 5 0 5 0 8 4 4 4 3 2 1 8 9 9 3 1 6 6 0 6 0 6 4 5 9 9 8 4 8 0 8 5 8 2 1 0 5 5 2 2 3 5 7 3 2 3 9 5 9 2 0 3 4 1 8 6 5 1 6 3 1 9 6 0 8 4 8 0 5 0 5 1 7 1 1 2 3 1 2 1 3 5 7 7 8 7 7 2 9 5 6 5 9 0 5 8 1 5 5 5 6 7 4 0 1 0 1 8 9 6 5 6 8 7 8 3 8 5 3 3 0 9 0 3 9 8 7 9 5 7 7 7 5 6 2 2 6 4 6 8 7 9 5 9 5 3 0 5 7 9 4 1 7 8 4 9 5 6 0 2 5 1 1 0 5 7 6 0 0 3 2 6 2 5 1 2 0 5 3 8 1 2 7 8 2 2 5 3 3 2 8 7 4 5 6 7 4 2 1 2 2 7 4 0 4 7 5 5 9 8 2 4 0 2 3 6 9 0 6 4 5 7 0 3 1 6 4 8 7 4 3 4 3 9 0 7 1 5 8 8 6 7 1 2 5 5 8 3 2 9 6 3 1 8 8 4 6 5 4 3 5 8 0 5 4 5 8 4 4 2 7 0 2 6 5 6 4 6 8 4 1 4 8 1 6 3 9 1 5 0 3 9 4 4 8 0 9 4 5 1 1 2 4 4 7 8 0 3 2 8 5 6 9 1 9 8 2 1 6 5 9 9 1 5 8 9 3 0 0 6 5 8 6 5 2 5 8 5 1 5 6 8 0 6 7 6 3 3 8 6 9 1 6 8 4 8 4 7 7 8 9 3 1 8 1 5 3 2 9 1 5 7 2 7 2 8 9 3 6 3 2 1 7 2 6 1 1 6 9 1 0 8 3 2 9 6 3 1 1 0 9 2 9 6 2 6 0 1 4 2 6 8 2 1 2 3 2 5 8 4 2 6 0 7 2 6 2 6 3 6 5 6 2 3 1 0 9 0 8 9 9 3 5 6 9 1 9 7 3 9 9 3 0 3 5 0 7 0 2 1 8 2 3 2 3 5 8 5 3 2 9 6 2 4 6 8 2 3 5 2 2 0 1 8 1 6 4 9 1 9 9 0 0 9 7 7 9 9 0 1 6 3 3 2 0 2 5 9 5 9 7 1 6 4 2 9 5 8 9 4 4 1 4 9 6 7 7 2 9
3 6 0 5 1 8 2 2 8 8 5 7 1 8 9 0 5 2 8 5 5 7 1 4 4 4 5 8 3 6 3 7 9 9 0 5 7 9 1 3 7 4 4 8 9 8 0 6 5 5 8 4 5 7 5 2 3 5 9 6 1 6 3 2 7 2 9 3 3 4 3 9 1 6 1 6 7 2 1 1 0 8 3 5 8 5 7 0 4 4 0 0 0 3 9 6 8 9 7 4 4 1 3 0 5 0 9 1 9 2 9 9 1 7 7 6 8 0 1 7 1 7 7 8 8 0 9 2 2 1 0 7 0 5 8 4 0 0 8 7 5 8 4 5 5 5 0 1 7 0 6 8 5 1 6 8 5 4 3 8 3 6 2 0 6 2 3 7 6 6 0 3 6 9 9 8 3 4 8 4 3 5 8 9 5 9 5 5 4 3 4 9 7 8 2 0 9 9 6 8 8 9 7 9 4 3 0 9 5 2 9 1 0 4 6 4 1 0 7 2 4 6 4 9 8 7 0 7 7 9 4 8 7 4 4 7 2 6 0 5 4 8 8 8 7 6 4 7 8 3 9 8 0 7 1 5 3 5 4 1 0 0 1 1 7 7 1 6 6 2 7 9 9 5 5 2 7 6 7 1 3 9 6 5 9 6 8 3 6 0 1 8 9 6 5 9 4 6 7 1 9 8 6 2 4 4 0 3 2 6 3 6 6 2 9 1 6 3 5 2 0 4 5 9 4 6 2 3 4 4 8 2 0 1 5 9 3 3 9 0 0 5 9 8 7 8 3 5 5 5 0 9 3 7 8 1 9 8 1 4 0 6 9 5 8 7 1 1 9 6 2 5 2 4 3 2 5 1 3 6 4 6 9 9 4 3 5 8 9 5 6 1 8 3 1 8 6 2 1 6 8 7 3 6 4 6 3 0 8 7 9 1 1 6 8 2 0 8 5 4 1 3 6 1 6 5 9 8 5 0 3 6 2 5 3 6 4 7 6 3 4 5 6 4 1 5 0 1 7 3 7 2 6 3 6 1 9 2 2 9 1 9 6 1 4 6 8 1 8 5 1 3 6 6 2 9 6 3 2 6 4 7 3 1 2 0 6 1 2 6 7 3 3 0 2 4 1 6 3 7 8 0 6 5 5 2 5 1 4 2 8 1 0 3 8 5 4 8 9 9 8 8 8 1 2 7 2 4 0 1 6 8 8 5 4 2 4 8 1 5 4 8 6 5 0 6 0 7 8 9 7 6 2 4 9 3 2 1 9 2 6 1 6 4 2 9 0 3 8 5 4 7 9 8 1 5 3 7 6 2 7 3 7 2 3 3 1 1 3 3 2 1 5 1 7 9 8 3 1 0 3 6 9 2 3 9 7 6 4 7 6 1 9 5 8 5 1 2 8 4 9 6 6 8 9 3 7 3 2 1 0 1 5 4 1 4 0 4 7 1 3 8 7 7 3 5 3 7 0 8 0 5 8 6 7 3 6 6 2 9 8 8 3 2 5 7 9 5 0 4 8 3 7 7 1 7 6 9 9 1 8 3 3 4 5 6 5 6 9 2 5 8 5 8 3 2 9 4 5 3 8 4 5 1 4 6 1 6 4 9 9 3 2 6 5 5 2 2 4 8 0 8 4 3 6 9 6 0 1 6 1 7 5 9 4 8 8 5 5 6 8 4 2 8 2 1 5 9 0 8 1 6 2 8 2 1 9 4 5 7 4 7 9 8 8 2 3 2 8 1 6 2 2 3 0 4 1 3 3 6 5 2 9 7 5 3 6 7 0 9 2 2 1 4 5 9 5 0 3 2 5 4 2 5 0 8 8 2 2 2 7 2 9 9 1 5 6 6 0 5 2 6 8 6 0 9 3 2 0 4 1 7 6 0 9 6 9 7 8 0 1 7 3 5 1 8 7 5 5 8 2 8 1 7 2 0 9 2 4 0 6 6 7 5 5 4 1 9 6 6 2 5 8 8 8 4 3 1 1 8 2 7 8 0 7 5 5 6 9 2 3 7 3 5 2 2 8 7 1 0 0 3 8 2 2 2 4 0 4 2 7 0 6 6 4 5 7 4 8 1 9 0 3 3 2 2 1 3 6 7 1 2 8 6 6 0 3 9 8 1 1 4 2 1 1 4 2 0 1 2 4 5 9 2 1 5 6 9 4 0 4 7 4 7 3 3 6 9 5 1 2 8 0 3 8 5 5 0 6 3 4 7 4 2 2 2 9 3 8 1 7 5 6 0 6 3 1 5 8 2 4 6 7 6 5 0 6 0 5 0 4 2 0 7 0 4 1 5 3 0 2 5 0 8 7 6 1 7 5 3 0 1 0 8 3 8 6 7 0 3 5 0 5 7 2 0 2 9 8 1 6 5 1 6 3 9 1 1 1 3 2 0 6 3 0 2 9 6 6 5 7 5 2 0 1 0 6 6 6 2 3 5 5 8 1 1 5 2 9
rotate_matrix
{"difficulty": {"n": [25, 50], "num_rotations": [5, 15]}, "matrix": [[1, 8, 7, 9, 2, 7, 4, 9, 1, 7, 6, 8, 8, 3, 7, 1, 0, 4, 6, 0, 6, 5, 8, 6, 7, 8, 6, 2, 0, 4, 9, 9, 3], [1, 7, 5, 4, 2, 3, 0, 3, 4, 4, 0, 3, 8, 2, 9, 6, 1, 1, 1, 3, 2, 8, 2, 7, 7, 7, 8, 3, 5, 4, 3, 0, 6], [1, 6, 6, 0, 1, 5, 6, 2, 5, 7, 1, 2, 3, 1, 8, 4, 6, 6, 4, 6, 1, 7, 0, 1, 1, 4, 8, 7, 8, 1, 3, 5, 0], [3, 1, 0, 4, 3, 2, 6, 0, 9, 9, 6, 9, 2, 0, 3, 2, 8, 3, 6, 2, 6, 1, 1, 9, 6, 4, 9, 6, 4, 3, 4, 7, 5], [2, 7, 6, 7, 6, 2, 7, 4, 5, 8, 1, 4, 5, 1, 1, 9, 8, 7, 8, 5, 8, 1, 5, 8, 6, 7, 7, 6, 0, 0, 3, 9, 1], [0, 5, 3, 4, 7, 8, 5, 1, 0, 8, 7, 5, 7, 5, 0, 0, 5, 8, 1, 3, 7, 9, 9, 6, 2, 2, 9, 0, 0, 5, 9, 1, 8], [6, 3, 1, 7, 1, 7, 5, 7, 3, 2, 5, 3, 9, 4, 3, 3, 4, 0, 8, 6, 3, 6, 3, 2, 7, 6, 4, 3, 8, 0, 1, 3, 2], [3, 0, 5, 3, 2, 1, 4, 6, 2, 3, 9, 8, 5, 1, 6, 8, 2, 6, 5, 4, 6, 2, 3, 4, 9, 0, 3, 6, 7, 9, 6, 7, 2], [0, 1, 8, 3, 8, 0, 1, 0, 5, 2, 4, 4, 0, 4, 9, 5, 4, 5, 1, 7, 4, 5, 9, 4, 9, 5, 0, 9, 5, 1, 1, 4, 8], [2, 0, 2, 6, 6, 0, 9, 9, 4, 8, 8, 5, 4, 0, 2, 4, 8, 5, 3, 6, 6, 2, 0, 0, 5, 4, 9, 9, 8, 9, 6, 4, 8], [9, 8, 4, 9, 6, 3, 6, 6, 2, 1, 8, 1, 8, 4, 3, 7, 1, 2, 6, 3, 3, 4, 0, 3, 5, 8, 5, 8, 4, 2, 7, 8, 5], [6, 3, 6, 5, 0, 8, 6, 9, 5, 6, 5, 4, 3, 7, 9, 9, 5, 5, 6, 4, 0, 3, 5, 2, 2, 8, 2, 3, 5, 9, 2, 9, 7], [6, 8, 7, 1, 3, 2, 2, 7, 0, 2, 5, 6, 7, 1, 7, 8, 4, 1, 2, 5, 8, 2, 9, 6, 7, 8, 9, 4, 5, 9, 1, 8, 1], [5, 6, 6, 2, 9, 2, 5, 8, 8, 2, 6, 1, 7, 3, 6, 1, 8, 4, 9, 6, 7, 5, 8, 3, 6, 7, 1, 8, 5, 1, 1, 0, 8], [7, 7, 5, 8, 8, 2, 8, 0, 8, 3, 8, 6, 1, 8, 4, 5, 6, 2, 6, 4, 9, 1, 7, 6, 7, 6, 0, 4, 0, 7, 0, 6, 9], [5, 0, 0, 0, 1, 4, 8, 1, 2, 0, 4, 4, 7, 7, 7, 3, 5, 8, 3, 1, 1, 3, 8, 6, 1, 4, 4, 3, 1, 7, 8, 5, 0], [2, 3, 6, 3, 1, 0, 8, 7, 2, 4, 2, 9, 6, 7, 6, 7, 0, 1, 2, 5, 1, 6, 3, 2, 3, 7, 6, 5, 7, 6, 3, 5, 5], [0, 5, 0, 8, 4, 4, 4, 3, 2, 1, 8, 9, 9, 3, 1, 6, 6, 0, 6, 0, 6, 4, 5, 9, 9, 8, 4, 8, 0, 8, 5, 8, 2], [1, 0, 5, 5, 2, 2, 3, 5, 7, 3, 2, 3, 9, 5, 9, 2, 0, 3, 4, 1, 8, 6, 5, 1, 6, 3, 1, 9, 6, 0, 8, 4, 8], [0, 5, 0, 5, 1, 7, 1, 1, 2, 3, 1, 2, 1, 3, 5, 7, 7, 8, 7, 7, 2, 9, 5, 6, 5, 9, 0, 5, 8, 1, 5, 5, 5], [6, 7, 4, 0, 1, 0, 1, 8, 9, 6, 5, 6, 8, 7, 8, 3, 8, 5, 3, 3, 0, 9, 0, 3, 9, 8, 7, 9, 5, 7, 7, 7, 5], [6, 2, 2, 6, 4, 6, 8, 7, 9, 5, 9, 5, 3, 0, 5, 7, 9, 4, 1, 7, 8, 4, 9, 5, 6, 0, 2, 5, 1, 1, 0, 5, 7], [6, 0, 0, 3, 2, 6, 2, 5, 1, 2, 0, 5, 3, 8, 1, 2, 7, 8, 2, 2, 5, 3, 3, 2, 8, 7, 4, 5, 6, 7, 4, 2, 1], [2, 2, 7, 4, 0, 4, 7, 5, 5, 9, 8, 2, 4, 0, 2, 3, 6, 9, 0, 6, 4, 5, 7, 0, 3, 1, 6, 4, 8, 7, 4, 3, 4], [3, 9, 0, 7, 1, 5, 8, 8, 6, 7, 1, 2, 5, 5, 8, 3, 2, 9, 6, 3, 1, 8, 8, 4, 6, 5, 4, 3, 5, 8, 0, 5, 4], [5, 8, 4, 4, 2, 7, 0, 2, 6, 5, 6, 4, 6, 8, 4, 1, 4, 8, 1, 6, 3, 9, 1, 5, 0, 3, 9, 4, 4, 8, 0, 9, 4], [5, 1, 1, 2, 4, 4, 7, 8, 0, 3, 2, 8, 5, 6, 9, 1, 9, 8, 2, 1, 6, 5, 9, 9, 1, 5, 8, 9, 3, 0, 0, 6, 5], [8, 6, 5, 2, 5, 8, 5, 1, 5, 6, 8, 0, 6, 7, 6, 3, 3, 8, 6, 9, 1, 6, 8, 4, 8, 4, 7, 7, 8, 9, 3, 1, 8], [1, 5, 3, 2, 9, 1, 5, 7, 2, 7, 2, 8, 9, 3, 6, 3, 2, 1, 7, 2, 6, 1, 1, 6, 9, 1, 0, 8, 3, 2, 9, 6, 3], [1, 1, 0, 9, 2, 9, 6, 2, 6, 0, 1, 4, 2, 6, 8, 2, 1, 2, 3, 2, 5, 8, 4, 2, 6, 0, 7, 2, 6, 2, 6, 3, 6], [5, 6, 2, 3, 1, 0, 9, 0, 8, 9, 9, 3, 5, 6, 9, 1, 9, 7, 3, 9, 9, 3, 0, 3, 5, 0, 7, 0, 2, 1, 8, 2, 3], [2, 3, 5, 8, 5, 3, 2, 9, 6, 2, 4, 6, 8, 2, 3, 5, 2, 2, 0, 1, 8, 1, 6, 4, 9, 1, 9, 9, 0, 0, 9, 7, 7], [9, 9, 0, 1, 6, 3, 3, 2, 0, 2, 5, 9, 5, 9, 7, 1, 6, 4, 2, 9, 5, 8, 9, 4, 4, 1, 4, 9, 6, 7, 7, 2, 9]], "n": 33, "num_rotations": 11, "solution": [[3, 6, 0, 5, 1, 8, 2, 2, 8, 8, 5, 7, 1, 8, 9, 0, 5, 2, 8, 5, 5, 7, 1, 4, 4, 4, 5, 8, 3, 6, 3, 7, 9], [9, 0, 5, 7, 9, 1, 3, 7, 4, 4, 8, 9, 8, 0, 6, 5, 5, 8, 4, 5, 7, 5, 2, 3, 5, 9, 6, 1, 6, 3, 2, 7, 2], [9, 3, 3, 4, 3, 9, 1, 6, 1, 6, 7, 2, 1, 1, 0, 8, 3, 5, 8, 5, 7, 0, 4, 4, 0, 0, 0, 3, 9, 6, 8, 9, 7], [4, 4, 1, 3, 0, 5, 0, 9, 1, 9, 2, 9, 9, 1, 7, 7, 6, 8, 0, 1, 7, 1, 7, 7, 8, 8, 0, 9, 2, 2, 1, 0, 7], [0, 5, 8, 4, 0, 0, 8, 7, 5, 8, 4, 5, 5, 5, 0, 1, 7, 0, 6, 8, 5, 1, 6, 8, 5, 4, 3, 8, 3, 6, 2, 0, 6], [2, 3, 7, 6, 6, 0, 3, 6, 9, 9, 8, 3, 4, 8, 4, 3, 5, 8, 9, 5, 9, 5, 5, 4, 3, 4, 9, 7, 8, 2, 0, 9, 9], [6, 8, 8, 9, 7, 9, 4, 3, 0, 9, 5, 2, 9, 1, 0, 4, 6, 4, 1, 0, 7, 2, 4, 6, 4, 9, 8, 7, 0, 7, 7, 9, 4], [8, 7, 4, 4, 7, 2, 6, 0, 5, 4, 8, 8, 8, 7, 6, 4, 7, 8, 3, 9, 8, 0, 7, 1, 5, 3, 5, 4, 1, 0, 0, 1, 1], [7, 7, 1, 6, 6, 2, 7, 9, 9, 5, 5, 2, 7, 6, 7, 1, 3, 9, 6, 5, 9, 6, 8, 3, 6, 0, 1, 8, 9, 6, 5, 9, 4], [6, 7, 1, 9, 8, 6, 2, 4, 4, 0, 3, 2, 6, 3, 6, 6, 2, 9, 1, 6, 3, 5, 2, 0, 4, 5, 9, 4, 6, 2, 3, 4, 4], [8, 2, 0, 1, 5, 9, 3, 3, 9, 0, 0, 5, 9, 8, 7, 8, 3, 5, 5, 5, 0, 9, 3, 7, 8, 1, 9, 8, 1, 4, 0, 6, 9], [5, 8, 7, 1, 1, 9, 6, 2, 5, 2, 4, 3, 2, 5, 1, 3, 6, 4, 6, 9, 9, 4, 3, 5, 8, 9, 5, 6, 1, 8, 3, 1, 8], [6, 2, 1, 6, 8, 7, 3, 6, 4, 6, 3, 0, 8, 7, 9, 1, 1, 6, 8, 2, 0, 8, 5, 4, 1, 3, 6, 1, 6, 5, 9, 8, 5], [0, 3, 6, 2, 5, 3, 6, 4, 7, 6, 3, 4, 5, 6, 4, 1, 5, 0, 1, 7, 3, 7, 2, 6, 3, 6, 1, 9, 2, 2, 9, 1, 9], [6, 1, 4, 6, 8, 1, 8, 5, 1, 3, 6, 6, 2, 9, 6, 3, 2, 6, 4, 7, 3, 1, 2, 0, 6, 1, 2, 6, 7, 3, 3, 0, 2], [4, 1, 6, 3, 7, 8, 0, 6, 5, 5, 2, 5, 1, 4, 2, 8, 1, 0, 3, 8, 5, 4, 8, 9, 9, 8, 8, 8, 1, 2, 7, 2, 4], [0, 1, 6, 8, 8, 5, 4, 2, 4, 8, 1, 5, 4, 8, 6, 5, 0, 6, 0, 7, 8, 9, 7, 6, 2, 4, 9, 3, 2, 1, 9, 2, 6], [1, 6, 4, 2, 9, 0, 3, 8, 5, 4, 7, 9, 8, 1, 5, 3, 7, 6, 2, 7, 3, 7, 2, 3, 3, 1, 1, 3, 3, 2, 1, 5, 1], [7, 9, 8, 3, 1, 0, 3, 6, 9, 2, 3, 9, 7, 6, 4, 7, 6, 1, 9, 5, 8, 5, 1, 2, 8, 4, 9, 6, 6, 8, 9, 3, 7], [3, 2, 1, 0, 1, 5, 4, 1, 4, 0, 4, 7, 1, 3, 8, 7, 7, 3, 5, 3, 7, 0, 8, 0, 5, 8, 6, 7, 3, 6, 6, 2, 9], [8, 8, 3, 2, 5, 7, 9, 5, 0, 4, 8, 3, 7, 7, 1, 7, 6, 9, 9, 1, 8, 3, 3, 4, 5, 6, 5, 6, 9, 2, 5, 8, 5], [8, 3, 2, 9, 4, 5, 3, 8, 4, 5, 1, 4, 6, 1, 6, 4, 9, 9, 3, 2, 6, 5, 5, 2, 2, 4, 8, 0, 8, 4, 3, 6, 9], [6, 0, 1, 6, 1, 7, 5, 9, 4, 8, 8, 5, 5, 6, 8, 4, 2, 8, 2, 1, 5, 9, 0, 8, 1, 6, 2, 8, 2, 1, 9, 4, 5], [7, 4, 7, 9, 8, 8, 2, 3, 2, 8, 1, 6, 2, 2, 3, 0, 4, 1, 3, 3, 6, 5, 2, 9, 7, 5, 3, 6, 7, 0, 9, 2, 2], [1, 4, 5, 9, 5, 0, 3, 2, 5, 4, 2, 5, 0, 8, 8, 2, 2, 2, 7, 2, 9, 9, 1, 5, 6, 6, 0, 5, 2, 6, 8, 6, 0], [9, 3, 2, 0, 4, 1, 7, 6, 0, 9, 6, 9, 7, 8, 0, 1, 7, 3, 5, 1, 8, 7, 5, 5, 8, 2, 8, 1, 7, 2, 0, 9, 2], [4, 0, 6, 6, 7, 5, 5, 4, 1, 9, 6, 6, 2, 5, 8, 8, 8, 4, 3, 1, 1, 8, 2, 7, 8, 0, 7, 5, 5, 6, 9, 2, 3], [7, 3, 5, 2, 2, 8, 7, 1, 0, 0, 3, 8, 2, 2, 2, 4, 0, 4, 2, 7, 0, 6, 6, 4, 5, 7, 4, 8, 1, 9, 0, 3, 3], [2, 2, 1, 3, 6, 7, 1, 2, 8, 6, 6, 0, 3, 9, 8, 1, 1, 4, 2, 1, 1, 4, 2, 0, 1, 2, 4, 5, 9, 2, 1, 5, 6], [9, 4, 0, 4, 7, 4, 7, 3, 3, 6, 9, 5, 1, 2, 8, 0, 3, 8, 5, 5, 0, 6, 3, 4, 7, 4, 2, 2, 2, 9, 3, 8, 1], [7, 5, 6, 0, 6, 3, 1, 5, 8, 2, 4, 6, 7, 6, 5, 0, 6, 0, 5, 0, 4, 2, 0, 7, 0, 4, 1, 5, 3, 0, 2, 5, 0], [8, 7, 6, 1, 7, 5, 3, 0, 1, 0, 8, 3, 8, 6, 7, 0, 3, 5, 0, 5, 7, 2, 0, 2, 9, 8, 1, 6, 5, 1, 6, 3, 9], [1, 1, 1, 3, 2, 0, 6, 3, 0, 2, 9, 6, 6, 5, 7, 5, 2, 0, 1, 0, 6, 6, 6, 2, 3, 5, 5, 8, 1, 1, 5, 2, 9]], "source_dataset": "rotate_matrix", "source_index": 0}
You are given an n x n grid where each cell can have one of three values: - 0 representing an empty cell - 1 representing a fresh orange - 2 representing a rotten orange Every minute, any fresh orange that is 4-directionally adjacent to a rotten orange becomes rotten. Your task is determine the minimum number of minutes that must elapse until no cell has a fresh orange. If this is impossible, return -1. Now, determine the minimum number of minutes that must elapse until no cell in the grid below has a fresh orange: 1 0 1 1 1 1 1 1 0 1 1 1 0 1 0 1 1 0 2 1 1 1 1 2 1 1 1 1 1 1 2 1 1 1 0 0 1 1 1 1 1 1 1 1 0 1 0 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 1 1 1 1 1 0 1 1 1 2 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 2 2 2 1 1 1 1 0 1 0 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 2 1 2 1 1 1 1 1 0 1 0 1 0 1 1 1 1 1 1 0 1 1 0 1 1 0 1 0 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 2 1 2 1 1 2 1 1 2 1 1 1 1 1 1 0 2 1 1 1 1 1 1 1 1 1 1 1 2 1 1 2 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 2 1 1 1 1 1 1 2 0 1 1 1 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 1 1 0 1 1 1 1 0 1 1 1 0 1 1 0 1 1 1 1 1 1 1 0 1 1 0 0 2 1 0 1 1 1 1 2 1 1 1 2 1 0 1 1 1 0 1 0 1 1 1 0 0 0 0 0 0 1 1 0 1 1 1 2 1 1 2 1 1 1 1 1 1 1 0 1 0 0 1 0 1 2 1 2 1 0 0 2 1 0 1 1 1 0 2 1 1 1 1 1 1 1 0 0 2 1 0 1 1 1 1 1 0 0 1 1 1 1 1 1 1 0 1 2 1 1 2 1 1 1 1 1 0 1 1 1 1 0 1 1 0 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 2 1 0 1 1 1 1 0 2 1 1 0 1 1 1 1 0 0 1 1 2 1 1 1 0 0 1 1 1 1 1 1 1 1 0 0 1 2 1 1 1 1 1 1 1 1 1 1 0 1 1 1 2 2 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 0 2 1 1 1 1 0 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 2 2 2 0 2 1 1 0 1 2 1 1 1 1 1 1 0 1 1 1 1 2 1 2 1 2 1 2 2 1 1 0 0 1 2 0 1 0 1 0 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 2 0 1 2 1 1 2 1 1 1 0 1 1 1 0 1 1 1 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 0 1 1 1 1 2 0 1 1 1 0 1 1 1 1 1 1 1 1 1 0 1 0 1 1 0 1 0 1 1 0 1 1 0 1 1 1 1 2 0 1 0 1 1 1 1 1 1 1 1 1 1 1 2 1 2 0 1 0 1 1 1 1 1 2 0 0 1 1 1 1 1 1 1 2 2 1 0 1 1 1 1 1 0 1 1 1 1 1 1 0 1 1 1 1 0 1 2 1 1 2 0 2 1 1 1 2 1 1 1 1 1 1 0 1 1 2 1 1 2 1 1 0 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 0 1 2 1 0 1 1 1 1 2 1 1 1 2 2 1 1 1 1 0 1 1 1 1 1 0 0 1 1 1 1 1 1 1 2 1 2 1 1 1 1 1 0 1 0 1 1 1 1 1 0 1 1 2 1 0 1 0 1 1 1 1 1 2 1 2 1 1 1 1 1 0 2 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 2 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 0 2 0 1 0 1 2 1 1 1 1 1 1 1 1 0 1 1 0 2 1 2 0 0 1 1 1 1 1 1 1 2 1 0 1 1 1 1 1 0 1 1 1 0 0 2 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 2 1 2 1 2 2 1 1 1 0 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 0 1 0 2 1 1 1 0 0 1 1 2 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 0 1 1 1 0 0 1 0 1 1 0 1 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 0 1 1 2 2 1 1 1 1 1 0 1 1 1 1 1 2 1 0 1 1 1 1 0 1 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 2 1 2 1 2 1 0 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 0 1 1 2 1 2 1 1 0 1 0 1 1 1 1 1 1 0 1 1 0 1 1 1 1 1 1 0 1 1 1 1 0 1 1 1 1 2 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 0 0 0 0 1 2 0 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 0 1 0 1 1 1 1 1 1 0 1 1 1 2 1 1 1 1 1 0 1 1 0 1 0 0 0 1 1 1 0 1 1 1 1 1 1 1 2 2
-1
rotten_oranges
{"difficulty": {"n": [25, 50]}, "matrix": [[1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 0], [1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1], [1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1], [1, 1, 2, 2, 2, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1], [1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 2, 1, 2, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1], [0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 2, 1, 0, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 0, 1, 1], [1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0], [1, 2, 1, 2, 1, 0, 0, 2, 1, 0, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1, 1, 0, 0, 2, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1], [1, 1, 1, 1, 1, 0, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2], [1, 1, 1, 1, 2, 1, 0, 1, 1, 1, 1, 0, 2, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 2, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1], [1, 1, 0, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 2, 1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 2, 2, 2, 0, 2, 1, 1], [0, 1, 2, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 2, 1, 1, 0, 0, 1, 2, 0, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 2, 0, 1, 2, 1, 1, 2, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 2, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], [0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 2, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2], [0, 1, 0, 1, 1, 1, 1, 1, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1], [1, 1, 1, 0, 1, 2, 1, 1, 2, 0, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 2, 1, 1, 0, 1, 1, 1, 1, 2], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 0, 1, 2, 1, 0, 1, 1, 1, 1, 2, 1, 1, 1, 2, 2, 1, 1, 1, 1, 0, 1], [1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 0, 1], [0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 0, 2, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 2, 0, 1, 0, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0], [1, 1, 0, 2, 1, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 2, 1, 1, 1, 1, 1, 1], [1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 2, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 0, 1, 0, 2, 1, 1, 1, 0, 0, 1, 1, 2, 1, 2, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0], [1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 2, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2], [1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 2, 1, 2, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0], [1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 2, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 2, 1, 1, 1, 0, 0, 0, 0, 1, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1], [1, 1, 1, 1, 1, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 2]], "n": 36, "solution": -1, "source_dataset": "rotten_oranges", "source_index": 2}
An anagram is a word formed by rearranging the letters of a different word, using all the original letters exactly once. Your job is to group the anagrams together. You can return the answer in any order. The output is a list of lists of strings, where each outer list contains a group of anagrams, e.g. [["eat", "tea"], ["tan", "nat"]]. Group the following list of words into anagrams: ["workup", "upwork", "loran", "laron", "snailery", "inlayers", "tingidae", "ideating", "rifleries", "resilifer", "percha", "pearch", "aperch", "preach", "adenous", "douanes", "aedilic", "elaidic", "rhoncal", "chronal", "brookiest", "brookites", "dustpan", "upstand", "standup", "capparis", "papricas"]
[["adenous", "douanes"], ["aedilic", "elaidic"], ["aperch", "pearch", "percha", "preach"], ["brookiest", "brookites"], ["capparis", "papricas"], ["chronal", "rhoncal"], ["dustpan", "standup", "upstand"], ["ideating", "tingidae"], ["inlayers", "snailery"], ["laron", "loran"], ["resilifer", "rifleries"], ["upwork", "workup"]]
group_anagrams
{"anagram_groups": 12, "difficulty": {"anagram_groups": [10, 50], "words_per_group": [2, 5]}, "solution": [["adenous", "douanes"], ["aedilic", "elaidic"], ["aperch", "pearch", "percha", "preach"], ["brookiest", "brookites"], ["capparis", "papricas"], ["chronal", "rhoncal"], ["dustpan", "standup", "upstand"], ["ideating", "tingidae"], ["inlayers", "snailery"], ["laron", "loran"], ["resilifer", "rifleries"], ["upwork", "workup"]], "source_dataset": "group_anagrams", "source_index": 49, "words": ["workup", "upwork", "loran", "laron", "snailery", "inlayers", "tingidae", "ideating", "rifleries", "resilifer", "percha", "pearch", "aperch", "preach", "adenous", "douanes", "aedilic", "elaidic", "rhoncal", "chronal", "brookiest", "brookites", "dustpan", "upstand", "standup", "capparis", "papricas"]}
Decrypt this Caesar cipher text: SXFK QEB XQQBJMQ QL BPQFJXQB QEB XJLRKQ LC IXYLO EB XK BUXJMIB XILKB ZXK DFSB XK FABX LC FQ. Provide only the decrypted text as your final answer.
VAIN THE ATTEMPT TO ESTIMATE THE AMOUNT OF LABOR HE AN EXAMPLE ALONE CAN GIVE AN IDEA OF IT
caesar_cipher
{"cipher_text": "SXFK QEB XQQBJMQ QL BPQFJXQB QEB XJLRKQ LC IXYLO EB XK BUXJMIB XILKB ZXK DFSB XK FABX LC FQ", "clear_text": "VAIN THE ATTEMPT TO ESTIMATE THE AMOUNT OF LABOR HE AN EXAMPLE ALONE CAN GIVE AN IDEA OF IT", "difficulty": {"rotation": [15, 25], "words": [15, 25]}, "num_words": 19, "rotation": 23, "source_dataset": "caesar_cipher", "source_index": 101}
Sort these numbers in descending order: 72.42, -399.1252, 487.711, -446.965, -302.57, 407.04, 100.8184, 402.0678, -160.533, -265.3169, -399.6743, -443.7, 180.275, 44.8467, 240.9, -371.289, -23.622, -121.4746, -452.276, -299.8, -84.3813, -126.4565, -346.024, 166.62, -163.92, 367.24, 90.4296, -460.3847, 447.633, 32.265, -226.27, 79.7224, -393.2247, 67.6017, 191.69, -406.0162, 53.12, -184.63, 113.4088, -230.05, 387.37, 364.965, 384.723, -484.7543, 196.7401, -439.68, -156.06, -0.212, -240.49, -397.1257, -149.798, 444.65, 273.05 Please follow the instruction below: ## 1. Let all your answers be a list of numbers. Instead of reporting your answer as -69, -13, 1, 7, 11, 43, 59, 61, use ['-69', '-13', '1', '7', '11', '43', '59', '61'] instead ## 2. Convert all numbers in the square brackets as strings. For example, ['-69', '-13', '1', '7', '11', '43', '59', '61']
['487.711', '447.633', '444.65', '407.04', '402.0678', '387.37', '384.723', '367.24', '364.965', '273.05', '240.9', '196.7401', '191.69', '180.275', '166.62', '113.4088', '100.8184', '90.4296', '79.7224', '72.42', '67.6017', '53.12', '44.8467', '32.265', '-0.212', '-23.622', '-84.3813', '-121.4746', '-126.4565', '-149.798', '-156.06', '-160.533', '-163.92', '-184.63', '-226.27', '-230.05', '-240.49', '-265.3169', '-299.8', '-302.57', '-346.024', '-371.289', '-393.2247', '-397.1257', '-399.1252', '-399.6743', '-406.0162', '-439.68', '-443.7', '-446.965', '-452.276', '-460.3847', '-484.7543']
number_sorting
{"difficulty": {"decimals": [2, 4], "numbers": [50, 100], "value": [-500, 500]}, "direction": "descending", "numbers": 53, "original_numbers": ["72.42", "-399.1252", "487.711", "-446.965", "-302.57", "407.04", "100.8184", "402.0678", "-160.533", "-265.3169", "-399.6743", "-443.7", "180.275", "44.8467", "240.9", "-371.289", "-23.622", "-121.4746", "-452.276", "-299.8", "-84.3813", "-126.4565", "-346.024", "166.62", "-163.92", "367.24", "90.4296", "-460.3847", "447.633", "32.265", "-226.27", "79.7224", "-393.2247", "67.6017", "191.69", "-406.0162", "53.12", "-184.63", "113.4088", "-230.05", "387.37", "364.965", "384.723", "-484.7543", "196.7401", "-439.68", "-156.06", "-0.212", "-240.49", "-397.1257", "-149.798", "444.65", "273.05"], "sorted_numbers": ["487.711", "447.633", "444.65", "407.04", "402.0678", "387.37", "384.723", "367.24", "364.965", "273.05", "240.9", "196.7401", "191.69", "180.275", "166.62", "113.4088", "100.8184", "90.4296", "79.7224", "72.42", "67.6017", "53.12", "44.8467", "32.265", "-0.212", "-23.622", "-84.3813", "-121.4746", "-126.4565", "-149.798", "-156.06", "-160.533", "-163.92", "-184.63", "-226.27", "-230.05", "-240.49", "-265.3169", "-299.8", "-302.57", "-346.024", "-371.289", "-393.2247", "-397.1257", "-399.1252", "-399.6743", "-406.0162", "-439.68", "-443.7", "-446.965", "-452.276", "-460.3847", "-484.7543"], "source_dataset": "number_sorting", "source_index": 119}
Your task is to convert a number between two different bases. If the target base is > 10, use lowercase letters a-z for digits above 9. Now, convert the base-13 number 20a94 to base-10
58933
base_conversion
{"decimal_value": 58933, "difficulty": {"base": [9, 18], "value": [10000, 100000]}, "source_base": 13, "source_dataset": "base_conversion", "source_index": 116, "source_repr": "20a94", "target_base": 10, "target_repr": "58933"}
Sort these numbers in descending order: 31.8592, 39.22, 446.96, -360.5, 101.1363, -223.36, -455.1634, 29.17, 129.17, -139.9961, 295.671, -346.0, -108.391, 120.8983, -103.367, 9.01, -389.08, 183.3265, -30.26, -475.72, 30.0392, -149.112, -302.2395, 401.87, 396.86, 63.06, 397.3631, -110.3683, -29.8235, 156.38, 187.955, 200.7614, 342.91, 77.9, -47.825, 378.06, 74.801, -114.5009, -305.9, -272.33, -324.6107, -256.75, -299.743, 127.7, -127.043, 368.26, 229.688, -277.2235, -476.677, 244.6879, -347.3109, 192.512, -130.3461, -22.02, 9.429, 214.544, -401.0315, -151.83, -449.4, -39.755, 377.83, 281.1492, -239.02, -497.1067, -117.304, -302.533, -4.96, 255.302, -311.925, 275.8124, 320.38, 441.148, 277.09, -433.657, 50.3484, -235.3606, 231.732, -162.5363, 86.507, -163.27, -419.1091, -404.4623, -296.04, -257.98, -35.864, -120.948, 460.133, -368.104, -310.9592, -492.2483, 288.1883, 252.92, -72.581, 208.83, 292.52, 213.6759, -465.88, -214.82 Please follow the instruction below: ## 1. Let all your answers be a list of numbers. Instead of reporting your answer as -69, -13, 1, 7, 11, 43, 59, 61, use ['-69', '-13', '1', '7', '11', '43', '59', '61'] instead ## 2. Convert all numbers in the square brackets as strings. For example, ['-69', '-13', '1', '7', '11', '43', '59', '61']
['460.133', '446.96', '441.148', '401.87', '397.3631', '396.86', '378.06', '377.83', '368.26', '342.91', '320.38', '295.671', '292.52', '288.1883', '281.1492', '277.09', '275.8124', '255.302', '252.92', '244.6879', '231.732', '229.688', '214.544', '213.6759', '208.83', '200.7614', '192.512', '187.955', '183.3265', '156.38', '129.17', '127.7', '120.8983', '101.1363', '86.507', '77.9', '74.801', '63.06', '50.3484', '39.22', '31.8592', '30.0392', '29.17', '9.429', '9.01', '-4.96', '-22.02', '-29.8235', '-30.26', '-35.864', '-39.755', '-47.825', '-72.581', '-103.367', '-108.391', '-110.3683', '-114.5009', '-117.304', '-120.948', '-127.043', '-130.3461', '-139.9961', '-149.112', '-151.83', '-162.5363', '-163.27', '-214.82', '-223.36', '-235.3606', '-239.02', '-256.75', '-257.98', '-272.33', '-277.2235', '-296.04', '-299.743', '-302.2395', '-302.533', '-305.9', '-310.9592', '-311.925', '-324.6107', '-346.0', '-347.3109', '-360.5', '-368.104', '-389.08', '-401.0315', '-404.4623', '-419.1091', '-433.657', '-449.4', '-455.1634', '-465.88', '-475.72', '-476.677', '-492.2483', '-497.1067']
number_sorting
{"difficulty": {"decimals": [2, 4], "numbers": [50, 100], "value": [-500, 500]}, "direction": "descending", "numbers": 98, "original_numbers": ["31.8592", "39.22", "446.96", "-360.5", "101.1363", "-223.36", "-455.1634", "29.17", "129.17", "-139.9961", "295.671", "-346.0", "-108.391", "120.8983", "-103.367", "9.01", "-389.08", "183.3265", "-30.26", "-475.72", "30.0392", "-149.112", "-302.2395", "401.87", "396.86", "63.06", "397.3631", "-110.3683", "-29.8235", "156.38", "187.955", "200.7614", "342.91", "77.9", "-47.825", "378.06", "74.801", "-114.5009", "-305.9", "-272.33", "-324.6107", "-256.75", "-299.743", "127.7", "-127.043", "368.26", "229.688", "-277.2235", "-476.677", "244.6879", "-347.3109", "192.512", "-130.3461", "-22.02", "9.429", "214.544", "-401.0315", "-151.83", "-449.4", "-39.755", "377.83", "281.1492", "-239.02", "-497.1067", "-117.304", "-302.533", "-4.96", "255.302", "-311.925", "275.8124", "320.38", "441.148", "277.09", "-433.657", "50.3484", "-235.3606", "231.732", "-162.5363", "86.507", "-163.27", "-419.1091", "-404.4623", "-296.04", "-257.98", "-35.864", "-120.948", "460.133", "-368.104", "-310.9592", "-492.2483", "288.1883", "252.92", "-72.581", "208.83", "292.52", "213.6759", "-465.88", "-214.82"], "sorted_numbers": ["460.133", "446.96", "441.148", "401.87", "397.3631", "396.86", "378.06", "377.83", "368.26", "342.91", "320.38", "295.671", "292.52", "288.1883", "281.1492", "277.09", "275.8124", "255.302", "252.92", "244.6879", "231.732", "229.688", "214.544", "213.6759", "208.83", "200.7614", "192.512", "187.955", "183.3265", "156.38", "129.17", "127.7", "120.8983", "101.1363", "86.507", "77.9", "74.801", "63.06", "50.3484", "39.22", "31.8592", "30.0392", "29.17", "9.429", "9.01", "-4.96", "-22.02", "-29.8235", "-30.26", "-35.864", "-39.755", "-47.825", "-72.581", "-103.367", "-108.391", "-110.3683", "-114.5009", "-117.304", "-120.948", "-127.043", "-130.3461", "-139.9961", "-149.112", "-151.83", "-162.5363", "-163.27", "-214.82", "-223.36", "-235.3606", "-239.02", "-256.75", "-257.98", "-272.33", "-277.2235", "-296.04", "-299.743", "-302.2395", "-302.533", "-305.9", "-310.9592", "-311.925", "-324.6107", "-346.0", "-347.3109", "-360.5", "-368.104", "-389.08", "-401.0315", "-404.4623", "-419.1091", "-433.657", "-449.4", "-455.1634", "-465.88", "-475.72", "-476.677", "-492.2483", "-497.1067"], "source_dataset": "number_sorting", "source_index": 16}