{"ScriptPreparationCode":"function double(n) {\r\n\treturn n*2;\r\n}\r\nvar data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30];","TestCases":[{"Name":"js","Code":"const d = data.concat(data);\r\nconst e = d.concat(d);\r\nconst f = e.concat(e).map(double);","IsDeferred":false},{"Name":"ramda concat","Code":"const con = data =\u003E R.concat(data, data)\r\n\r\nconst f = R.map(double,con(con(con(data))))","IsDeferred":false}]}