Dataset Viewer
Auto-converted to Parquet Duplicate
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}
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
14