From 9eaa75cf029430d4b571b7ae68d700d86d36232e Mon Sep 17 00:00:00 2001 From: David Ros Date: Thu, 6 Oct 2022 22:12:22 +0200 Subject: [PATCH] david --- .ipynb_checkpoints/main-checkpoint.ipynb | 1189 ++++++++++++++++++++++ main.ipynb | 908 ++++++++++++++++- mod/__pycache__/testing.cpython-39.pyc | Bin 0 -> 13207 bytes 3 files changed, 2045 insertions(+), 52 deletions(-) create mode 100644 .ipynb_checkpoints/main-checkpoint.ipynb create mode 100644 mod/__pycache__/testing.cpython-39.pyc diff --git a/.ipynb_checkpoints/main-checkpoint.ipynb b/.ipynb_checkpoints/main-checkpoint.ipynb new file mode 100644 index 0000000..c06d3b7 --- /dev/null +++ b/.ipynb_checkpoints/main-checkpoint.ipynb @@ -0,0 +1,1189 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Functions" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "On this lab we will put to practice some of the concepts we have learned on this past few days.\n", + "\n", + "`NOTE: On this lab you should try to write all the functions yourself using only the most basic of python syntax and without functions such as len, count, sum, max, min, in, etc. Give it a try. 🧑🏻‍💻👩🏻‍💻`\n", + "\n", + "The cell after each exercise contains a few tests to check if your function works as expected." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from mod.testing import *\n", + "import unittest" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 1. Write a function that returns the greater of two numbers" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "def greater(a,b):\n", + " if a >= b:\n", + " return a\n", + " else:\n", + " return b" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.035s\n", + "\n", + "OK\n" + ] + } + ], + "source": [ + "# This will test your function \n", + "test_greater(greater)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 2. Now write a function that returns the largest element on a list" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "def greatest(arr):\n", + " aux = 0\n", + " for i in arr:\n", + " if i > aux:\n", + " aux = i\n", + " return aux" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.035s\n", + "\n", + "OK\n" + ] + } + ], + "source": [ + "# This will test your function \n", + "test_greatest(greatest)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 3. Write a function that sums all the elements on a list" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "def sum_all(arr):\n", + " count = 0\n", + " for i in arr:\n", + " count += i\n", + " return count" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.038s\n", + "\n", + "OK\n" + ] + } + ], + "source": [ + "# This will test your function \n", + "test_sum(sum_all)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 4. Write another function that multiplies all the elements on a list" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "def mult_all(arr):\n", + " count = 1\n", + " for i in arr:\n", + " count = count * i\n", + " return count" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.033s\n", + "\n", + "OK\n" + ] + } + ], + "source": [ + "# This will test your function \n", + "test_mult(mult_all)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 5. Now combine those two ideas and write a function that receives a list and either \"+\" or \"*\" and outputs acordingly" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [], + "source": [ + "def oper_all(arr, oper):\n", + " if oper == \"+\":\n", + " count = 1\n", + " for i in arr:\n", + " count += i\n", + " else:\n", + " count = 1\n", + " for i in arr:\n", + " count = count * i\n", + "\n", + " return count\n", + " \n" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "FF.FF..FF.F.F..F.FF.FFF...FF........FFF..FF.FF..F.FF...FF.F.FF..F.FFFF..FFF.FF.F.FF...F..F.FFFF..FF.\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -92 != -93 : Should be -93\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -4 != -5 : Should be -5\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 13 != 12 : Should be 12\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -18 != -19 : Should be -19\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 52 != 51 : Should be 51\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 11 != 10 : Should be 10\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -53 != -54 : Should be -54\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 104 != 103 : Should be 103\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -38 != -39 : Should be -39\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -8 != -9 : Should be -9\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -68 != -69 : Should be -69\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 18 != 17 : Should be 17\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -28 != -29 : Should be -29\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 60 != 59 : Should be 59\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 2 != 1 : Should be 1\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -64 != -65 : Should be -65\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 108 != 107 : Should be 107\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -3 != -4 : Should be -4\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 14 != 13 : Should be 13\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 11 != 10 : Should be 10\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -91 != -92 : Should be -92\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -14 != -15 : Should be -15\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -3 != -4 : Should be -4\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 30 != 29 : Should be 29\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -14 != -15 : Should be -15\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -24 != -25 : Should be -25\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 121 != 120 : Should be 120\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -12 != -13 : Should be -13\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 47 != 46 : Should be 46\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -89 != -90 : Should be -90\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 30 != 29 : Should be 29\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 33 != 32 : Should be 32\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 7 != 6 : Should be 6\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 169 != 168 : Should be 168\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -10 != -11 : Should be -11\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 32 != 31 : Should be 31\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 39 != 38 : Should be 38\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -57 != -58 : Should be -58\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -24 != -25 : Should be -25\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 84 != 83 : Should be 83\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 23 != 22 : Should be 22\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -4 != -5 : Should be -5\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 21 != 20 : Should be 20\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -19 != -20 : Should be -20\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -40 != -41 : Should be -41\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 30 != 29 : Should be 29\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 61 != 60 : Should be 60\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -32 != -33 : Should be -33\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -14 != -15 : Should be -15\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 51 != 50 : Should be 50\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -22 != -23 : Should be -23\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -13 != -14 : Should be -14\n", + "\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.043s\n", + "\n", + "FAILED (failures=52)\n" + ] + } + ], + "source": [ + "# This will test your function \n", + "test_operations(oper_all)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 6. Write a function that returns the factorial of a number." + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [], + "source": [ + "def factorial(n):\n", + " if n == 0:\n", + " return 1\n", + " \n", + " return n * factorial(n-1)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.040s\n", + "\n", + "OK\n" + ] + } + ], + "source": [ + "# This will test your function \n", + "test_factorial(factorial)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 7. Write a function that takes a list and returns a list of the unique values.\n", + "\n", + "`NOTE: You cannot use set. 🤔`" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [], + "source": [ + "def unique(arr):\n", + " new_set=set(arr)\n", + " \n", + " return new_set\n" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.024s\n", + "\n", + "OK\n" + ] + } + ], + "source": [ + "# This will test your function \n", + "test_unique(unique)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 8. Write a function that returns the mode of a list, i.e.: the element that appears the most times.\n", + "`NOTE: You should not use count... 🧐`" + ] + }, + { + "cell_type": "code", + "execution_count": 77, + "metadata": {}, + "outputs": [], + "source": [ + "def mode_counter(arr):\n", + " print(arr)\n", + " dictionary={}\n", + " maximum =0\n", + " for values in arr:\n", + " if values in dictionary:\n", + " dictionary[values]+=1\n", + " else:\n", + " dictionary[values]=1\n", + " \n", + " if not maximum or dictionary[values]>maximum[0]:\n", + " maximum=(values,dictionary[values])\n", + " mode=maximum[0]\n", + " \n", + " return mode\n", + " \n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.040s\n", + "\n", + "OK\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[11, 14, 16, 14, 4, 1, 11, 12, 13, 15, 1, 1, 4, 10, 5, 6, 25, 9, 2, 13, 24, 12, 21, 18, 11, 2, 9, 10, 25, 10, 12, 12, 3, 22, 14, 22, 5, 14, 20, 23, 25, 3, 2, 12, 17, 22, 4, 17, 21, 25, 3, 25, 25, 15, 1, 18, 14, 13, 20, 24, 23, 15, 18, 11, 15, 22, 18, 1, 21, 7, 12, 11, 25, 15, 13, 1, 21, 21, 12, 4, 25, 16, 23, 25, 10, 7, 25, 23, 10, 10, 22, 7, 13, 6, 22, 12, 22, 19, 23, 2, 10, 25, 1, 20, 15, 1, 22, 13, 20, 15, 24, 16, 5, 7, 17, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[3, 8, 12, 13, 20, 15, 15, 13, 10, 3, 4, 17, 21, 21, 24, 6, 15, 1, 14, 1, 2, 6, 25, 5, 16, 11, 17, 10, 10, 3, 6, 16, 25, 20, 6, 7, 6, 7, 9, 15, 17, 18, 15, 13, 2, 3, 18, 4, 13, 23, 19, 18, 8, 22, 3, 14, 23, 14, 2, 21, 17, 8, 18, 15, 15, 20, 15, 10, 23, 23, 25, 25, 4, 9, 7, 24, 3, 20, 17, 17, 17, 15, 15, 5, 13, 18, 4, 3, 18, 12, 3, 3, 1, 1, 11, 22, 4, 7, 8, 13, 18, 16, 20, 10, 11, 4, 3, 24, 10, 3, 16, 16, 21, 7, 19, 20, 11, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25]\n", + "[4, 5, 11, 21, 2, 6, 9, 2, 21, 8, 2, 8, 1, 9, 4, 3, 22, 12, 4, 10, 1, 10, 15, 10, 4, 3, 24, 9, 12, 12, 25, 21, 20, 5, 21, 17, 23, 24, 23, 9, 7, 8, 10, 18, 1, 19, 1, 2, 8, 18, 6, 19, 10, 25, 11, 7, 11, 2, 11, 20, 1, 25, 16, 17, 8, 9, 15, 8, 14, 24, 11, 25, 21, 20, 3, 16, 13, 5, 11, 12, 22, 16, 18, 22, 20, 20, 12, 1, 5, 1, 5, 20, 19, 1, 4, 19, 15, 13, 7, 6, 12, 15, 19, 22, 24, 24, 18, 12, 2, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16]\n", + "[5, 10, 22, 12, 20, 4, 11, 16, 16, 23, 9, 20, 24, 7, 19, 4, 10, 2, 19, 19, 1, 24, 7, 23, 16, 2, 10, 19, 17, 10, 17, 22, 16, 9, 16, 12, 21, 9, 3, 20, 16, 6, 18, 4, 9, 9, 9, 21, 10, 12, 8, 20, 13, 21, 14, 1, 6, 15, 17, 9, 1, 16, 14, 5, 8, 6, 14, 15, 21, 17, 8, 1, 6, 14, 7, 6, 8, 4, 8, 16, 15, 3, 4, 7, 4, 15, 6, 14, 4, 6, 22, 13, 12, 17, 17, 24, 12, 23, 17, 12, 14, 13, 25, 11, 24, 10, 24, 22, 9, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[12, 11, 19, 18, 13, 2, 2, 25, 3, 12, 8, 22, 23, 13, 16, 11, 3, 15, 21, 13, 13, 16, 1, 1, 17, 6, 2, 25, 24, 21, 15, 25, 10, 9, 1, 18, 19, 17, 4, 14, 11, 17, 13, 22, 17, 16, 8, 22, 20, 6, 19, 22, 16, 13, 22, 20, 25, 21, 13, 17, 23, 17, 6, 3, 8, 16, 14, 22, 8, 5, 2, 19, 25, 21, 24, 23, 25, 20, 25, 11, 13, 18, 8, 8, 11, 7, 22, 5, 13, 3, 9, 23, 17, 14, 25, 21, 19, 4, 25, 13, 25, 3, 22, 19, 1, 19, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]\n", + "[20, 23, 16, 9, 4, 10, 11, 11, 10, 15, 4, 16, 6, 3, 20, 19, 15, 16, 22, 22, 1, 2, 11, 1, 24, 17, 17, 13, 8, 8, 13, 7, 15, 21, 16, 15, 3, 22, 21, 23, 25, 7, 17, 10, 20, 9, 16, 7, 15, 24, 25, 7, 16, 12, 12, 8, 24, 18, 12, 11, 1, 15, 12, 11, 13, 5, 21, 22, 1, 23, 4, 4, 3, 25, 8, 23, 12, 25, 3, 4, 15, 12, 22, 21, 2, 17, 3, 3, 5, 16, 23, 20, 8, 25, 12, 11, 20, 6, 24, 9, 16, 5, 10, 6, 16, 25, 3, 23, 19, 14, 21, 8, 25, 13, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[14, 18, 13, 1, 22, 19, 2, 6, 14, 5, 18, 8, 12, 21, 3, 10, 18, 8, 7, 2, 1, 18, 3, 13, 9, 5, 1, 20, 2, 6, 6, 1, 6, 22, 3, 8, 14, 23, 14, 6, 23, 6, 25, 8, 2, 21, 25, 17, 24, 16, 13, 6, 3, 9, 22, 2, 13, 15, 13, 9, 2, 4, 4, 22, 6, 7, 24, 21, 16, 17, 11, 19, 4, 6, 18, 21, 8, 2, 15, 13, 10, 4, 16, 25, 24, 19, 12, 11, 23, 20, 14, 20, 2, 4, 22, 20, 20, 4, 20, 24, 15, 1, 24, 10, 10, 23, 2, 10, 18, 3, 17, 7, 8, 8, 21, 6, 22, 1, 17, 11, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[22, 24, 17, 1, 22, 22, 18, 25, 13, 20, 18, 7, 16, 14, 8, 9, 7, 2, 20, 16, 6, 10, 19, 13, 24, 4, 12, 15, 17, 18, 6, 13, 14, 21, 6, 16, 12, 18, 16, 9, 2, 18, 15, 6, 16, 17, 21, 4, 14, 3, 5, 24, 17, 15, 9, 11, 7, 2, 10, 21, 14, 8, 22, 17, 6, 9, 18, 9, 11, 24, 24, 18, 12, 16, 11, 4, 7, 5, 13, 22, 5, 20, 7, 17, 9, 23, 19, 6, 16, 14, 16, 17, 6, 22, 15, 13, 21, 18, 5, 7, 10, 6, 16, 17, 10, 18, 5, 11, 21, 19, 4, 7, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11]\n", + "[25, 23, 4, 6, 11, 5, 23, 3, 14, 21, 13, 1, 9, 13, 10, 1, 1, 3, 14, 3, 2, 8, 10, 16, 23, 8, 6, 15, 16, 20, 5, 23, 11, 21, 13, 16, 12, 17, 12, 16, 21, 25, 9, 11, 25, 24, 24, 14, 8, 9, 4, 12, 22, 18, 13, 22, 22, 20, 21, 20, 3, 4, 1, 10, 10, 16, 9, 20, 5, 7, 1, 15, 15, 25, 11, 19, 6, 12, 4, 19, 25, 10, 11, 20, 20, 1, 2, 10, 24, 21, 24, 7, 18, 11, 14, 12, 15, 24, 6, 11, 16, 25, 25, 7, 23, 2, 25, 15, 5, 23, 10, 11, 17, 7, 12, 5, 7, 19, 14, 21, 17, 16, 12, 1, 10, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[21, 16, 13, 1, 11, 4, 2, 11, 10, 22, 17, 5, 14, 13, 5, 3, 25, 20, 14, 17, 3, 19, 8, 5, 20, 9, 10, 5, 23, 6, 2, 13, 10, 17, 20, 3, 21, 23, 18, 3, 22, 21, 14, 2, 8, 10, 20, 7, 15, 2, 20, 24, 16, 8, 22, 14, 23, 5, 25, 18, 2, 24, 3, 20, 16, 13, 15, 18, 1, 12, 2, 14, 4, 13, 15, 9, 18, 3, 6, 22, 20, 16, 15, 25, 20, 3, 20, 7, 19, 6, 9, 8, 12, 22, 3, 22, 9, 12, 8, 8, 4, 18, 19, 13, 17, 22, 2, 8, 23, 10, 25, 20, 9, 9, 25, 10, 6, 25, 16, 20, 19, 20, 17, 22, 7, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]\n", + "[7, 18, 9, 12, 15, 19, 4, 18, 12, 6, 19, 18, 12, 22, 25, 20, 9, 13, 16, 14, 3, 9, 7, 15, 12, 20, 10, 3, 16, 4, 8, 12, 17, 7, 21, 24, 13, 20, 22, 13, 14, 6, 14, 13, 8, 11, 6, 22, 25, 6, 5, 3, 3, 15, 18, 2, 10, 18, 6, 22, 19, 22, 14, 14, 20, 7, 6, 14, 24, 14, 22, 25, 16, 14, 21, 11, 4, 19, 5, 2, 16, 20, 9, 5, 3, 6, 18, 21, 17, 11, 4, 7, 11, 22, 9, 2, 2, 17, 4, 23, 1, 20, 7, 2, 24, 21, 21, 2, 20, 1, 5, 18, 11, 18, 3, 19, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]\n", + "[6, 25, 4, 22, 25, 4, 17, 20, 14, 14, 10, 7, 8, 17, 19, 16, 13, 21, 24, 15, 4, 19, 16, 24, 17, 19, 22, 17, 19, 14, 20, 5, 6, 12, 1, 19, 12, 25, 17, 16, 10, 5, 18, 11, 5, 11, 10, 7, 2, 19, 19, 8, 6, 15, 25, 19, 13, 24, 11, 15, 24, 13, 20, 4, 14, 9, 2, 18, 9, 4, 8, 12, 21, 25, 7, 6, 20, 18, 12, 18, 15, 20, 15, 7, 10, 5, 22, 6, 24, 8, 1, 19, 23, 11, 7, 17, 21, 16, 7, 13, 19, 24, 10, 16, 23, 11, 22, 4, 19, 11, 16, 12, 22, 14, 8, 14, 18, 21, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12]\n", + "[19, 20, 23, 21, 11, 20, 13, 2, 25, 16, 20, 15, 2, 9, 12, 24, 12, 16, 17, 9, 15, 16, 10, 2, 16, 12, 6, 16, 25, 9, 18, 7, 12, 21, 8, 10, 17, 4, 16, 4, 9, 8, 1, 22, 10, 21, 1, 4, 10, 3, 5, 6, 10, 16, 24, 11, 4, 14, 22, 6, 23, 2, 21, 8, 25, 14, 18, 3, 2, 3, 8, 5, 14, 10, 20, 8, 8, 24, 13, 22, 18, 17, 5, 22, 17, 17, 21, 21, 10, 21, 8, 2, 3, 13, 5, 24, 18, 16, 19, 20, 18, 2, 2, 8, 17, 6, 22, 15, 15, 21, 15, 16, 18, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]\n", + "[22, 15, 11, 10, 8, 11, 25, 22, 19, 14, 1, 25, 17, 16, 10, 5, 24, 24, 5, 1, 18, 22, 2, 3, 24, 8, 17, 15, 11, 19, 7, 6, 25, 10, 16, 20, 14, 6, 15, 24, 22, 11, 15, 13, 4, 13, 25, 2, 18, 20, 11, 5, 25, 16, 3, 9, 16, 5, 14, 18, 20, 17, 16, 22, 18, 9, 15, 3, 8, 18, 24, 7, 15, 24, 5, 2, 8, 15, 10, 19, 10, 14, 3, 7, 6, 24, 25, 20, 23, 1, 24, 25, 9, 22, 15, 6, 8, 5, 7, 21, 23, 17, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24]\n", + "[25, 20, 14, 11, 10, 23, 13, 10, 21, 22, 22, 14, 5, 11, 13, 1, 7, 4, 19, 24, 2, 10, 16, 12, 3, 10, 23, 22, 1, 19, 12, 6, 9, 18, 19, 13, 25, 18, 15, 19, 25, 14, 5, 18, 20, 13, 18, 12, 16, 1, 3, 5, 17, 21, 5, 2, 4, 10, 14, 20, 9, 21, 23, 12, 6, 23, 17, 11, 3, 10, 7, 17, 16, 17, 19, 23, 7, 3, 4, 4, 16, 18, 13, 4, 25, 5, 3, 19, 11, 8, 13, 4, 17, 14, 5, 23, 19, 10, 7, 13, 12, 10, 2, 18, 22, 7, 6, 20, 25, 6, 20, 12, 5, 3, 16, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22]\n", + "[17, 25, 25, 23, 20, 14, 2, 24, 4, 23, 11, 12, 7, 4, 10, 24, 14, 10, 19, 25, 21, 17, 15, 11, 24, 12, 4, 13, 18, 6, 13, 19, 3, 13, 17, 8, 16, 14, 14, 21, 7, 4, 21, 1, 3, 7, 3, 24, 16, 15, 25, 23, 9, 24, 24, 13, 14, 10, 10, 11, 18, 14, 3, 20, 22, 11, 9, 19, 16, 21, 5, 18, 24, 3, 15, 16, 23, 8, 8, 20, 18, 4, 25, 25, 15, 11, 1, 19, 19, 7, 7, 3, 17, 14, 3, 24, 3, 12, 13, 19, 16, 3, 11, 17, 6, 17, 4, 15, 15, 7, 10, 4, 21, 18, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]\n", + "[20, 25, 22, 20, 13, 12, 1, 21, 6, 16, 24, 4, 4, 20, 8, 25, 20, 6, 20, 7, 20, 14, 16, 23, 10, 12, 20, 1, 17, 21, 4, 8, 13, 19, 3, 20, 1, 17, 7, 5, 18, 8, 17, 10, 25, 21, 20, 14, 2, 18, 19, 17, 17, 17, 20, 16, 6, 17, 20, 3, 1, 23, 8, 2, 16, 16, 3, 21, 20, 25, 12, 10, 12, 16, 16, 5, 14, 18, 19, 24, 22, 6, 14, 21, 11, 22, 1, 1, 24, 20, 9, 13, 10, 22, 22, 20, 8, 8, 13, 12, 3, 12, 23, 21, 4, 3, 18, 15, 16, 18, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]\n", + "[5, 22, 23, 2, 5, 14, 5, 13, 15, 6, 23, 23, 12, 13, 25, 20, 3, 1, 17, 2, 24, 24, 15, 23, 9, 4, 6, 4, 13, 13, 3, 25, 25, 21, 19, 9, 10, 20, 25, 21, 15, 23, 24, 24, 13, 21, 20, 4, 23, 7, 21, 17, 21, 13, 12, 3, 24, 1, 10, 12, 8, 9, 2, 14, 15, 1, 23, 6, 23, 19, 12, 23, 1, 20, 9, 8, 2, 16, 22, 20, 25, 9, 4, 17, 9, 7, 19, 20, 16, 3, 10, 11, 9, 4, 7, 6, 6, 13, 8, 10, 2, 25, 8, 10, 8, 5, 19, 9, 20, 11, 14, 25, 15, 9, 11, 5, 19, 23, 9, 9, 4, 8, 10, 24, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17]\n", + "[17, 15, 3, 9, 6, 8, 10, 2, 5, 7, 17, 14, 25, 3, 21, 7, 6, 24, 11, 19, 18, 6, 13, 15, 25, 17, 7, 12, 15, 13, 5, 6, 19, 4, 8, 15, 17, 17, 14, 8, 17, 16, 7, 25, 15, 16, 2, 20, 12, 3, 4, 16, 13, 14, 17, 18, 19, 12, 17, 6, 21, 7, 10, 11, 22, 16, 8, 8, 7, 20, 24, 4, 21, 7, 5, 20, 25, 25, 3, 4, 2, 15, 9, 23, 15, 17, 4, 18, 16, 17, 7, 9, 11, 2, 3, 9, 13, 16, 5, 7, 7, 17, 10, 20, 21, 10, 17, 8, 1, 16, 3, 2, 16, 21, 17, 5, 17, 11, 14, 23, 10, 11, 3, 7, 20, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16]\n", + "[6, 3, 8, 20, 4, 17, 11, 19, 22, 21, 20, 13, 23, 13, 16, 15, 1, 18, 21, 3, 18, 7, 8, 11, 3, 21, 20, 10, 15, 21, 5, 6, 5, 12, 23, 23, 13, 18, 19, 18, 8, 13, 8, 15, 9, 7, 7, 6, 4, 11, 7, 12, 19, 21, 22, 12, 18, 21, 21, 17, 9, 23, 8, 4, 9, 6, 25, 22, 4, 21, 21, 10, 1, 20, 1, 8, 14, 1, 1, 11, 25, 5, 11, 21, 20, 8, 10, 15, 10, 21, 24, 14, 21, 2, 5, 3, 10, 12, 13, 21, 11, 9, 6, 12, 20, 11, 21, 20, 9, 11, 4, 17, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]\n", + "[25, 13, 1, 17, 2, 3, 10, 25, 12, 16, 21, 25, 15, 19, 18, 19, 5, 23, 9, 15, 7, 11, 12, 6, 9, 10, 3, 16, 24, 2, 22, 9, 23, 9, 25, 2, 13, 11, 1, 5, 23, 11, 1, 21, 15, 11, 11, 3, 20, 7, 14, 2, 2, 8, 25, 1, 25, 12, 13, 20, 19, 9, 24, 9, 19, 13, 7, 25, 23, 17, 15, 22, 20, 21, 16, 13, 10, 12, 11, 21, 8, 16, 22, 17, 2, 6, 17, 2, 12, 15, 23, 25, 14, 4, 22, 6, 11, 14, 7, 25, 2, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17]\n", + "[14, 10, 15, 17, 22, 9, 14, 23, 21, 17, 9, 20, 25, 9, 11, 21, 11, 2, 4, 7, 21, 21, 25, 20, 24, 17, 7, 17, 4, 17, 11, 14, 20, 2, 4, 25, 15, 5, 8, 6, 23, 1, 11, 1, 5, 2, 20, 12, 14, 16, 13, 11, 17, 10, 6, 11, 13, 21, 24, 14, 4, 22, 13, 3, 10, 12, 6, 18, 3, 15, 16, 10, 17, 10, 16, 19, 24, 20, 19, 25, 16, 19, 23, 23, 16, 18, 17, 7, 23, 13, 3, 12, 11, 13, 25, 11, 23, 19, 5, 9, 11, 22, 1, 21, 10, 16, 5, 13, 11, 11, 23, 8, 18, 22, 9, 22, 23, 18, 18, 8, 10, 24, 11, 10, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]\n", + "[15, 8, 7, 9, 7, 15, 3, 20, 5, 4, 7, 8, 21, 16, 2, 6, 24, 25, 18, 24, 5, 17, 13, 8, 20, 23, 11, 16, 25, 22, 1, 8, 11, 10, 10, 20, 24, 23, 21, 22, 21, 11, 15, 2, 20, 4, 16, 7, 25, 25, 8, 25, 4, 20, 9, 16, 7, 13, 14, 4, 16, 24, 23, 8, 4, 12, 19, 15, 20, 10, 24, 18, 1, 19, 23, 3, 21, 3, 16, 1, 7, 3, 19, 24, 17, 8, 21, 7, 23, 3, 23, 21, 5, 8, 3, 13, 12, 20, 11, 2, 6, 9, 1, 11, 4, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20]\n", + "[16, 4, 15, 8, 20, 25, 20, 5, 14, 2, 6, 7, 23, 20, 11, 1, 16, 8, 25, 4, 12, 4, 19, 5, 21, 21, 2, 10, 24, 3, 10, 25, 23, 15, 18, 11, 15, 21, 25, 5, 18, 16, 7, 5, 12, 23, 5, 24, 19, 6, 18, 19, 18, 5, 13, 22, 2, 10, 17, 17, 13, 20, 13, 25, 21, 2, 20, 9, 21, 2, 13, 13, 12, 3, 24, 23, 22, 5, 10, 20, 11, 12, 22, 13, 10, 22, 9, 9, 12, 11, 9, 22, 23, 13, 3, 23, 9, 7, 12, 20, 13, 12, 7, 21, 8, 6, 14, 5, 8, 8, 20, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24]\n", + "[19, 12, 3, 3, 3, 15, 10, 6, 4, 5, 24, 18, 8, 4, 9, 11, 4, 5, 5, 6, 14, 19, 20, 20, 22, 19, 23, 24, 6, 9, 6, 20, 2, 21, 5, 17, 2, 21, 18, 1, 14, 10, 10, 14, 2, 19, 18, 15, 11, 25, 5, 16, 19, 9, 24, 6, 2, 19, 7, 8, 7, 15, 22, 10, 22, 25, 15, 15, 12, 5, 9, 13, 5, 25, 14, 13, 13, 21, 7, 16, 11, 4, 18, 8, 20, 5, 10, 14, 22, 22, 4, 2, 4, 3, 11, 10, 1, 17, 21, 8, 17, 20, 22, 22, 24, 6, 14, 16, 23, 7, 17, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]\n", + "[17, 4, 10, 22, 13, 7, 23, 21, 13, 21, 18, 7, 5, 23, 22, 9, 24, 2, 12, 7, 10, 9, 9, 6, 1, 6, 11, 12, 9, 9, 8, 20, 24, 12, 7, 17, 15, 19, 25, 16, 9, 2, 6, 5, 11, 5, 20, 18, 6, 20, 17, 23, 23, 25, 17, 22, 25, 6, 10, 9, 24, 11, 1, 25, 22, 21, 19, 24, 19, 25, 23, 22, 3, 22, 11, 19, 1, 8, 10, 13, 1, 20, 3, 8, 14, 21, 20, 6, 11, 11, 4, 22, 19, 18, 14, 4, 9, 5, 23, 18, 16, 12, 19, 2, 15, 11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]\n", + "[16, 11, 9, 22, 10, 15, 2, 14, 12, 11, 24, 24, 18, 3, 3, 3, 23, 23, 25, 5, 12, 9, 22, 7, 10, 8, 2, 4, 8, 18, 11, 9, 24, 2, 9, 21, 19, 19, 14, 17, 15, 10, 7, 6, 15, 17, 17, 14, 6, 19, 25, 15, 20, 7, 2, 7, 5, 18, 12, 24, 10, 16, 23, 1, 13, 8, 14, 6, 19, 25, 25, 2, 12, 18, 2, 9, 9, 3, 7, 12, 11, 21, 23, 15, 20, 10, 23, 20, 15, 2, 19, 5, 21, 22, 10, 14, 20, 22, 22, 24, 6, 15, 16, 10, 1, 7, 15, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21]\n", + "[25, 10, 14, 11, 15, 10, 4, 17, 2, 24, 8, 22, 1, 9, 6, 5, 23, 21, 8, 8, 10, 12, 20, 10, 17, 8, 10, 9, 16, 16, 15, 3, 1, 20, 15, 1, 3, 11, 25, 9, 21, 25, 21, 15, 22, 17, 21, 4, 11, 15, 1, 12, 20, 12, 16, 11, 8, 2, 2, 4, 15, 21, 25, 11, 12, 5, 18, 16, 5, 1, 8, 11, 1, 15, 5, 18, 24, 7, 8, 16, 4, 13, 14, 2, 16, 16, 21, 19, 4, 14, 19, 10, 6, 14, 2, 24, 12, 8, 16, 19, 17, 8, 12, 6, 20, 4, 18, 2, 14, 10, 15, 4, 10, 9, 21, 7, 17, 6, 11, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]\n", + "[16, 22, 17, 16, 25, 13, 15, 15, 22, 18, 5, 6, 1, 14, 3, 19, 18, 3, 12, 24, 21, 23, 25, 23, 2, 14, 15, 18, 16, 11, 24, 4, 4, 17, 15, 2, 19, 21, 4, 8, 10, 20, 20, 6, 2, 16, 12, 10, 13, 6, 21, 4, 12, 4, 1, 25, 18, 23, 20, 23, 17, 11, 14, 13, 7, 17, 14, 22, 20, 12, 14, 19, 8, 23, 9, 14, 5, 4, 24, 24, 16, 8, 13, 21, 11, 8, 19, 17, 6, 10, 2, 23, 23, 5, 20, 20, 17, 23, 23, 7, 16, 18, 25, 18, 1, 12, 5, 21, 24, 14, 12, 21, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[2, 10, 9, 15, 22, 10, 16, 9, 17, 16, 23, 2, 3, 3, 4, 15, 12, 25, 1, 9, 12, 4, 21, 18, 16, 20, 12, 9, 7, 12, 18, 19, 15, 20, 13, 2, 21, 1, 7, 3, 19, 9, 23, 8, 5, 11, 24, 4, 20, 22, 10, 19, 20, 5, 2, 25, 7, 15, 24, 3, 19, 14, 1, 19, 5, 16, 19, 18, 9, 4, 11, 4, 8, 10, 11, 24, 10, 4, 11, 25, 24, 2, 12, 4, 13, 3, 22, 5, 10, 20, 12, 13, 23, 4, 4, 5, 21, 1, 5, 25, 23, 19, 25, 5, 5, 13, 23, 7, 2, 9, 24, 6, 4, 22, 4, 20, 4, 7, 6, 2, 19, 16, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[9, 16, 9, 1, 3, 20, 16, 17, 8, 18, 20, 10, 1, 10, 12, 8, 23, 2, 7, 16, 19, 13, 22, 14, 21, 24, 21, 3, 8, 13, 7, 11, 9, 13, 8, 19, 21, 4, 2, 5, 2, 19, 15, 25, 2, 9, 23, 10, 25, 15, 4, 14, 24, 10, 14, 5, 16, 20, 25, 15, 11, 3, 9, 23, 4, 12, 12, 10, 2, 15, 16, 2, 5, 14, 11, 18, 17, 19, 23, 16, 4, 13, 2, 8, 14, 9, 1, 10, 14, 19, 8, 6, 17, 15, 15, 11, 8, 19, 7, 14, 25, 11, 11, 3, 17, 20, 10, 2, 22, 10, 16, 23, 6, 13, 2, 8, 22, 25, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17]\n", + "[5, 10, 16, 16, 14, 13, 18, 13, 14, 2, 19, 12, 8, 21, 10, 19, 22, 2, 6, 4, 23, 2, 23, 3, 23, 2, 7, 4, 18, 20, 8, 10, 6, 25, 18, 17, 25, 16, 17, 8, 21, 1, 14, 15, 12, 3, 23, 7, 8, 18, 13, 1, 16, 14, 9, 7, 6, 7, 20, 2, 18, 3, 19, 3, 8, 3, 22, 19, 16, 24, 20, 7, 1, 21, 21, 10, 1, 10, 19, 14, 22, 13, 25, 15, 1, 21, 21, 9, 23, 17, 8, 8, 14, 6, 24, 13, 21, 17, 3, 22, 19, 22, 12, 13, 15, 22, 20, 22, 24, 22, 15, 11, 20, 12, 1, 2, 15, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]\n", + "[19, 3, 2, 7, 5, 4, 1, 8, 23, 12, 23, 12, 9, 11, 10, 15, 11, 6, 18, 11, 23, 22, 8, 2, 22, 18, 24, 21, 13, 7, 4, 9, 2, 23, 23, 8, 16, 12, 4, 10, 14, 6, 14, 24, 25, 11, 7, 11, 10, 22, 17, 2, 13, 23, 19, 5, 23, 2, 1, 20, 6, 23, 3, 11, 25, 8, 5, 23, 1, 10, 20, 7, 14, 6, 10, 24, 12, 10, 1, 3, 4, 24, 18, 20, 24, 5, 16, 7, 18, 6, 11, 15, 10, 5, 9, 21, 7, 18, 7, 12, 18, 18, 22, 20, 1, 10, 1, 8, 13, 22, 13, 2, 13, 1, 8, 22, 14, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n", + "[22, 24, 7, 1, 17, 13, 2, 2, 9, 24, 23, 12, 7, 3, 12, 21, 2, 11, 17, 11, 12, 4, 9, 19, 21, 10, 10, 25, 14, 25, 11, 17, 4, 22, 21, 23, 16, 24, 15, 1, 13, 10, 20, 7, 11, 8, 19, 13, 2, 8, 3, 1, 15, 22, 18, 15, 4, 19, 19, 19, 9, 7, 6, 7, 21, 16, 20, 6, 19, 21, 16, 12, 15, 17, 22, 23, 15, 16, 8, 18, 15, 3, 17, 8, 16, 15, 14, 18, 10, 8, 7, 7, 22, 10, 7, 12, 14, 21, 15, 7, 12, 3, 21, 21, 15, 18, 13, 11, 12, 11, 12, 18, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20]\n", + "[10, 9, 5, 3, 5, 2, 7, 25, 19, 15, 4, 15, 3, 12, 13, 19, 16, 1, 10, 2, 15, 24, 9, 12, 13, 17, 18, 1, 15, 20, 17, 22, 17, 15, 20, 16, 6, 22, 22, 16, 23, 17, 25, 24, 15, 14, 5, 24, 11, 21, 9, 3, 15, 18, 22, 21, 2, 17, 5, 4, 23, 25, 22, 21, 21, 4, 20, 22, 12, 23, 2, 14, 17, 18, 3, 3, 2, 10, 19, 11, 8, 1, 3, 18, 17, 2, 11, 11, 25, 25, 14, 8, 21, 19, 12, 9, 23, 3, 16, 21, 9, 7, 23, 1, 1, 12, 24, 2, 23, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]\n", + "[25, 5, 2, 1, 25, 20, 3, 11, 17, 2, 24, 9, 13, 18, 16, 11, 17, 1, 7, 22, 21, 25, 2, 2, 19, 17, 16, 5, 19, 3, 15, 10, 16, 24, 12, 6, 3, 21, 10, 18, 14, 23, 7, 1, 21, 8, 18, 15, 16, 17, 1, 24, 17, 1, 1, 14, 19, 11, 14, 3, 2, 15, 22, 17, 13, 7, 20, 7, 16, 10, 13, 15, 12, 24, 12, 5, 25, 8, 12, 1, 5, 14, 8, 6, 5, 5, 22, 4, 2, 19, 3, 11, 19, 3, 2, 14, 15, 25, 19, 6, 16, 22, 8, 15, 7, 21, 10, 19, 5, 16, 9, 10, 23, 21, 23, 1, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19]\n", + "[6, 3, 5, 21, 8, 23, 20, 6, 1, 17, 25, 17, 14, 19, 5, 1, 4, 2, 14, 10, 11, 21, 12, 11, 17, 10, 1, 17, 3, 25, 8, 13, 7, 5, 18, 15, 18, 21, 9, 12, 15, 20, 14, 22, 24, 19, 24, 4, 14, 10, 14, 16, 22, 7, 21, 18, 25, 17, 23, 10, 24, 3, 5, 23, 18, 13, 15, 20, 13, 25, 5, 8, 19, 14, 23, 2, 14, 11, 5, 22, 10, 15, 23, 18, 6, 25, 19, 13, 12, 10, 19, 16, 6, 23, 14, 20, 3, 16, 1, 11, 18, 21, 24, 6, 15, 16, 20, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]\n", + "[16, 20, 21, 3, 24, 22, 18, 24, 21, 24, 16, 12, 9, 11, 15, 20, 15, 7, 9, 17, 13, 20, 1, 1, 17, 4, 3, 9, 5, 23, 25, 8, 18, 21, 4, 22, 23, 21, 17, 16, 8, 21, 4, 3, 21, 5, 14, 14, 1, 22, 16, 13, 11, 24, 13, 24, 11, 17, 5, 17, 12, 4, 9, 6, 8, 25, 19, 3, 7, 24, 20, 25, 12, 16, 3, 5, 16, 25, 2, 8, 4, 24, 13, 6, 9, 8, 6, 23, 7, 25, 20, 22, 3, 21, 19, 2, 20, 9, 2, 3, 8, 6, 9, 17, 16, 12, 22, 17, 6, 8, 6, 12, 5, 2, 3, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]\n", + "[15, 9, 2, 10, 20, 5, 15, 20, 6, 3, 14, 9, 24, 14, 5, 19, 6, 19, 9, 22, 11, 18, 10, 12, 20, 13, 11, 22, 12, 14, 8, 23, 3, 17, 5, 24, 12, 6, 9, 6, 19, 4, 13, 21, 20, 2, 22, 3, 21, 6, 24, 13, 1, 8, 23, 16, 11, 2, 23, 7, 2, 15, 1, 9, 9, 11, 24, 9, 7, 19, 1, 15, 16, 10, 16, 14, 1, 25, 2, 14, 3, 7, 5, 21, 18, 6, 15, 2, 11, 23, 14, 24, 7, 12, 24, 10, 2, 18, 23, 23, 19, 17, 10, 3, 25, 3, 8, 11, 3, 15, 4, 18, 25, 15, 10, 13, 12, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]\n", + "[24, 4, 13, 18, 18, 6, 15, 25, 18, 5, 24, 18, 10, 10, 22, 9, 10, 8, 6, 1, 22, 9, 4, 9, 11, 25, 22, 2, 23, 5, 15, 3, 16, 2, 4, 21, 8, 20, 21, 15, 4, 13, 21, 3, 24, 10, 4, 6, 24, 3, 16, 4, 7, 19, 25, 14, 11, 17, 8, 1, 14, 14, 7, 3, 22, 23, 18, 14, 18, 2, 17, 6, 23, 24, 21, 3, 25, 16, 24, 24, 12, 6, 17, 16, 25, 5, 3, 16, 2, 19, 25, 20, 2, 14, 19, 2, 19, 10, 11, 17, 18, 22, 16, 5, 23, 15, 11, 23, 25, 17, 2, 18, 15, 23, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19]\n", + "[15, 16, 9, 23, 5, 10, 6, 11, 13, 15, 10, 11, 17, 16, 22, 1, 22, 18, 18, 8, 11, 22, 6, 25, 13, 23, 13, 12, 5, 22, 20, 15, 5, 2, 1, 20, 21, 18, 17, 5, 6, 21, 6, 2, 22, 17, 1, 6, 16, 8, 18, 17, 23, 21, 13, 20, 13, 25, 21, 17, 8, 20, 15, 5, 15, 4, 23, 1, 16, 12, 13, 20, 24, 15, 6, 17, 9, 16, 12, 25, 22, 17, 21, 1, 2, 20, 4, 20, 25, 8, 6, 22, 22, 16, 9, 1, 19, 24, 18, 19, 5, 8, 24, 17, 11, 16, 4, 10, 1, 20, 2, 18, 8, 3, 2, 19, 22, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]\n", + "[5, 20, 19, 23, 2, 25, 18, 19, 13, 8, 20, 19, 11, 15, 18, 7, 19, 19, 1, 24, 1, 2, 10, 10, 3, 19, 18, 6, 13, 6, 5, 8, 19, 7, 7, 7, 2, 13, 8, 19, 24, 12, 24, 16, 25, 7, 5, 8, 5, 14, 23, 10, 16, 14, 10, 24, 23, 6, 23, 25, 4, 8, 4, 5, 24, 16, 24, 22, 24, 4, 7, 24, 3, 6, 2, 25, 24, 11, 11, 3, 22, 2, 16, 11, 2, 15, 23, 10, 4, 12, 7, 5, 21, 6, 4, 16, 22, 9, 12, 9, 2, 14, 14, 12, 4, 18, 12, 5, 14, 8, 16, 25, 15, 19, 16, 22, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15]\n", + "[24, 18, 16, 5, 17, 4, 8, 17, 1, 1, 14, 17, 16, 4, 4, 21, 8, 5, 16, 12, 7, 21, 16, 18, 10, 12, 15, 10, 1, 10, 9, 23, 6, 9, 1, 25, 20, 25, 2, 9, 24, 21, 18, 24, 10, 9, 14, 2, 1, 25, 19, 6, 4, 14, 16, 17, 13, 6, 22, 4, 17, 19, 25, 9, 25, 18, 3, 13, 18, 13, 7, 23, 3, 19, 18, 9, 13, 14, 7, 11, 20, 20, 20, 2, 1, 5, 6, 23, 3, 13, 15, 16, 14, 16, 4, 2, 3, 15, 20, 17, 19, 5, 8, 23, 23, 9, 22, 1, 24, 5, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[24, 12, 20, 3, 10, 23, 3, 20, 7, 6, 11, 20, 9, 8, 18, 1, 8, 7, 19, 7, 4, 19, 24, 13, 23, 3, 24, 16, 1, 24, 2, 6, 6, 16, 12, 22, 19, 9, 25, 3, 14, 17, 9, 14, 5, 13, 8, 16, 11, 17, 6, 8, 8, 13, 8, 12, 4, 2, 6, 9, 6, 1, 4, 15, 16, 10, 3, 11, 21, 12, 3, 23, 11, 10, 2, 1, 14, 11, 17, 3, 23, 14, 22, 12, 19, 14, 1, 25, 8, 14, 14, 12, 15, 20, 20, 19, 16, 1, 12, 13, 15, 18, 23, 1, 23, 4, 25, 14, 9, 11, 1, 22, 17, 4, 4, 20, 5, 3, 11, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[12, 9, 20, 17, 7, 9, 18, 18, 20, 18, 18, 13, 3, 17, 12, 10, 4, 16, 21, 24, 19, 8, 22, 21, 12, 8, 5, 14, 3, 5, 8, 6, 17, 9, 21, 17, 11, 20, 13, 1, 6, 10, 18, 10, 24, 6, 12, 24, 24, 23, 11, 14, 10, 7, 3, 3, 3, 3, 22, 5, 9, 2, 7, 19, 15, 11, 16, 21, 15, 1, 14, 1, 17, 21, 21, 14, 18, 5, 12, 16, 24, 18, 6, 25, 1, 23, 5, 11, 5, 14, 10, 10, 4, 4, 10, 1, 17, 10, 2, 20, 15, 16, 7, 2, 7, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]\n", + "[24, 23, 9, 19, 8, 9, 24, 4, 19, 10, 2, 5, 15, 7, 13, 3, 19, 8, 8, 13, 15, 17, 5, 2, 11, 16, 24, 19, 3, 11, 1, 15, 2, 1, 20, 20, 10, 19, 19, 8, 14, 19, 16, 21, 14, 1, 25, 1, 10, 1, 5, 1, 16, 22, 7, 25, 25, 14, 18, 22, 12, 15, 3, 11, 12, 21, 9, 19, 19, 18, 4, 2, 11, 23, 20, 2, 19, 2, 20, 22, 6, 19, 6, 25, 4, 20, 21, 25, 23, 8, 18, 2, 18, 19, 16, 10, 18, 18, 15, 24, 20, 23, 9, 23, 17, 2, 7, 25, 10, 9, 7, 4, 11, 13, 2, 2, 17, 3, 10, 14, 14, 24, 16, 14, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]\n", + "[16, 23, 12, 8, 10, 6, 24, 22, 2, 8, 21, 7, 9, 4, 10, 2, 23, 19, 22, 15, 13, 17, 7, 17, 2, 14, 3, 21, 5, 14, 9, 19, 25, 4, 11, 11, 22, 16, 13, 18, 5, 3, 7, 17, 20, 21, 2, 2, 21, 2, 6, 14, 18, 11, 2, 3, 21, 10, 6, 5, 9, 24, 4, 17, 14, 12, 25, 24, 23, 12, 8, 19, 1, 19, 11, 9, 4, 15, 8, 24, 9, 17, 24, 2, 6, 14, 24, 8, 2, 4, 6, 17, 25, 14, 5, 7, 23, 21, 17, 2, 23, 15, 5, 8, 4, 25, 17, 18, 10, 10, 19, 10, 9, 5, 3, 19, 21, 8, 5, 19, 2, 12, 16, 11, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]\n", + "[11, 1, 9, 9, 4, 18, 10, 15, 13, 6, 2, 7, 11, 7, 25, 16, 13, 23, 13, 20, 23, 23, 20, 15, 7, 20, 19, 12, 9, 5, 13, 14, 7, 4, 6, 10, 24, 16, 9, 24, 18, 17, 21, 12, 6, 5, 8, 21, 10, 14, 7, 5, 8, 1, 11, 16, 24, 22, 9, 1, 8, 1, 24, 14, 16, 5, 2, 24, 8, 9, 18, 21, 12, 22, 19, 8, 13, 9, 16, 24, 13, 6, 22, 23, 18, 21, 9, 10, 18, 17, 2, 1, 4, 10, 17, 24, 3, 1, 11, 19, 16, 22, 8, 20, 1, 20, 17, 4, 24, 25, 13, 5, 8, 9, 1, 7, 2, 4, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]\n", + "[15, 5, 3, 10, 12, 11, 9, 1, 11, 24, 25, 15, 10, 13, 9, 13, 13, 24, 24, 11, 7, 11, 20, 14, 7, 13, 5, 16, 15, 11, 2, 12, 6, 10, 1, 1, 7, 2, 16, 14, 23, 2, 24, 22, 17, 4, 19, 4, 23, 7, 23, 20, 8, 22, 14, 18, 7, 22, 25, 4, 8, 6, 18, 12, 19, 10, 1, 22, 15, 24, 7, 17, 15, 16, 21, 11, 1, 15, 17, 9, 22, 15, 8, 9, 3, 15, 18, 15, 21, 8, 1, 11, 13, 6, 4, 16, 5, 23, 20, 1, 17, 10, 24, 22, 10, 13, 16, 13, 7, 4, 9, 13, 14, 18, 21, 16, 21, 23, 1, 14, 9, 11, 21, 7, 16, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n", + "[8, 13, 9, 7, 13, 11, 11, 8, 6, 25, 22, 3, 5, 21, 25, 10, 9, 5, 14, 21, 24, 24, 25, 14, 3, 2, 11, 10, 18, 1, 21, 13, 22, 10, 9, 13, 9, 1, 11, 3, 11, 18, 3, 20, 12, 8, 5, 23, 21, 21, 8, 20, 24, 22, 10, 12, 2, 10, 4, 1, 8, 11, 19, 22, 20, 7, 23, 7, 18, 12, 24, 25, 2, 21, 22, 24, 3, 22, 23, 9, 2, 24, 23, 10, 14, 12, 19, 23, 24, 21, 20, 13, 10, 5, 12, 21, 3, 1, 5, 17, 4, 23, 18, 25, 9, 11, 24, 2, 11, 3, 6, 9, 1, 23, 20, 24, 18, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n", + "[1, 13, 2, 21, 1, 12, 10, 2, 14, 21, 25, 5, 8, 6, 25, 9, 6, 6, 22, 5, 5, 3, 7, 23, 18, 6, 1, 17, 4, 9, 2, 18, 6, 6, 5, 10, 22, 2, 13, 6, 18, 5, 20, 1, 12, 20, 9, 11, 15, 1, 22, 22, 10, 5, 6, 17, 23, 2, 11, 8, 14, 1, 17, 18, 2, 24, 8, 10, 12, 15, 3, 10, 6, 22, 1, 15, 17, 17, 17, 20, 7, 15, 12, 16, 12, 2, 25, 13, 1, 23, 6, 16, 4, 6, 15, 25, 24, 19, 17, 17, 25, 24, 16, 13, 13, 22, 6, 17, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[9, 12, 6, 1, 24, 22, 15, 13, 10, 14, 20, 13, 14, 7, 15, 4, 14, 20, 4, 24, 19, 16, 4, 25, 18, 2, 19, 1, 19, 1, 21, 25, 19, 21, 9, 4, 18, 14, 19, 22, 8, 25, 18, 19, 11, 19, 5, 23, 17, 20, 18, 22, 10, 8, 19, 15, 15, 22, 1, 9, 3, 1, 12, 15, 18, 22, 25, 1, 8, 8, 7, 10, 11, 25, 23, 24, 8, 18, 7, 4, 14, 3, 3, 1, 14, 15, 14, 15, 1, 13, 6, 2, 13, 16, 18, 22, 14, 17, 14, 7, 23, 19, 3, 15, 5, 10, 11, 3, 20, 15, 23, 18, 2, 21, 11, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21]\n", + "[22, 15, 12, 11, 16, 20, 7, 19, 19, 13, 3, 15, 25, 18, 22, 23, 25, 16, 13, 20, 13, 13, 8, 15, 3, 17, 10, 2, 8, 8, 14, 24, 14, 9, 25, 13, 8, 21, 15, 18, 1, 17, 21, 24, 14, 25, 8, 3, 24, 2, 2, 24, 24, 9, 10, 23, 5, 21, 17, 8, 7, 6, 14, 4, 10, 13, 4, 12, 12, 2, 18, 4, 2, 1, 3, 15, 5, 6, 21, 1, 11, 15, 23, 17, 25, 24, 20, 22, 6, 14, 9, 21, 19, 17, 12, 9, 11, 8, 6, 9, 22, 15, 1, 5, 2, 4, 22, 22, 22, 18, 4, 7, 7, 10, 16, 13, 8, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16]\n", + "[1, 6, 11, 13, 1, 18, 9, 15, 20, 8, 18, 12, 4, 17, 4, 17, 7, 8, 6, 14, 10, 18, 20, 20, 18, 16, 11, 18, 19, 11, 2, 25, 24, 19, 4, 19, 25, 25, 3, 18, 16, 22, 19, 11, 12, 16, 14, 13, 24, 3, 21, 11, 7, 6, 20, 9, 14, 19, 8, 22, 5, 17, 6, 12, 21, 8, 2, 14, 6, 4, 22, 2, 6, 9, 3, 22, 4, 1, 3, 3, 5, 7, 24, 20, 23, 12, 14, 9, 1, 11, 7, 4, 15, 5, 22, 20, 25, 13, 14, 22, 1, 20, 13, 4, 14, 18, 14, 20, 22, 11, 4, 21, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24]\n", + "[2, 23, 6, 10, 19, 9, 14, 7, 14, 12, 20, 2, 14, 22, 8, 7, 19, 24, 1, 5, 12, 17, 25, 8, 9, 19, 16, 12, 17, 14, 16, 6, 23, 17, 15, 6, 3, 19, 4, 22, 16, 11, 12, 14, 19, 4, 14, 11, 9, 19, 20, 4, 1, 7, 7, 4, 3, 23, 13, 18, 2, 5, 20, 20, 9, 2, 11, 1, 16, 9, 23, 23, 4, 18, 20, 2, 5, 16, 15, 8, 6, 14, 8, 5, 11, 15, 6, 21, 22, 4, 17, 23, 4, 21, 11, 25, 22, 9, 8, 25, 16, 9, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]\n", + "[2, 7, 17, 7, 17, 20, 21, 2, 1, 8, 3, 9, 22, 2, 22, 2, 2, 9, 3, 1, 3, 10, 10, 22, 1, 4, 4, 5, 6, 18, 4, 10, 2, 6, 2, 3, 23, 17, 15, 6, 10, 18, 10, 4, 6, 4, 1, 23, 5, 21, 12, 13, 7, 15, 20, 19, 10, 12, 16, 9, 25, 1, 24, 19, 1, 1, 1, 15, 25, 6, 11, 21, 22, 6, 12, 15, 14, 15, 4, 1, 18, 13, 20, 13, 8, 6, 25, 20, 12, 2, 10, 15, 20, 9, 14, 5, 1, 9, 12, 4, 14, 6, 3, 18, 16, 24, 1, 2, 3, 13, 14, 23, 22, 12, 19, 6, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[17, 19, 6, 16, 13, 3, 3, 18, 24, 8, 4, 22, 23, 18, 15, 8, 18, 2, 7, 10, 19, 22, 16, 19, 22, 9, 7, 2, 6, 17, 13, 10, 1, 4, 14, 18, 5, 13, 22, 6, 21, 18, 13, 2, 5, 22, 9, 1, 2, 10, 12, 14, 3, 2, 22, 24, 25, 21, 15, 21, 13, 8, 17, 14, 16, 1, 24, 6, 19, 20, 25, 7, 15, 16, 9, 5, 4, 20, 2, 13, 5, 11, 5, 18, 5, 19, 8, 6, 24, 2, 25, 13, 14, 6, 6, 17, 23, 20, 5, 1, 10, 7, 1, 22, 1, 5, 14, 21, 2, 18, 1, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21]\n", + "[24, 13, 16, 12, 2, 2, 13, 25, 11, 20, 22, 5, 5, 21, 22, 14, 13, 14, 15, 4, 17, 6, 4, 9, 9, 13, 2, 3, 12, 4, 18, 20, 8, 11, 23, 17, 12, 7, 7, 22, 25, 19, 5, 25, 11, 21, 25, 23, 25, 12, 9, 17, 7, 12, 21, 11, 2, 11, 22, 16, 19, 6, 19, 23, 11, 7, 5, 1, 21, 7, 10, 4, 8, 11, 14, 9, 17, 5, 21, 16, 16, 7, 19, 19, 24, 6, 8, 5, 8, 15, 12, 10, 17, 17, 19, 14, 23, 4, 6, 21, 6, 16, 8, 13, 21, 24, 18, 21, 24, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21]\n", + "[7, 16, 24, 16, 21, 19, 11, 25, 16, 23, 4, 21, 12, 12, 21, 10, 16, 13, 1, 6, 16, 6, 25, 4, 2, 21, 11, 17, 17, 18, 2, 22, 15, 9, 14, 19, 19, 9, 15, 5, 17, 16, 10, 3, 21, 23, 19, 6, 10, 20, 13, 2, 7, 21, 10, 19, 21, 20, 25, 22, 18, 12, 14, 10, 4, 3, 25, 20, 4, 18, 1, 1, 14, 21, 15, 5, 10, 13, 16, 21, 16, 25, 12, 16, 25, 24, 14, 2, 18, 22, 22, 13, 17, 1, 18, 12, 23, 16, 24, 16, 21, 21, 2, 7, 18, 23, 19, 20, 17, 13, 25, 14, 2, 10, 3, 19, 11, 17, 12, 2, 24, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20]\n", + "[5, 14, 5, 2, 10, 9, 19, 12, 12, 24, 4, 1, 8, 18, 25, 23, 16, 22, 22, 3, 24, 19, 14, 1, 15, 17, 21, 15, 21, 15, 2, 19, 9, 18, 10, 1, 1, 20, 22, 7, 9, 4, 19, 21, 4, 6, 1, 18, 2, 17, 13, 15, 21, 6, 17, 1, 5, 6, 23, 11, 10, 24, 11, 13, 18, 12, 22, 4, 4, 15, 7, 17, 8, 22, 16, 1, 23, 2, 9, 24, 8, 24, 23, 24, 5, 7, 21, 24, 12, 23, 22, 15, 19, 8, 12, 8, 5, 6, 21, 10, 14, 10, 4, 23, 20, 8, 19, 9, 25, 22, 7, 8, 13, 2, 21, 7, 16, 11, 20, 21, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]\n", + "[8, 7, 14, 2, 13, 4, 10, 11, 22, 5, 24, 22, 12, 13, 23, 8, 9, 24, 25, 21, 6, 11, 8, 13, 19, 1, 25, 22, 4, 22, 9, 21, 19, 2, 9, 1, 15, 4, 17, 15, 23, 17, 17, 9, 14, 2, 8, 4, 17, 13, 23, 8, 9, 1, 12, 10, 19, 18, 9, 12, 24, 22, 7, 21, 2, 6, 2, 9, 3, 19, 15, 20, 2, 16, 5, 18, 18, 25, 4, 6, 5, 6, 2, 1, 25, 23, 17, 24, 18, 15, 17, 20, 16, 8, 18, 2, 10, 18, 1, 11, 25, 25, 12, 9, 12, 25, 21, 18, 18, 21, 22, 5, 2, 13, 19, 20, 5, 6, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20]\n", + "[7, 6, 9, 21, 4, 20, 18, 16, 21, 16, 13, 13, 16, 5, 13, 17, 5, 16, 23, 15, 12, 17, 3, 8, 16, 11, 7, 9, 16, 11, 12, 17, 5, 5, 19, 25, 1, 3, 15, 7, 3, 2, 4, 21, 15, 20, 4, 22, 11, 15, 16, 8, 14, 24, 17, 22, 3, 17, 14, 15, 20, 23, 3, 14, 15, 20, 18, 4, 17, 11, 12, 12, 24, 7, 2, 25, 2, 24, 7, 14, 8, 7, 16, 20, 4, 6, 11, 23, 8, 5, 12, 20, 13, 25, 1, 22, 11, 9, 4, 12, 17, 14, 17, 4, 7, 23, 20, 24, 14, 23, 11, 21, 5, 23, 25, 14, 12, 2, 25, 17, 22, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]\n", + "[23, 16, 23, 16, 11, 11, 8, 19, 4, 19, 24, 9, 10, 9, 9, 11, 23, 9, 2, 9, 14, 3, 25, 17, 25, 1, 8, 19, 13, 18, 7, 23, 15, 8, 24, 22, 24, 4, 10, 4, 3, 15, 14, 17, 19, 5, 2, 25, 14, 25, 6, 20, 18, 23, 22, 16, 8, 18, 6, 20, 11, 22, 23, 20, 25, 18, 8, 17, 19, 19, 24, 25, 5, 11, 22, 16, 22, 11, 7, 22, 7, 16, 24, 7, 2, 18, 12, 12, 24, 1, 5, 4, 24, 10, 13, 3, 18, 2, 5, 17, 22, 22, 7, 1, 2, 1, 8, 11, 6, 7, 20, 8, 6, 17, 21, 3, 10, 10, 5, 24, 7, 12, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20]\n", + "[2, 6, 12, 15, 18, 15, 24, 4, 15, 20, 13, 15, 13, 12, 4, 15, 2, 25, 15, 22, 6, 23, 1, 12, 16, 14, 11, 24, 2, 5, 16, 19, 25, 1, 14, 14, 13, 10, 7, 4, 5, 21, 20, 23, 21, 15, 7, 2, 14, 25, 9, 14, 1, 12, 3, 2, 15, 8, 16, 7, 24, 16, 7, 13, 18, 18, 6, 10, 11, 14, 15, 25, 20, 25, 15, 5, 13, 3, 3, 17, 10, 11, 7, 4, 10, 4, 14, 1, 3, 9, 11, 4, 7, 18, 10, 13, 5, 24, 10, 18, 23, 14, 23, 14, 24, 10, 12, 24, 20, 21, 23, 7, 5, 23, 12, 24, 4, 8, 9, 6, 6, 25, 4, 23, 3, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[13, 17, 20, 21, 6, 1, 25, 13, 5, 21, 5, 13, 6, 14, 20, 23, 2, 5, 13, 20, 10, 16, 11, 10, 12, 23, 17, 3, 10, 15, 18, 8, 4, 16, 14, 16, 5, 21, 16, 20, 2, 12, 19, 2, 8, 20, 9, 24, 10, 21, 11, 1, 13, 22, 2, 8, 15, 6, 12, 15, 5, 10, 12, 19, 5, 23, 15, 8, 6, 17, 7, 7, 18, 25, 9, 18, 6, 7, 15, 23, 13, 12, 13, 8, 2, 3, 16, 5, 11, 12, 5, 22, 19, 13, 2, 22, 19, 16, 9, 12, 20, 14, 12, 19, 16, 18, 20, 21, 8, 1, 10, 23, 20, 13, 16, 19, 11, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15]\n", + "[10, 25, 7, 2, 24, 9, 7, 4, 13, 18, 3, 16, 6, 11, 17, 20, 10, 8, 23, 18, 3, 5, 1, 21, 16, 9, 13, 15, 7, 9, 14, 19, 25, 21, 7, 11, 20, 22, 7, 22, 1, 9, 22, 10, 15, 18, 19, 18, 1, 16, 24, 3, 10, 4, 7, 5, 11, 22, 15, 8, 2, 23, 2, 17, 20, 16, 11, 7, 11, 6, 10, 11, 3, 14, 8, 3, 23, 19, 24, 12, 7, 5, 14, 18, 17, 4, 6, 25, 18, 23, 10, 11, 10, 11, 3, 7, 10, 17, 24, 16, 8, 12, 17, 23, 19, 6, 18, 21, 13, 19, 8, 4, 13, 21, 4, 19, 22, 21, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16]\n", + "[8, 13, 3, 25, 3, 7, 1, 25, 20, 21, 16, 11, 15, 7, 13, 10, 10, 14, 19, 18, 10, 14, 1, 5, 18, 2, 11, 15, 5, 15, 14, 6, 1, 14, 9, 9, 18, 22, 8, 2, 4, 18, 15, 18, 14, 11, 16, 17, 15, 21, 9, 1, 8, 15, 20, 14, 16, 7, 12, 8, 7, 3, 16, 8, 13, 10, 20, 24, 6, 25, 16, 25, 23, 22, 16, 23, 21, 25, 21, 20, 4, 18, 7, 5, 3, 19, 25, 19, 20, 1, 6, 16, 10, 22, 6, 3, 5, 21, 12, 9, 17, 23, 4, 19, 1, 7, 22, 13, 22, 5, 13, 8, 11, 6, 3, 8, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[3, 10, 2, 5, 6, 13, 9, 8, 9, 16, 3, 18, 10, 13, 11, 15, 1, 17, 24, 10, 17, 24, 3, 3, 20, 8, 1, 23, 23, 10, 14, 14, 16, 8, 8, 8, 4, 21, 12, 18, 20, 16, 15, 13, 18, 25, 8, 6, 6, 21, 13, 11, 13, 20, 2, 24, 19, 8, 11, 10, 1, 7, 20, 14, 23, 3, 24, 17, 12, 6, 24, 24, 3, 25, 9, 1, 2, 14, 18, 15, 15, 13, 5, 9, 22, 10, 17, 12, 20, 20, 10, 9, 15, 11, 22, 1, 4, 18, 6, 24, 18, 14, 14, 22, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11]\n", + "[19, 10, 15, 5, 9, 23, 15, 6, 10, 24, 5, 4, 21, 24, 9, 8, 12, 11, 18, 1, 19, 6, 24, 5, 9, 9, 24, 8, 14, 4, 12, 22, 11, 16, 22, 25, 3, 13, 23, 4, 20, 11, 15, 18, 23, 11, 17, 5, 1, 1, 5, 23, 19, 14, 10, 7, 9, 10, 14, 5, 18, 3, 9, 5, 2, 24, 7, 1, 9, 6, 4, 23, 4, 1, 17, 20, 2, 15, 14, 7, 16, 16, 12, 8, 8, 2, 1, 6, 4, 15, 4, 16, 10, 20, 17, 11, 14, 13, 16, 9, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22]\n", + "[9, 9, 4, 11, 15, 17, 24, 9, 10, 21, 4, 17, 14, 3, 18, 17, 6, 19, 11, 22, 9, 19, 23, 1, 19, 18, 22, 10, 14, 8, 19, 7, 3, 22, 25, 19, 17, 16, 7, 5, 4, 22, 21, 23, 16, 9, 12, 16, 15, 3, 5, 8, 22, 21, 3, 23, 25, 1, 19, 13, 11, 7, 3, 24, 9, 19, 16, 20, 6, 4, 14, 6, 7, 2, 2, 12, 4, 20, 18, 3, 16, 20, 23, 4, 22, 17, 5, 7, 11, 3, 23, 24, 8, 1, 19, 10, 23, 17, 15, 16, 7, 1, 25, 21, 15, 19, 2, 18, 25, 14, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]\n", + "[14, 14, 5, 22, 8, 19, 1, 24, 19, 20, 21, 7, 4, 6, 9, 24, 21, 2, 23, 21, 25, 11, 8, 5, 4, 15, 23, 14, 17, 9, 7, 3, 17, 18, 7, 3, 13, 24, 3, 18, 13, 12, 14, 19, 8, 16, 25, 25, 6, 5, 21, 16, 4, 15, 5, 16, 20, 3, 11, 15, 11, 4, 3, 21, 20, 23, 8, 11, 12, 10, 12, 8, 17, 24, 12, 23, 19, 10, 5, 14, 25, 22, 5, 5, 12, 17, 17, 24, 15, 15, 1, 17, 19, 25, 7, 16, 22, 4, 21, 15, 5, 7, 17, 21, 16, 9, 14, 20, 15, 8, 22, 6, 23, 24, 18, 23, 24, 13, 10, 6, 20, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19]\n", + "[17, 11, 19, 20, 8, 20, 1, 3, 6, 22, 4, 3, 2, 11, 4, 8, 5, 20, 20, 21, 8, 15, 6, 24, 14, 14, 10, 3, 3, 14, 22, 21, 20, 10, 19, 4, 9, 19, 5, 5, 4, 24, 9, 7, 1, 11, 15, 18, 10, 17, 19, 2, 20, 21, 9, 18, 7, 8, 14, 13, 4, 1, 5, 17, 5, 7, 18, 11, 22, 24, 5, 21, 9, 8, 22, 12, 3, 16, 11, 8, 17, 7, 4, 1, 15, 7, 21, 19, 8, 2, 23, 8, 6, 6, 5, 7, 21, 7, 9, 2, 15, 25, 18, 18, 15, 25, 3, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]\n", + "[12, 1, 23, 16, 6, 2, 3, 11, 25, 1, 23, 22, 25, 2, 5, 10, 11, 9, 8, 8, 23, 5, 7, 8, 18, 17, 9, 13, 24, 3, 6, 6, 8, 11, 11, 20, 15, 13, 22, 25, 13, 15, 8, 5, 11, 25, 20, 17, 17, 25, 7, 15, 1, 18, 4, 4, 13, 19, 5, 17, 2, 18, 17, 13, 23, 12, 15, 8, 17, 2, 22, 4, 7, 21, 6, 17, 10, 4, 7, 3, 8, 19, 24, 12, 17, 25, 10, 4, 24, 17, 5, 19, 6, 24, 11, 3, 10, 11, 15, 11, 13, 1, 11, 23, 8, 20, 3, 18, 15, 14, 25, 22, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]\n", + "[16, 3, 9, 22, 4, 1, 20, 23, 19, 6, 18, 13, 20, 23, 16, 5, 3, 6, 1, 2, 5, 22, 2, 18, 7, 16, 14, 2, 4, 12, 15, 19, 11, 16, 11, 4, 2, 5, 8, 1, 4, 16, 19, 13, 19, 21, 18, 5, 6, 21, 10, 1, 16, 15, 24, 5, 21, 19, 25, 14, 20, 14, 22, 4, 19, 22, 18, 10, 3, 12, 11, 4, 23, 18, 24, 13, 4, 9, 2, 2, 15, 14, 24, 17, 20, 4, 18, 13, 4, 17, 24, 8, 18, 8, 14, 16, 4, 7, 5, 23, 11, 18, 24, 7, 15, 9, 3, 16, 20, 3, 14, 23, 8, 17, 10, 2, 1, 16, 12, 6, 20, 25, 18, 1, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[2, 14, 10, 16, 4, 10, 23, 7, 18, 20, 15, 8, 19, 21, 14, 22, 24, 13, 19, 6, 3, 24, 19, 12, 24, 9, 8, 15, 18, 17, 24, 9, 9, 24, 10, 5, 1, 24, 4, 12, 3, 4, 3, 16, 24, 5, 15, 11, 3, 11, 6, 9, 2, 8, 20, 15, 21, 16, 19, 9, 22, 7, 17, 20, 15, 25, 22, 8, 16, 4, 22, 1, 7, 20, 12, 6, 9, 17, 24, 2, 14, 23, 12, 9, 4, 3, 7, 23, 18, 5, 7, 13, 14, 13, 23, 15, 8, 12, 3, 3, 9, 15, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]\n", + "[5, 9, 23, 3, 6, 20, 1, 1, 23, 12, 4, 1, 10, 23, 12, 15, 9, 4, 5, 18, 7, 13, 1, 14, 17, 13, 1, 3, 14, 15, 11, 8, 15, 6, 21, 10, 25, 20, 14, 8, 24, 10, 16, 15, 4, 3, 3, 23, 9, 21, 25, 17, 18, 4, 14, 22, 13, 22, 22, 15, 12, 19, 13, 9, 15, 4, 7, 19, 18, 16, 17, 21, 20, 12, 11, 13, 15, 21, 15, 24, 23, 19, 9, 2, 9, 7, 24, 6, 7, 12, 19, 15, 14, 18, 23, 23, 10, 22, 15, 16, 14, 3, 5, 20, 18, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11]\n", + "[7, 21, 3, 25, 2, 10, 16, 21, 14, 23, 3, 9, 2, 25, 15, 15, 6, 2, 10, 24, 7, 12, 9, 5, 19, 12, 9, 4, 6, 3, 25, 19, 25, 4, 24, 21, 2, 20, 5, 6, 1, 17, 21, 11, 7, 21, 19, 2, 18, 9, 20, 8, 23, 4, 25, 5, 10, 17, 18, 13, 20, 17, 17, 17, 9, 15, 1, 1, 25, 5, 22, 17, 18, 13, 18, 13, 10, 7, 20, 16, 18, 7, 2, 20, 14, 10, 10, 12, 11, 21, 7, 16, 8, 18, 17, 6, 1, 11, 11, 4, 20, 15, 10, 12, 19, 8, 1, 5, 2, 18, 18, 1, 14, 5, 22, 13, 15, 14, 19, 11, 25, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]\n", + "[18, 16, 6, 10, 20, 13, 12, 12, 14, 17, 1, 2, 6, 4, 22, 16, 22, 19, 1, 12, 7, 2, 21, 21, 3, 25, 25, 10, 2, 12, 5, 9, 25, 6, 12, 17, 18, 4, 4, 3, 23, 2, 25, 21, 23, 1, 10, 7, 9, 6, 18, 18, 25, 8, 20, 3, 20, 16, 9, 5, 23, 25, 15, 10, 22, 2, 18, 9, 13, 13, 14, 5, 3, 6, 17, 3, 10, 7, 7, 9, 7, 5, 19, 18, 20, 15, 24, 22, 23, 25, 8, 17, 24, 14, 2, 25, 10, 6, 24, 25, 18, 10, 22, 17, 10, 25, 8, 20, 15, 17, 6, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]\n", + "[20, 24, 18, 18, 12, 6, 9, 5, 1, 19, 11, 14, 17, 16, 8, 19, 9, 17, 19, 8, 16, 25, 10, 8, 10, 18, 7, 20, 8, 20, 13, 11, 14, 11, 19, 23, 23, 14, 17, 9, 10, 24, 8, 16, 23, 24, 19, 19, 21, 11, 18, 14, 25, 15, 6, 11, 5, 14, 18, 4, 19, 15, 14, 10, 21, 8, 22, 14, 7, 19, 24, 23, 4, 4, 12, 18, 25, 17, 9, 11, 21, 14, 4, 2, 25, 24, 18, 6, 3, 21, 20, 8, 11, 4, 8, 25, 6, 15, 24, 17, 5, 21, 6, 2, 13, 16, 5, 24, 25, 16, 12, 23, 2, 18, 20, 13, 14, 11, 9, 25, 4, 19, 8, 11, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24]\n", + "[23, 4, 2, 5, 12, 3, 3, 2, 16, 23, 23, 12, 23, 18, 25, 20, 16, 7, 7, 5, 9, 6, 9, 17, 2, 23, 14, 15, 6, 13, 12, 20, 2, 2, 14, 24, 10, 15, 14, 22, 4, 15, 24, 14, 10, 15, 17, 9, 6, 6, 18, 5, 3, 7, 7, 2, 15, 8, 11, 11, 12, 6, 22, 13, 23, 25, 17, 3, 10, 11, 13, 13, 9, 5, 15, 16, 7, 15, 18, 24, 7, 18, 18, 24, 14, 18, 13, 25, 9, 20, 16, 24, 22, 1, 19, 23, 9, 18, 8, 23, 21, 17, 19, 7, 3, 2, 21, 1, 11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]\n", + "[10, 14, 6, 17, 1, 6, 21, 13, 3, 21, 12, 10, 22, 15, 24, 24, 5, 5, 6, 4, 14, 11, 13, 21, 21, 7, 3, 4, 25, 13, 12, 24, 3, 17, 11, 9, 9, 16, 17, 7, 6, 12, 8, 23, 23, 24, 21, 18, 6, 14, 13, 1, 2, 3, 15, 25, 2, 24, 21, 8, 18, 22, 15, 14, 3, 13, 21, 20, 8, 10, 14, 7, 19, 21, 12, 6, 21, 24, 22, 21, 3, 5, 12, 1, 13, 20, 23, 11, 12, 5, 3, 4, 2, 18, 20, 22, 17, 8, 7, 7, 11, 22, 10, 5, 16, 8, 17, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[12, 25, 21, 13, 17, 12, 11, 5, 12, 6, 23, 5, 23, 23, 7, 5, 4, 14, 20, 7, 19, 25, 19, 5, 18, 23, 24, 18, 23, 18, 3, 16, 13, 5, 22, 14, 8, 8, 18, 13, 18, 17, 10, 5, 10, 12, 9, 10, 4, 6, 1, 13, 24, 16, 3, 25, 20, 24, 23, 17, 2, 17, 12, 3, 10, 9, 19, 10, 2, 12, 9, 7, 22, 21, 19, 12, 9, 25, 11, 8, 20, 13, 13, 9, 25, 2, 25, 10, 14, 20, 21, 19, 9, 11, 23, 18, 20, 5, 1, 24, 5, 17, 18, 6, 3, 17, 18, 24, 22, 11, 25, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15]\n", + "[11, 2, 16, 16, 22, 10, 1, 6, 5, 22, 19, 18, 11, 4, 24, 8, 4, 5, 21, 12, 3, 8, 11, 6, 3, 21, 18, 8, 8, 14, 23, 17, 24, 15, 8, 18, 9, 2, 8, 23, 10, 8, 6, 16, 9, 22, 12, 13, 10, 20, 4, 10, 13, 6, 14, 21, 23, 8, 21, 11, 9, 11, 14, 18, 6, 4, 24, 13, 14, 14, 16, 7, 23, 1, 9, 8, 17, 4, 7, 19, 18, 4, 16, 1, 7, 12, 2, 14, 19, 21, 3, 10, 6, 17, 4, 5, 16, 19, 20, 3, 3, 5, 21, 19, 22, 12, 18, 25, 22, 25, 23, 19, 17, 5, 6, 18, 18, 12, 3, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11]\n", + "[19, 8, 23, 17, 20, 10, 24, 4, 22, 12, 24, 2, 24, 13, 4, 4, 1, 9, 13, 13, 1, 23, 19, 1, 11, 16, 18, 22, 21, 9, 5, 5, 15, 6, 7, 25, 11, 22, 5, 20, 23, 21, 24, 24, 18, 22, 20, 8, 4, 17, 8, 1, 12, 9, 19, 4, 16, 4, 2, 20, 4, 6, 18, 17, 23, 13, 6, 24, 5, 25, 11, 2, 21, 21, 21, 19, 9, 22, 5, 9, 23, 21, 22, 12, 4, 5, 6, 16, 4, 24, 1, 9, 13, 15, 18, 3, 15, 22, 13, 4, 25, 15, 22, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[23, 23, 4, 17, 3, 11, 16, 19, 16, 11, 1, 8, 22, 19, 6, 23, 19, 8, 22, 16, 16, 7, 18, 3, 3, 14, 9, 12, 22, 15, 21, 9, 2, 6, 20, 23, 8, 20, 18, 24, 11, 8, 2, 8, 18, 2, 21, 21, 19, 2, 14, 6, 3, 12, 10, 25, 14, 8, 25, 14, 2, 24, 18, 25, 3, 11, 7, 21, 10, 10, 25, 19, 12, 17, 14, 5, 15, 16, 25, 18, 18, 22, 24, 4, 24, 7, 14, 4, 3, 22, 12, 25, 6, 20, 14, 25, 7, 7, 3, 11, 17, 21, 22, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17]\n", + "[17, 18, 24, 11, 18, 23, 14, 15, 9, 9, 2, 10, 15, 17, 22, 4, 5, 10, 24, 11, 14, 20, 4, 3, 13, 8, 16, 14, 14, 24, 13, 12, 10, 17, 23, 10, 7, 3, 2, 24, 19, 23, 10, 25, 12, 4, 22, 10, 2, 11, 25, 23, 6, 12, 5, 8, 17, 21, 4, 9, 4, 24, 24, 15, 4, 20, 5, 23, 10, 18, 2, 11, 25, 6, 15, 22, 2, 18, 18, 17, 6, 6, 18, 9, 1, 10, 2, 16, 14, 3, 6, 5, 1, 2, 12, 22, 13, 12, 17, 25, 24, 12, 18, 22, 17, 16, 10, 10, 4, 9, 22, 4, 15, 13, 4, 2, 25, 1, 5, 1, 16, 17, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]\n", + "[25, 19, 4, 24, 16, 11, 20, 14, 15, 6, 20, 24, 24, 2, 19, 20, 24, 13, 5, 12, 19, 10, 25, 10, 4, 1, 14, 24, 17, 2, 6, 24, 1, 3, 3, 4, 16, 24, 7, 18, 23, 5, 7, 6, 16, 8, 17, 6, 9, 20, 14, 19, 13, 15, 2, 17, 22, 8, 18, 22, 19, 4, 6, 6, 16, 1, 15, 12, 22, 24, 4, 19, 1, 17, 24, 23, 7, 6, 19, 1, 20, 12, 8, 1, 22, 2, 1, 14, 5, 4, 19, 23, 16, 20, 11, 2, 14, 22, 20, 22, 3, 14, 17, 25, 23, 8, 2, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12]\n", + "[16, 10, 22, 5, 23, 17, 5, 18, 24, 12, 15, 24, 18, 6, 21, 7, 13, 21, 17, 20, 16, 7, 5, 2, 22, 9, 13, 10, 10, 4, 13, 20, 2, 16, 2, 7, 10, 10, 24, 1, 20, 23, 12, 23, 1, 5, 24, 2, 23, 2, 8, 12, 16, 1, 4, 20, 20, 5, 19, 14, 22, 2, 18, 6, 21, 25, 15, 8, 15, 20, 18, 4, 22, 14, 7, 12, 13, 21, 8, 14, 3, 15, 5, 15, 9, 10, 2, 4, 22, 11, 7, 5, 19, 7, 19, 5, 19, 21, 3, 18, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]\n", + "[6, 11, 1, 1, 23, 22, 10, 21, 18, 14, 2, 24, 20, 16, 21, 25, 14, 16, 9, 8, 2, 10, 23, 23, 15, 13, 10, 15, 11, 18, 4, 19, 16, 24, 6, 2, 5, 14, 6, 9, 1, 11, 10, 16, 14, 15, 2, 22, 3, 24, 5, 6, 25, 2, 10, 8, 9, 20, 13, 1, 11, 2, 6, 7, 1, 16, 22, 3, 1, 13, 12, 21, 25, 2, 1, 6, 2, 13, 9, 18, 4, 13, 14, 25, 18, 4, 24, 8, 5, 4, 18, 13, 23, 15, 3, 13, 1, 18, 13, 13, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19]\n", + "[11, 18, 19, 2, 15, 7, 18, 24, 9, 8, 11, 24, 19, 18, 5, 1, 10, 10, 13, 17, 4, 24, 11, 13, 24, 2, 1, 13, 19, 10, 10, 17, 8, 23, 21, 5, 22, 8, 20, 18, 17, 24, 15, 13, 20, 20, 7, 19, 7, 18, 14, 2, 19, 20, 21, 14, 7, 21, 17, 17, 25, 25, 22, 13, 18, 15, 12, 3, 24, 25, 8, 17, 5, 7, 14, 10, 2, 18, 10, 19, 9, 16, 24, 14, 3, 16, 19, 1, 2, 24, 13, 16, 24, 20, 4, 9, 17, 2, 13, 9, 4, 14, 20, 4, 17, 1, 9, 23, 24, 17, 23, 12, 18, 8, 24, 11, 12, 16, 6, 2, 14, 3, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]\n", + "[10, 7, 6, 15, 19, 9, 15, 4, 24, 12, 4, 8, 14, 15, 15, 5, 12, 2, 8, 19, 7, 14, 20, 4, 18, 19, 11, 10, 17, 8, 22, 21, 22, 16, 18, 3, 7, 19, 3, 20, 1, 11, 8, 3, 1, 14, 20, 3, 21, 23, 3, 13, 2, 14, 9, 11, 15, 17, 12, 22, 13, 24, 13, 4, 11, 23, 1, 16, 15, 6, 7, 12, 5, 25, 25, 18, 11, 18, 21, 11, 6, 17, 4, 18, 6, 11, 4, 10, 17, 5, 3, 17, 10, 12, 5, 22, 20, 11, 11, 11, 10, 16, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]\n", + "[13, 23, 16, 9, 5, 6, 16, 19, 5, 17, 20, 24, 22, 9, 22, 7, 2, 11, 2, 19, 1, 22, 15, 18, 22, 25, 7, 17, 10, 24, 12, 2, 4, 15, 22, 14, 9, 18, 10, 24, 9, 9, 13, 6, 15, 22, 8, 3, 25, 8, 22, 13, 4, 23, 6, 10, 12, 14, 19, 20, 3, 23, 17, 2, 13, 9, 17, 1, 2, 5, 3, 21, 22, 14, 17, 16, 3, 20, 2, 10, 2, 17, 22, 18, 9, 22, 6, 8, 7, 9, 1, 9, 10, 6, 17, 4, 15, 4, 16, 19, 2, 4, 25, 3, 4, 9, 3, 24, 11, 15, 18, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]\n", + "[13, 4, 16, 21, 22, 12, 19, 13, 4, 12, 20, 15, 19, 3, 4, 3, 13, 6, 8, 16, 22, 19, 24, 2, 6, 4, 2, 10, 2, 16, 17, 2, 12, 13, 6, 11, 20, 7, 1, 25, 13, 25, 21, 19, 19, 12, 9, 17, 4, 6, 2, 18, 12, 11, 21, 17, 10, 23, 22, 8, 20, 12, 5, 13, 21, 12, 12, 19, 12, 17, 14, 18, 23, 9, 3, 8, 24, 23, 8, 4, 9, 21, 23, 7, 25, 12, 5, 22, 12, 15, 15, 7, 16, 18, 20, 11, 1, 3, 18, 10, 24, 21, 7, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n", + "[20, 4, 14, 4, 23, 11, 5, 10, 12, 3, 12, 6, 23, 6, 3, 6, 25, 21, 15, 9, 22, 23, 16, 10, 21, 24, 11, 24, 10, 19, 22, 13, 8, 14, 18, 24, 25, 5, 1, 20, 25, 20, 2, 8, 10, 13, 14, 17, 9, 2, 11, 16, 14, 23, 16, 4, 5, 19, 20, 13, 24, 1, 18, 6, 5, 22, 15, 13, 25, 7, 14, 10, 4, 5, 10, 2, 13, 1, 24, 2, 13, 18, 24, 3, 3, 10, 17, 24, 5, 10, 14, 14, 20, 12, 1, 12, 11, 16, 4, 21, 11, 8, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20]\n", + "[5, 4, 9, 25, 5, 16, 9, 6, 21, 5, 5, 18, 16, 2, 5, 10, 1, 2, 2, 10, 9, 2, 10, 19, 9, 1, 25, 9, 9, 17, 19, 14, 11, 10, 2, 7, 4, 13, 25, 15, 17, 15, 5, 11, 22, 24, 3, 16, 25, 7, 21, 11, 23, 14, 5, 18, 25, 6, 25, 25, 13, 7, 6, 6, 11, 24, 20, 6, 5, 3, 12, 19, 8, 16, 21, 22, 2, 3, 9, 9, 22, 20, 6, 12, 18, 24, 11, 16, 25, 4, 1, 4, 9, 23, 15, 7, 6, 4, 8, 15, 18, 8, 3, 11, 24, 2, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11]\n", + "[15, 19, 17, 10, 3, 17, 13, 4, 5, 18, 8, 11, 13, 11, 11, 22, 22, 17, 17, 14, 23, 19, 22, 5, 12, 16, 16, 16, 23, 5, 11, 9, 12, 25, 25, 22, 12, 17, 14, 21, 2, 25, 22, 15, 8, 15, 16, 15, 18, 9, 4, 5, 7, 20, 21, 22, 10, 5, 24, 10, 9, 6, 4, 25, 25, 9, 18, 22, 6, 17, 11, 12, 11, 20, 25, 20, 8, 7, 18, 3, 10, 15, 19, 19, 2, 15, 8, 23, 21, 12, 16, 3, 23, 6, 25, 5, 23, 8, 2, 5, 5, 25, 13, 12, 8, 9, 21, 7, 11, 14, 11, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16]\n", + "[17, 12, 8, 11, 1, 23, 14, 18, 9, 19, 13, 5, 21, 16, 17, 24, 11, 15, 16, 21, 19, 11, 5, 14, 5, 16, 22, 14, 10, 18, 21, 24, 18, 1, 12, 23, 15, 22, 12, 17, 10, 14, 25, 13, 23, 22, 2, 19, 18, 9, 23, 14, 13, 1, 18, 10, 16, 14, 4, 8, 2, 3, 19, 23, 20, 24, 18, 18, 13, 23, 3, 15, 7, 11, 2, 17, 12, 8, 15, 21, 8, 24, 25, 16, 24, 4, 6, 11, 25, 15, 4, 23, 18, 4, 22, 16, 21, 11, 22, 19, 14, 18, 21, 16, 24, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]\n", + "[15, 2, 8, 21, 2, 14, 23, 10, 5, 19, 14, 25, 3, 4, 9, 14, 1, 14, 9, 12, 17, 22, 15, 10, 24, 3, 17, 8, 9, 12, 11, 11, 8, 17, 25, 5, 10, 7, 24, 1, 16, 15, 9, 18, 18, 4, 1, 22, 14, 23, 22, 15, 23, 25, 1, 8, 22, 3, 25, 23, 2, 8, 17, 13, 1, 15, 1, 3, 6, 9, 18, 7, 12, 25, 10, 21, 20, 1, 17, 3, 22, 6, 23, 12, 5, 19, 21, 13, 17, 14, 20, 3, 10, 5, 9, 2, 21, 7, 18, 1, 24, 24, 24, 17, 11, 3, 11, 21, 21, 14, 9, 20, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15]\n", + "[12, 5, 12, 11, 4, 22, 24, 9, 6, 19, 23, 17, 7, 10, 7, 11, 6, 15, 6, 3, 24, 21, 14, 16, 9, 7, 12, 12, 9, 25, 13, 17, 24, 6, 12, 22, 22, 24, 4, 23, 4, 14, 14, 4, 19, 4, 5, 3, 23, 9, 9, 11, 3, 20, 11, 23, 24, 2, 19, 12, 17, 2, 19, 3, 14, 3, 14, 14, 23, 24, 16, 5, 20, 22, 24, 10, 20, 2, 15, 22, 25, 12, 3, 3, 13, 11, 18, 17, 9, 20, 3, 1, 18, 14, 8, 1, 21, 10, 22, 20, 1, 1, 19, 18, 19, 23, 5, 1, 13, 17, 18, 4, 11, 5, 8, 9, 9, 7, 13, 13, 13, 9, 9, 5, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19]\n", + "[1, 19, 5, 7, 2, 9, 8, 16, 15, 14, 16, 11, 14, 14, 24, 21, 9, 11, 4, 17, 15, 10, 20, 24, 3, 9, 9, 12, 10, 9, 21, 20, 16, 16, 18, 5, 21, 7, 11, 14, 20, 8, 16, 15, 13, 3, 4, 11, 20, 21, 25, 15, 8, 19, 20, 1, 22, 13, 15, 13, 8, 15, 19, 20, 20, 23, 22, 25, 25, 22, 19, 4, 16, 6, 2, 8, 24, 13, 2, 18, 14, 14, 24, 1, 12, 4, 22, 16, 15, 19, 5, 25, 12, 2, 12, 1, 18, 18, 4, 23, 25, 9, 20, 3, 14, 22, 9, 10, 5, 17, 1, 4, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]\n" + ] + } + ], + "source": [ + "# This will test your function \n", + "test_mode(mode_counter)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 9. Write a function that calculates the standard deviation of a list.\n", + "`NOTE: Do not use any libraries or already built functions. 😉`" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "metadata": {}, + "outputs": [], + "source": [ + "from statistics import stdev\n", + "def st_dev(arr):\n", + " n = 0 \n", + " suma = 0\n", + " for i in arr:\n", + " n += 1\n", + " suma += i\n", + " \n", + " avg = float(suma/n)\n", + " sum1= 0\n", + " \n", + " \n", + " for i in arr:\n", + " sum1 += (i - avg)**2\n", + " \n", + " total =(sum1/(n - 1))**0.5\n", + " return total\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.028s\n", + "\n", + "OK\n" + ] + } + ], + "source": [ + "# This will test your function \n", + "test_stdev(st_dev)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 10. Write a function to check if a string is a pangram, i.e.: if it contains all the letters of the alphabet at least once. Mind that the strings may contain characters that are not letters." + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "metadata": {}, + "outputs": [], + "source": [ + "def pangram(string):\n", + " abc = \"abcdefghijklmnopqrstuvwxyz\"\n", + " for i in abc:\n", + " if i not in string.lower():\n", + " return False\n", + " return True\n" + ] + }, + { + "cell_type": "code", + "execution_count": 109, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "..............................\n", + "----------------------------------------------------------------------\n", + "Ran 30 tests in 0.018s\n", + "\n", + "OK\n" + ] + } + ], + "source": [ + "# This will test your function \n", + "test_pangram(pangram)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 11. Write a function that receives a string of comma separated words and returns a string of comma separated words sorted alphabetically.\n", + "\n", + "`NOTE: You may use sorted but not split and definitely no join! 🤪`" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "metadata": {}, + "outputs": [], + "source": [ + "def sort_alpha(string):\n", + " string +=\",\"\n", + " newlist=[]\n", + " word=\"\"\n", + " new_word =\"\"\n", + " for letter in string.lower():\n", + " if letter ==\",\":\n", + " newlist.append(word)\n", + " word=\"\"\n", + " else:\n", + " word+=letter\n", + " newlist.sort()\n", + " for i in newlist:\n", + " new_word+=\",\"+i\n", + " \n", + " finalword = new_word[1:]\n", + " return finalword\n", + " \n", + " \n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 137, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'bernat,el,hola,soc'" + ] + }, + "execution_count": 137, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sort_alpha(\"Hola,soc,el,bernat\")" + ] + }, + { + "cell_type": "code", + "execution_count": 138, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.038s\n", + "\n", + "OK\n" + ] + } + ], + "source": [ + "# This will test your function \n", + "test_alpha(sort_alpha)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 12. Write a function to check if a given password is strong (at least 8 characters, at least one lower case, at least one upper case, at least one number and at least one special character). It should output True if strong and False if not.\n", + "`Valid special characters: # @ ! $ % & ( ) ^ * [ ] { }`" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "def check_pass(string):\n", + " abc = \"abcdefghijklmnopqrstuvwxyz\"\n", + " abc_upper = \"ABCDEFGHIJKLMNOPQRSTVWXYZ\"\n", + " num = \"0123456789\"\n", + " char = \"#@!$%&)(^*][}{\"\n", + " count = 0\n", + " val = True\n", + " \n", + " \n", + " if validation and validation1 and validation2 and validation3 and validation4:\n", + " final = True\n", + " \n", + " print(final)\n", + " return final\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'string' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [6]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;66;03m# This will test your function \u001b[39;00m\n\u001b[0;32m----> 2\u001b[0m check_pass(\u001b[43mstring\u001b[49m)\n", + "\u001b[0;31mNameError\u001b[0m: name 'string' is not defined" + ] + } + ], + "source": [ + "# This will test your function \n", + "check_pass(string)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.12" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/main.ipynb b/main.ipynb index 73f285a..c06d3b7 100644 --- a/main.ipynb +++ b/main.ipynb @@ -20,7 +20,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -37,19 +37,34 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def greater(a,b):\n", - " pass" + " if a >= b:\n", + " return a\n", + " else:\n", + " return b" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.035s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_greater(greater)" @@ -64,19 +79,35 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "def greatest(arr):\n", - " pass" + " aux = 0\n", + " for i in arr:\n", + " if i > aux:\n", + " aux = i\n", + " return aux" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.035s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_greatest(greatest)" @@ -91,19 +122,34 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "def sum_all(arr):\n", - " pass" + " count = 0\n", + " for i in arr:\n", + " count += i\n", + " return count" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.038s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_sum(sum_all)" @@ -118,19 +164,34 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 19, "metadata": {}, "outputs": [], "source": [ "def mult_all(arr):\n", - " pass" + " count = 1\n", + " for i in arr:\n", + " count = count * i\n", + " return count" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 20, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.033s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_mult(mult_all)" @@ -145,19 +206,469 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 30, "metadata": {}, "outputs": [], "source": [ "def oper_all(arr, oper):\n", - " pass" + " if oper == \"+\":\n", + " count = 1\n", + " for i in arr:\n", + " count += i\n", + " else:\n", + " count = 1\n", + " for i in arr:\n", + " count = count * i\n", + "\n", + " return count\n", + " \n" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 31, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "FF.FF..FF.F.F..F.FF.FFF...FF........FFF..FF.FF..F.FF...FF.F.FF..F.FFFF..FFF.FF.F.FF...F..F.FFFF..FF.\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -92 != -93 : Should be -93\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -4 != -5 : Should be -5\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 13 != 12 : Should be 12\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -18 != -19 : Should be -19\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 52 != 51 : Should be 51\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 11 != 10 : Should be 10\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -53 != -54 : Should be -54\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 104 != 103 : Should be 103\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -38 != -39 : Should be -39\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -8 != -9 : Should be -9\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -68 != -69 : Should be -69\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 18 != 17 : Should be 17\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -28 != -29 : Should be -29\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 60 != 59 : Should be 59\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 2 != 1 : Should be 1\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -64 != -65 : Should be -65\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 108 != 107 : Should be 107\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -3 != -4 : Should be -4\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 14 != 13 : Should be 13\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 11 != 10 : Should be 10\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -91 != -92 : Should be -92\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -14 != -15 : Should be -15\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -3 != -4 : Should be -4\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 30 != 29 : Should be 29\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -14 != -15 : Should be -15\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -24 != -25 : Should be -25\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 121 != 120 : Should be 120\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -12 != -13 : Should be -13\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 47 != 46 : Should be 46\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -89 != -90 : Should be -90\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 30 != 29 : Should be 29\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 33 != 32 : Should be 32\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 7 != 6 : Should be 6\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 169 != 168 : Should be 168\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -10 != -11 : Should be -11\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 32 != 31 : Should be 31\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 39 != 38 : Should be 38\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -57 != -58 : Should be -58\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -24 != -25 : Should be -25\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 84 != 83 : Should be 83\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 23 != 22 : Should be 22\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -4 != -5 : Should be -5\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 21 != 20 : Should be 20\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -19 != -20 : Should be -20\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -40 != -41 : Should be -41\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 30 != 29 : Should be 29\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 61 != 60 : Should be 60\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -32 != -33 : Should be -33\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -14 != -15 : Should be -15\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: 51 != 50 : Should be 50\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -22 != -23 : Should be -23\n", + "\n", + "======================================================================\n", + "FAIL: runTest (mod.testing.test_operations..TestKnown)\n", + "----------------------------------------------------------------------\n", + "Traceback (most recent call last):\n", + " File \"/Users/fxsky/Desktop/lab-functions/mod/testing.py\", line 78, in runTest\n", + " self.assertEqual(fn(*self.input), self.output, f\"Should be {self.output}\")\n", + "AssertionError: -13 != -14 : Should be -14\n", + "\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.043s\n", + "\n", + "FAILED (failures=52)\n" + ] + } + ], "source": [ "# This will test your function \n", "test_operations(oper_all)" @@ -172,19 +683,34 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 32, "metadata": {}, "outputs": [], "source": [ "def factorial(n):\n", - " pass" + " if n == 0:\n", + " return 1\n", + " \n", + " return n * factorial(n-1)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 33, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.040s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_factorial(factorial)" @@ -201,19 +727,33 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 34, "metadata": {}, "outputs": [], "source": [ "def unique(arr):\n", - " pass" + " new_set=set(arr)\n", + " \n", + " return new_set\n" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 35, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.024s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_unique(unique)" @@ -229,19 +769,152 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 77, "metadata": {}, "outputs": [], "source": [ "def mode_counter(arr):\n", - " pass" + " print(arr)\n", + " dictionary={}\n", + " maximum =0\n", + " for values in arr:\n", + " if values in dictionary:\n", + " dictionary[values]+=1\n", + " else:\n", + " dictionary[values]=1\n", + " \n", + " if not maximum or dictionary[values]>maximum[0]:\n", + " maximum=(values,dictionary[values])\n", + " mode=maximum[0]\n", + " \n", + " return mode\n", + " \n", + " " ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 78, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.040s\n", + "\n", + "OK\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[11, 14, 16, 14, 4, 1, 11, 12, 13, 15, 1, 1, 4, 10, 5, 6, 25, 9, 2, 13, 24, 12, 21, 18, 11, 2, 9, 10, 25, 10, 12, 12, 3, 22, 14, 22, 5, 14, 20, 23, 25, 3, 2, 12, 17, 22, 4, 17, 21, 25, 3, 25, 25, 15, 1, 18, 14, 13, 20, 24, 23, 15, 18, 11, 15, 22, 18, 1, 21, 7, 12, 11, 25, 15, 13, 1, 21, 21, 12, 4, 25, 16, 23, 25, 10, 7, 25, 23, 10, 10, 22, 7, 13, 6, 22, 12, 22, 19, 23, 2, 10, 25, 1, 20, 15, 1, 22, 13, 20, 15, 24, 16, 5, 7, 17, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[3, 8, 12, 13, 20, 15, 15, 13, 10, 3, 4, 17, 21, 21, 24, 6, 15, 1, 14, 1, 2, 6, 25, 5, 16, 11, 17, 10, 10, 3, 6, 16, 25, 20, 6, 7, 6, 7, 9, 15, 17, 18, 15, 13, 2, 3, 18, 4, 13, 23, 19, 18, 8, 22, 3, 14, 23, 14, 2, 21, 17, 8, 18, 15, 15, 20, 15, 10, 23, 23, 25, 25, 4, 9, 7, 24, 3, 20, 17, 17, 17, 15, 15, 5, 13, 18, 4, 3, 18, 12, 3, 3, 1, 1, 11, 22, 4, 7, 8, 13, 18, 16, 20, 10, 11, 4, 3, 24, 10, 3, 16, 16, 21, 7, 19, 20, 11, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25]\n", + "[4, 5, 11, 21, 2, 6, 9, 2, 21, 8, 2, 8, 1, 9, 4, 3, 22, 12, 4, 10, 1, 10, 15, 10, 4, 3, 24, 9, 12, 12, 25, 21, 20, 5, 21, 17, 23, 24, 23, 9, 7, 8, 10, 18, 1, 19, 1, 2, 8, 18, 6, 19, 10, 25, 11, 7, 11, 2, 11, 20, 1, 25, 16, 17, 8, 9, 15, 8, 14, 24, 11, 25, 21, 20, 3, 16, 13, 5, 11, 12, 22, 16, 18, 22, 20, 20, 12, 1, 5, 1, 5, 20, 19, 1, 4, 19, 15, 13, 7, 6, 12, 15, 19, 22, 24, 24, 18, 12, 2, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16]\n", + "[5, 10, 22, 12, 20, 4, 11, 16, 16, 23, 9, 20, 24, 7, 19, 4, 10, 2, 19, 19, 1, 24, 7, 23, 16, 2, 10, 19, 17, 10, 17, 22, 16, 9, 16, 12, 21, 9, 3, 20, 16, 6, 18, 4, 9, 9, 9, 21, 10, 12, 8, 20, 13, 21, 14, 1, 6, 15, 17, 9, 1, 16, 14, 5, 8, 6, 14, 15, 21, 17, 8, 1, 6, 14, 7, 6, 8, 4, 8, 16, 15, 3, 4, 7, 4, 15, 6, 14, 4, 6, 22, 13, 12, 17, 17, 24, 12, 23, 17, 12, 14, 13, 25, 11, 24, 10, 24, 22, 9, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[12, 11, 19, 18, 13, 2, 2, 25, 3, 12, 8, 22, 23, 13, 16, 11, 3, 15, 21, 13, 13, 16, 1, 1, 17, 6, 2, 25, 24, 21, 15, 25, 10, 9, 1, 18, 19, 17, 4, 14, 11, 17, 13, 22, 17, 16, 8, 22, 20, 6, 19, 22, 16, 13, 22, 20, 25, 21, 13, 17, 23, 17, 6, 3, 8, 16, 14, 22, 8, 5, 2, 19, 25, 21, 24, 23, 25, 20, 25, 11, 13, 18, 8, 8, 11, 7, 22, 5, 13, 3, 9, 23, 17, 14, 25, 21, 19, 4, 25, 13, 25, 3, 22, 19, 1, 19, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]\n", + "[20, 23, 16, 9, 4, 10, 11, 11, 10, 15, 4, 16, 6, 3, 20, 19, 15, 16, 22, 22, 1, 2, 11, 1, 24, 17, 17, 13, 8, 8, 13, 7, 15, 21, 16, 15, 3, 22, 21, 23, 25, 7, 17, 10, 20, 9, 16, 7, 15, 24, 25, 7, 16, 12, 12, 8, 24, 18, 12, 11, 1, 15, 12, 11, 13, 5, 21, 22, 1, 23, 4, 4, 3, 25, 8, 23, 12, 25, 3, 4, 15, 12, 22, 21, 2, 17, 3, 3, 5, 16, 23, 20, 8, 25, 12, 11, 20, 6, 24, 9, 16, 5, 10, 6, 16, 25, 3, 23, 19, 14, 21, 8, 25, 13, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[14, 18, 13, 1, 22, 19, 2, 6, 14, 5, 18, 8, 12, 21, 3, 10, 18, 8, 7, 2, 1, 18, 3, 13, 9, 5, 1, 20, 2, 6, 6, 1, 6, 22, 3, 8, 14, 23, 14, 6, 23, 6, 25, 8, 2, 21, 25, 17, 24, 16, 13, 6, 3, 9, 22, 2, 13, 15, 13, 9, 2, 4, 4, 22, 6, 7, 24, 21, 16, 17, 11, 19, 4, 6, 18, 21, 8, 2, 15, 13, 10, 4, 16, 25, 24, 19, 12, 11, 23, 20, 14, 20, 2, 4, 22, 20, 20, 4, 20, 24, 15, 1, 24, 10, 10, 23, 2, 10, 18, 3, 17, 7, 8, 8, 21, 6, 22, 1, 17, 11, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[22, 24, 17, 1, 22, 22, 18, 25, 13, 20, 18, 7, 16, 14, 8, 9, 7, 2, 20, 16, 6, 10, 19, 13, 24, 4, 12, 15, 17, 18, 6, 13, 14, 21, 6, 16, 12, 18, 16, 9, 2, 18, 15, 6, 16, 17, 21, 4, 14, 3, 5, 24, 17, 15, 9, 11, 7, 2, 10, 21, 14, 8, 22, 17, 6, 9, 18, 9, 11, 24, 24, 18, 12, 16, 11, 4, 7, 5, 13, 22, 5, 20, 7, 17, 9, 23, 19, 6, 16, 14, 16, 17, 6, 22, 15, 13, 21, 18, 5, 7, 10, 6, 16, 17, 10, 18, 5, 11, 21, 19, 4, 7, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11]\n", + "[25, 23, 4, 6, 11, 5, 23, 3, 14, 21, 13, 1, 9, 13, 10, 1, 1, 3, 14, 3, 2, 8, 10, 16, 23, 8, 6, 15, 16, 20, 5, 23, 11, 21, 13, 16, 12, 17, 12, 16, 21, 25, 9, 11, 25, 24, 24, 14, 8, 9, 4, 12, 22, 18, 13, 22, 22, 20, 21, 20, 3, 4, 1, 10, 10, 16, 9, 20, 5, 7, 1, 15, 15, 25, 11, 19, 6, 12, 4, 19, 25, 10, 11, 20, 20, 1, 2, 10, 24, 21, 24, 7, 18, 11, 14, 12, 15, 24, 6, 11, 16, 25, 25, 7, 23, 2, 25, 15, 5, 23, 10, 11, 17, 7, 12, 5, 7, 19, 14, 21, 17, 16, 12, 1, 10, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[21, 16, 13, 1, 11, 4, 2, 11, 10, 22, 17, 5, 14, 13, 5, 3, 25, 20, 14, 17, 3, 19, 8, 5, 20, 9, 10, 5, 23, 6, 2, 13, 10, 17, 20, 3, 21, 23, 18, 3, 22, 21, 14, 2, 8, 10, 20, 7, 15, 2, 20, 24, 16, 8, 22, 14, 23, 5, 25, 18, 2, 24, 3, 20, 16, 13, 15, 18, 1, 12, 2, 14, 4, 13, 15, 9, 18, 3, 6, 22, 20, 16, 15, 25, 20, 3, 20, 7, 19, 6, 9, 8, 12, 22, 3, 22, 9, 12, 8, 8, 4, 18, 19, 13, 17, 22, 2, 8, 23, 10, 25, 20, 9, 9, 25, 10, 6, 25, 16, 20, 19, 20, 17, 22, 7, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]\n", + "[7, 18, 9, 12, 15, 19, 4, 18, 12, 6, 19, 18, 12, 22, 25, 20, 9, 13, 16, 14, 3, 9, 7, 15, 12, 20, 10, 3, 16, 4, 8, 12, 17, 7, 21, 24, 13, 20, 22, 13, 14, 6, 14, 13, 8, 11, 6, 22, 25, 6, 5, 3, 3, 15, 18, 2, 10, 18, 6, 22, 19, 22, 14, 14, 20, 7, 6, 14, 24, 14, 22, 25, 16, 14, 21, 11, 4, 19, 5, 2, 16, 20, 9, 5, 3, 6, 18, 21, 17, 11, 4, 7, 11, 22, 9, 2, 2, 17, 4, 23, 1, 20, 7, 2, 24, 21, 21, 2, 20, 1, 5, 18, 11, 18, 3, 19, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]\n", + "[6, 25, 4, 22, 25, 4, 17, 20, 14, 14, 10, 7, 8, 17, 19, 16, 13, 21, 24, 15, 4, 19, 16, 24, 17, 19, 22, 17, 19, 14, 20, 5, 6, 12, 1, 19, 12, 25, 17, 16, 10, 5, 18, 11, 5, 11, 10, 7, 2, 19, 19, 8, 6, 15, 25, 19, 13, 24, 11, 15, 24, 13, 20, 4, 14, 9, 2, 18, 9, 4, 8, 12, 21, 25, 7, 6, 20, 18, 12, 18, 15, 20, 15, 7, 10, 5, 22, 6, 24, 8, 1, 19, 23, 11, 7, 17, 21, 16, 7, 13, 19, 24, 10, 16, 23, 11, 22, 4, 19, 11, 16, 12, 22, 14, 8, 14, 18, 21, 1, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12]\n", + "[19, 20, 23, 21, 11, 20, 13, 2, 25, 16, 20, 15, 2, 9, 12, 24, 12, 16, 17, 9, 15, 16, 10, 2, 16, 12, 6, 16, 25, 9, 18, 7, 12, 21, 8, 10, 17, 4, 16, 4, 9, 8, 1, 22, 10, 21, 1, 4, 10, 3, 5, 6, 10, 16, 24, 11, 4, 14, 22, 6, 23, 2, 21, 8, 25, 14, 18, 3, 2, 3, 8, 5, 14, 10, 20, 8, 8, 24, 13, 22, 18, 17, 5, 22, 17, 17, 21, 21, 10, 21, 8, 2, 3, 13, 5, 24, 18, 16, 19, 20, 18, 2, 2, 8, 17, 6, 22, 15, 15, 21, 15, 16, 18, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]\n", + "[22, 15, 11, 10, 8, 11, 25, 22, 19, 14, 1, 25, 17, 16, 10, 5, 24, 24, 5, 1, 18, 22, 2, 3, 24, 8, 17, 15, 11, 19, 7, 6, 25, 10, 16, 20, 14, 6, 15, 24, 22, 11, 15, 13, 4, 13, 25, 2, 18, 20, 11, 5, 25, 16, 3, 9, 16, 5, 14, 18, 20, 17, 16, 22, 18, 9, 15, 3, 8, 18, 24, 7, 15, 24, 5, 2, 8, 15, 10, 19, 10, 14, 3, 7, 6, 24, 25, 20, 23, 1, 24, 25, 9, 22, 15, 6, 8, 5, 7, 21, 23, 17, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24]\n", + "[25, 20, 14, 11, 10, 23, 13, 10, 21, 22, 22, 14, 5, 11, 13, 1, 7, 4, 19, 24, 2, 10, 16, 12, 3, 10, 23, 22, 1, 19, 12, 6, 9, 18, 19, 13, 25, 18, 15, 19, 25, 14, 5, 18, 20, 13, 18, 12, 16, 1, 3, 5, 17, 21, 5, 2, 4, 10, 14, 20, 9, 21, 23, 12, 6, 23, 17, 11, 3, 10, 7, 17, 16, 17, 19, 23, 7, 3, 4, 4, 16, 18, 13, 4, 25, 5, 3, 19, 11, 8, 13, 4, 17, 14, 5, 23, 19, 10, 7, 13, 12, 10, 2, 18, 22, 7, 6, 20, 25, 6, 20, 12, 5, 3, 16, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22]\n", + "[17, 25, 25, 23, 20, 14, 2, 24, 4, 23, 11, 12, 7, 4, 10, 24, 14, 10, 19, 25, 21, 17, 15, 11, 24, 12, 4, 13, 18, 6, 13, 19, 3, 13, 17, 8, 16, 14, 14, 21, 7, 4, 21, 1, 3, 7, 3, 24, 16, 15, 25, 23, 9, 24, 24, 13, 14, 10, 10, 11, 18, 14, 3, 20, 22, 11, 9, 19, 16, 21, 5, 18, 24, 3, 15, 16, 23, 8, 8, 20, 18, 4, 25, 25, 15, 11, 1, 19, 19, 7, 7, 3, 17, 14, 3, 24, 3, 12, 13, 19, 16, 3, 11, 17, 6, 17, 4, 15, 15, 7, 10, 4, 21, 18, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]\n", + "[20, 25, 22, 20, 13, 12, 1, 21, 6, 16, 24, 4, 4, 20, 8, 25, 20, 6, 20, 7, 20, 14, 16, 23, 10, 12, 20, 1, 17, 21, 4, 8, 13, 19, 3, 20, 1, 17, 7, 5, 18, 8, 17, 10, 25, 21, 20, 14, 2, 18, 19, 17, 17, 17, 20, 16, 6, 17, 20, 3, 1, 23, 8, 2, 16, 16, 3, 21, 20, 25, 12, 10, 12, 16, 16, 5, 14, 18, 19, 24, 22, 6, 14, 21, 11, 22, 1, 1, 24, 20, 9, 13, 10, 22, 22, 20, 8, 8, 13, 12, 3, 12, 23, 21, 4, 3, 18, 15, 16, 18, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]\n", + "[5, 22, 23, 2, 5, 14, 5, 13, 15, 6, 23, 23, 12, 13, 25, 20, 3, 1, 17, 2, 24, 24, 15, 23, 9, 4, 6, 4, 13, 13, 3, 25, 25, 21, 19, 9, 10, 20, 25, 21, 15, 23, 24, 24, 13, 21, 20, 4, 23, 7, 21, 17, 21, 13, 12, 3, 24, 1, 10, 12, 8, 9, 2, 14, 15, 1, 23, 6, 23, 19, 12, 23, 1, 20, 9, 8, 2, 16, 22, 20, 25, 9, 4, 17, 9, 7, 19, 20, 16, 3, 10, 11, 9, 4, 7, 6, 6, 13, 8, 10, 2, 25, 8, 10, 8, 5, 19, 9, 20, 11, 14, 25, 15, 9, 11, 5, 19, 23, 9, 9, 4, 8, 10, 24, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17]\n", + "[17, 15, 3, 9, 6, 8, 10, 2, 5, 7, 17, 14, 25, 3, 21, 7, 6, 24, 11, 19, 18, 6, 13, 15, 25, 17, 7, 12, 15, 13, 5, 6, 19, 4, 8, 15, 17, 17, 14, 8, 17, 16, 7, 25, 15, 16, 2, 20, 12, 3, 4, 16, 13, 14, 17, 18, 19, 12, 17, 6, 21, 7, 10, 11, 22, 16, 8, 8, 7, 20, 24, 4, 21, 7, 5, 20, 25, 25, 3, 4, 2, 15, 9, 23, 15, 17, 4, 18, 16, 17, 7, 9, 11, 2, 3, 9, 13, 16, 5, 7, 7, 17, 10, 20, 21, 10, 17, 8, 1, 16, 3, 2, 16, 21, 17, 5, 17, 11, 14, 23, 10, 11, 3, 7, 20, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16]\n", + "[6, 3, 8, 20, 4, 17, 11, 19, 22, 21, 20, 13, 23, 13, 16, 15, 1, 18, 21, 3, 18, 7, 8, 11, 3, 21, 20, 10, 15, 21, 5, 6, 5, 12, 23, 23, 13, 18, 19, 18, 8, 13, 8, 15, 9, 7, 7, 6, 4, 11, 7, 12, 19, 21, 22, 12, 18, 21, 21, 17, 9, 23, 8, 4, 9, 6, 25, 22, 4, 21, 21, 10, 1, 20, 1, 8, 14, 1, 1, 11, 25, 5, 11, 21, 20, 8, 10, 15, 10, 21, 24, 14, 21, 2, 5, 3, 10, 12, 13, 21, 11, 9, 6, 12, 20, 11, 21, 20, 9, 11, 4, 17, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]\n", + "[25, 13, 1, 17, 2, 3, 10, 25, 12, 16, 21, 25, 15, 19, 18, 19, 5, 23, 9, 15, 7, 11, 12, 6, 9, 10, 3, 16, 24, 2, 22, 9, 23, 9, 25, 2, 13, 11, 1, 5, 23, 11, 1, 21, 15, 11, 11, 3, 20, 7, 14, 2, 2, 8, 25, 1, 25, 12, 13, 20, 19, 9, 24, 9, 19, 13, 7, 25, 23, 17, 15, 22, 20, 21, 16, 13, 10, 12, 11, 21, 8, 16, 22, 17, 2, 6, 17, 2, 12, 15, 23, 25, 14, 4, 22, 6, 11, 14, 7, 25, 2, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17]\n", + "[14, 10, 15, 17, 22, 9, 14, 23, 21, 17, 9, 20, 25, 9, 11, 21, 11, 2, 4, 7, 21, 21, 25, 20, 24, 17, 7, 17, 4, 17, 11, 14, 20, 2, 4, 25, 15, 5, 8, 6, 23, 1, 11, 1, 5, 2, 20, 12, 14, 16, 13, 11, 17, 10, 6, 11, 13, 21, 24, 14, 4, 22, 13, 3, 10, 12, 6, 18, 3, 15, 16, 10, 17, 10, 16, 19, 24, 20, 19, 25, 16, 19, 23, 23, 16, 18, 17, 7, 23, 13, 3, 12, 11, 13, 25, 11, 23, 19, 5, 9, 11, 22, 1, 21, 10, 16, 5, 13, 11, 11, 23, 8, 18, 22, 9, 22, 23, 18, 18, 8, 10, 24, 11, 10, 1, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]\n", + "[15, 8, 7, 9, 7, 15, 3, 20, 5, 4, 7, 8, 21, 16, 2, 6, 24, 25, 18, 24, 5, 17, 13, 8, 20, 23, 11, 16, 25, 22, 1, 8, 11, 10, 10, 20, 24, 23, 21, 22, 21, 11, 15, 2, 20, 4, 16, 7, 25, 25, 8, 25, 4, 20, 9, 16, 7, 13, 14, 4, 16, 24, 23, 8, 4, 12, 19, 15, 20, 10, 24, 18, 1, 19, 23, 3, 21, 3, 16, 1, 7, 3, 19, 24, 17, 8, 21, 7, 23, 3, 23, 21, 5, 8, 3, 13, 12, 20, 11, 2, 6, 9, 1, 11, 4, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20]\n", + "[16, 4, 15, 8, 20, 25, 20, 5, 14, 2, 6, 7, 23, 20, 11, 1, 16, 8, 25, 4, 12, 4, 19, 5, 21, 21, 2, 10, 24, 3, 10, 25, 23, 15, 18, 11, 15, 21, 25, 5, 18, 16, 7, 5, 12, 23, 5, 24, 19, 6, 18, 19, 18, 5, 13, 22, 2, 10, 17, 17, 13, 20, 13, 25, 21, 2, 20, 9, 21, 2, 13, 13, 12, 3, 24, 23, 22, 5, 10, 20, 11, 12, 22, 13, 10, 22, 9, 9, 12, 11, 9, 22, 23, 13, 3, 23, 9, 7, 12, 20, 13, 12, 7, 21, 8, 6, 14, 5, 8, 8, 20, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24]\n", + "[19, 12, 3, 3, 3, 15, 10, 6, 4, 5, 24, 18, 8, 4, 9, 11, 4, 5, 5, 6, 14, 19, 20, 20, 22, 19, 23, 24, 6, 9, 6, 20, 2, 21, 5, 17, 2, 21, 18, 1, 14, 10, 10, 14, 2, 19, 18, 15, 11, 25, 5, 16, 19, 9, 24, 6, 2, 19, 7, 8, 7, 15, 22, 10, 22, 25, 15, 15, 12, 5, 9, 13, 5, 25, 14, 13, 13, 21, 7, 16, 11, 4, 18, 8, 20, 5, 10, 14, 22, 22, 4, 2, 4, 3, 11, 10, 1, 17, 21, 8, 17, 20, 22, 22, 24, 6, 14, 16, 23, 7, 17, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]\n", + "[17, 4, 10, 22, 13, 7, 23, 21, 13, 21, 18, 7, 5, 23, 22, 9, 24, 2, 12, 7, 10, 9, 9, 6, 1, 6, 11, 12, 9, 9, 8, 20, 24, 12, 7, 17, 15, 19, 25, 16, 9, 2, 6, 5, 11, 5, 20, 18, 6, 20, 17, 23, 23, 25, 17, 22, 25, 6, 10, 9, 24, 11, 1, 25, 22, 21, 19, 24, 19, 25, 23, 22, 3, 22, 11, 19, 1, 8, 10, 13, 1, 20, 3, 8, 14, 21, 20, 6, 11, 11, 4, 22, 19, 18, 14, 4, 9, 5, 23, 18, 16, 12, 19, 2, 15, 11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]\n", + "[16, 11, 9, 22, 10, 15, 2, 14, 12, 11, 24, 24, 18, 3, 3, 3, 23, 23, 25, 5, 12, 9, 22, 7, 10, 8, 2, 4, 8, 18, 11, 9, 24, 2, 9, 21, 19, 19, 14, 17, 15, 10, 7, 6, 15, 17, 17, 14, 6, 19, 25, 15, 20, 7, 2, 7, 5, 18, 12, 24, 10, 16, 23, 1, 13, 8, 14, 6, 19, 25, 25, 2, 12, 18, 2, 9, 9, 3, 7, 12, 11, 21, 23, 15, 20, 10, 23, 20, 15, 2, 19, 5, 21, 22, 10, 14, 20, 22, 22, 24, 6, 15, 16, 10, 1, 7, 15, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21]\n", + "[25, 10, 14, 11, 15, 10, 4, 17, 2, 24, 8, 22, 1, 9, 6, 5, 23, 21, 8, 8, 10, 12, 20, 10, 17, 8, 10, 9, 16, 16, 15, 3, 1, 20, 15, 1, 3, 11, 25, 9, 21, 25, 21, 15, 22, 17, 21, 4, 11, 15, 1, 12, 20, 12, 16, 11, 8, 2, 2, 4, 15, 21, 25, 11, 12, 5, 18, 16, 5, 1, 8, 11, 1, 15, 5, 18, 24, 7, 8, 16, 4, 13, 14, 2, 16, 16, 21, 19, 4, 14, 19, 10, 6, 14, 2, 24, 12, 8, 16, 19, 17, 8, 12, 6, 20, 4, 18, 2, 14, 10, 15, 4, 10, 9, 21, 7, 17, 6, 11, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]\n", + "[16, 22, 17, 16, 25, 13, 15, 15, 22, 18, 5, 6, 1, 14, 3, 19, 18, 3, 12, 24, 21, 23, 25, 23, 2, 14, 15, 18, 16, 11, 24, 4, 4, 17, 15, 2, 19, 21, 4, 8, 10, 20, 20, 6, 2, 16, 12, 10, 13, 6, 21, 4, 12, 4, 1, 25, 18, 23, 20, 23, 17, 11, 14, 13, 7, 17, 14, 22, 20, 12, 14, 19, 8, 23, 9, 14, 5, 4, 24, 24, 16, 8, 13, 21, 11, 8, 19, 17, 6, 10, 2, 23, 23, 5, 20, 20, 17, 23, 23, 7, 16, 18, 25, 18, 1, 12, 5, 21, 24, 14, 12, 21, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[2, 10, 9, 15, 22, 10, 16, 9, 17, 16, 23, 2, 3, 3, 4, 15, 12, 25, 1, 9, 12, 4, 21, 18, 16, 20, 12, 9, 7, 12, 18, 19, 15, 20, 13, 2, 21, 1, 7, 3, 19, 9, 23, 8, 5, 11, 24, 4, 20, 22, 10, 19, 20, 5, 2, 25, 7, 15, 24, 3, 19, 14, 1, 19, 5, 16, 19, 18, 9, 4, 11, 4, 8, 10, 11, 24, 10, 4, 11, 25, 24, 2, 12, 4, 13, 3, 22, 5, 10, 20, 12, 13, 23, 4, 4, 5, 21, 1, 5, 25, 23, 19, 25, 5, 5, 13, 23, 7, 2, 9, 24, 6, 4, 22, 4, 20, 4, 7, 6, 2, 19, 16, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[9, 16, 9, 1, 3, 20, 16, 17, 8, 18, 20, 10, 1, 10, 12, 8, 23, 2, 7, 16, 19, 13, 22, 14, 21, 24, 21, 3, 8, 13, 7, 11, 9, 13, 8, 19, 21, 4, 2, 5, 2, 19, 15, 25, 2, 9, 23, 10, 25, 15, 4, 14, 24, 10, 14, 5, 16, 20, 25, 15, 11, 3, 9, 23, 4, 12, 12, 10, 2, 15, 16, 2, 5, 14, 11, 18, 17, 19, 23, 16, 4, 13, 2, 8, 14, 9, 1, 10, 14, 19, 8, 6, 17, 15, 15, 11, 8, 19, 7, 14, 25, 11, 11, 3, 17, 20, 10, 2, 22, 10, 16, 23, 6, 13, 2, 8, 22, 25, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17]\n", + "[5, 10, 16, 16, 14, 13, 18, 13, 14, 2, 19, 12, 8, 21, 10, 19, 22, 2, 6, 4, 23, 2, 23, 3, 23, 2, 7, 4, 18, 20, 8, 10, 6, 25, 18, 17, 25, 16, 17, 8, 21, 1, 14, 15, 12, 3, 23, 7, 8, 18, 13, 1, 16, 14, 9, 7, 6, 7, 20, 2, 18, 3, 19, 3, 8, 3, 22, 19, 16, 24, 20, 7, 1, 21, 21, 10, 1, 10, 19, 14, 22, 13, 25, 15, 1, 21, 21, 9, 23, 17, 8, 8, 14, 6, 24, 13, 21, 17, 3, 22, 19, 22, 12, 13, 15, 22, 20, 22, 24, 22, 15, 11, 20, 12, 1, 2, 15, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]\n", + "[19, 3, 2, 7, 5, 4, 1, 8, 23, 12, 23, 12, 9, 11, 10, 15, 11, 6, 18, 11, 23, 22, 8, 2, 22, 18, 24, 21, 13, 7, 4, 9, 2, 23, 23, 8, 16, 12, 4, 10, 14, 6, 14, 24, 25, 11, 7, 11, 10, 22, 17, 2, 13, 23, 19, 5, 23, 2, 1, 20, 6, 23, 3, 11, 25, 8, 5, 23, 1, 10, 20, 7, 14, 6, 10, 24, 12, 10, 1, 3, 4, 24, 18, 20, 24, 5, 16, 7, 18, 6, 11, 15, 10, 5, 9, 21, 7, 18, 7, 12, 18, 18, 22, 20, 1, 10, 1, 8, 13, 22, 13, 2, 13, 1, 8, 22, 14, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n", + "[22, 24, 7, 1, 17, 13, 2, 2, 9, 24, 23, 12, 7, 3, 12, 21, 2, 11, 17, 11, 12, 4, 9, 19, 21, 10, 10, 25, 14, 25, 11, 17, 4, 22, 21, 23, 16, 24, 15, 1, 13, 10, 20, 7, 11, 8, 19, 13, 2, 8, 3, 1, 15, 22, 18, 15, 4, 19, 19, 19, 9, 7, 6, 7, 21, 16, 20, 6, 19, 21, 16, 12, 15, 17, 22, 23, 15, 16, 8, 18, 15, 3, 17, 8, 16, 15, 14, 18, 10, 8, 7, 7, 22, 10, 7, 12, 14, 21, 15, 7, 12, 3, 21, 21, 15, 18, 13, 11, 12, 11, 12, 18, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20]\n", + "[10, 9, 5, 3, 5, 2, 7, 25, 19, 15, 4, 15, 3, 12, 13, 19, 16, 1, 10, 2, 15, 24, 9, 12, 13, 17, 18, 1, 15, 20, 17, 22, 17, 15, 20, 16, 6, 22, 22, 16, 23, 17, 25, 24, 15, 14, 5, 24, 11, 21, 9, 3, 15, 18, 22, 21, 2, 17, 5, 4, 23, 25, 22, 21, 21, 4, 20, 22, 12, 23, 2, 14, 17, 18, 3, 3, 2, 10, 19, 11, 8, 1, 3, 18, 17, 2, 11, 11, 25, 25, 14, 8, 21, 19, 12, 9, 23, 3, 16, 21, 9, 7, 23, 1, 1, 12, 24, 2, 23, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]\n", + "[25, 5, 2, 1, 25, 20, 3, 11, 17, 2, 24, 9, 13, 18, 16, 11, 17, 1, 7, 22, 21, 25, 2, 2, 19, 17, 16, 5, 19, 3, 15, 10, 16, 24, 12, 6, 3, 21, 10, 18, 14, 23, 7, 1, 21, 8, 18, 15, 16, 17, 1, 24, 17, 1, 1, 14, 19, 11, 14, 3, 2, 15, 22, 17, 13, 7, 20, 7, 16, 10, 13, 15, 12, 24, 12, 5, 25, 8, 12, 1, 5, 14, 8, 6, 5, 5, 22, 4, 2, 19, 3, 11, 19, 3, 2, 14, 15, 25, 19, 6, 16, 22, 8, 15, 7, 21, 10, 19, 5, 16, 9, 10, 23, 21, 23, 1, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19]\n", + "[6, 3, 5, 21, 8, 23, 20, 6, 1, 17, 25, 17, 14, 19, 5, 1, 4, 2, 14, 10, 11, 21, 12, 11, 17, 10, 1, 17, 3, 25, 8, 13, 7, 5, 18, 15, 18, 21, 9, 12, 15, 20, 14, 22, 24, 19, 24, 4, 14, 10, 14, 16, 22, 7, 21, 18, 25, 17, 23, 10, 24, 3, 5, 23, 18, 13, 15, 20, 13, 25, 5, 8, 19, 14, 23, 2, 14, 11, 5, 22, 10, 15, 23, 18, 6, 25, 19, 13, 12, 10, 19, 16, 6, 23, 14, 20, 3, 16, 1, 11, 18, 21, 24, 6, 15, 16, 20, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]\n", + "[16, 20, 21, 3, 24, 22, 18, 24, 21, 24, 16, 12, 9, 11, 15, 20, 15, 7, 9, 17, 13, 20, 1, 1, 17, 4, 3, 9, 5, 23, 25, 8, 18, 21, 4, 22, 23, 21, 17, 16, 8, 21, 4, 3, 21, 5, 14, 14, 1, 22, 16, 13, 11, 24, 13, 24, 11, 17, 5, 17, 12, 4, 9, 6, 8, 25, 19, 3, 7, 24, 20, 25, 12, 16, 3, 5, 16, 25, 2, 8, 4, 24, 13, 6, 9, 8, 6, 23, 7, 25, 20, 22, 3, 21, 19, 2, 20, 9, 2, 3, 8, 6, 9, 17, 16, 12, 22, 17, 6, 8, 6, 12, 5, 2, 3, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]\n", + "[15, 9, 2, 10, 20, 5, 15, 20, 6, 3, 14, 9, 24, 14, 5, 19, 6, 19, 9, 22, 11, 18, 10, 12, 20, 13, 11, 22, 12, 14, 8, 23, 3, 17, 5, 24, 12, 6, 9, 6, 19, 4, 13, 21, 20, 2, 22, 3, 21, 6, 24, 13, 1, 8, 23, 16, 11, 2, 23, 7, 2, 15, 1, 9, 9, 11, 24, 9, 7, 19, 1, 15, 16, 10, 16, 14, 1, 25, 2, 14, 3, 7, 5, 21, 18, 6, 15, 2, 11, 23, 14, 24, 7, 12, 24, 10, 2, 18, 23, 23, 19, 17, 10, 3, 25, 3, 8, 11, 3, 15, 4, 18, 25, 15, 10, 13, 12, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]\n", + "[24, 4, 13, 18, 18, 6, 15, 25, 18, 5, 24, 18, 10, 10, 22, 9, 10, 8, 6, 1, 22, 9, 4, 9, 11, 25, 22, 2, 23, 5, 15, 3, 16, 2, 4, 21, 8, 20, 21, 15, 4, 13, 21, 3, 24, 10, 4, 6, 24, 3, 16, 4, 7, 19, 25, 14, 11, 17, 8, 1, 14, 14, 7, 3, 22, 23, 18, 14, 18, 2, 17, 6, 23, 24, 21, 3, 25, 16, 24, 24, 12, 6, 17, 16, 25, 5, 3, 16, 2, 19, 25, 20, 2, 14, 19, 2, 19, 10, 11, 17, 18, 22, 16, 5, 23, 15, 11, 23, 25, 17, 2, 18, 15, 23, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19]\n", + "[15, 16, 9, 23, 5, 10, 6, 11, 13, 15, 10, 11, 17, 16, 22, 1, 22, 18, 18, 8, 11, 22, 6, 25, 13, 23, 13, 12, 5, 22, 20, 15, 5, 2, 1, 20, 21, 18, 17, 5, 6, 21, 6, 2, 22, 17, 1, 6, 16, 8, 18, 17, 23, 21, 13, 20, 13, 25, 21, 17, 8, 20, 15, 5, 15, 4, 23, 1, 16, 12, 13, 20, 24, 15, 6, 17, 9, 16, 12, 25, 22, 17, 21, 1, 2, 20, 4, 20, 25, 8, 6, 22, 22, 16, 9, 1, 19, 24, 18, 19, 5, 8, 24, 17, 11, 16, 4, 10, 1, 20, 2, 18, 8, 3, 2, 19, 22, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]\n", + "[5, 20, 19, 23, 2, 25, 18, 19, 13, 8, 20, 19, 11, 15, 18, 7, 19, 19, 1, 24, 1, 2, 10, 10, 3, 19, 18, 6, 13, 6, 5, 8, 19, 7, 7, 7, 2, 13, 8, 19, 24, 12, 24, 16, 25, 7, 5, 8, 5, 14, 23, 10, 16, 14, 10, 24, 23, 6, 23, 25, 4, 8, 4, 5, 24, 16, 24, 22, 24, 4, 7, 24, 3, 6, 2, 25, 24, 11, 11, 3, 22, 2, 16, 11, 2, 15, 23, 10, 4, 12, 7, 5, 21, 6, 4, 16, 22, 9, 12, 9, 2, 14, 14, 12, 4, 18, 12, 5, 14, 8, 16, 25, 15, 19, 16, 22, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15]\n", + "[24, 18, 16, 5, 17, 4, 8, 17, 1, 1, 14, 17, 16, 4, 4, 21, 8, 5, 16, 12, 7, 21, 16, 18, 10, 12, 15, 10, 1, 10, 9, 23, 6, 9, 1, 25, 20, 25, 2, 9, 24, 21, 18, 24, 10, 9, 14, 2, 1, 25, 19, 6, 4, 14, 16, 17, 13, 6, 22, 4, 17, 19, 25, 9, 25, 18, 3, 13, 18, 13, 7, 23, 3, 19, 18, 9, 13, 14, 7, 11, 20, 20, 20, 2, 1, 5, 6, 23, 3, 13, 15, 16, 14, 16, 4, 2, 3, 15, 20, 17, 19, 5, 8, 23, 23, 9, 22, 1, 24, 5, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[24, 12, 20, 3, 10, 23, 3, 20, 7, 6, 11, 20, 9, 8, 18, 1, 8, 7, 19, 7, 4, 19, 24, 13, 23, 3, 24, 16, 1, 24, 2, 6, 6, 16, 12, 22, 19, 9, 25, 3, 14, 17, 9, 14, 5, 13, 8, 16, 11, 17, 6, 8, 8, 13, 8, 12, 4, 2, 6, 9, 6, 1, 4, 15, 16, 10, 3, 11, 21, 12, 3, 23, 11, 10, 2, 1, 14, 11, 17, 3, 23, 14, 22, 12, 19, 14, 1, 25, 8, 14, 14, 12, 15, 20, 20, 19, 16, 1, 12, 13, 15, 18, 23, 1, 23, 4, 25, 14, 9, 11, 1, 22, 17, 4, 4, 20, 5, 3, 11, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[12, 9, 20, 17, 7, 9, 18, 18, 20, 18, 18, 13, 3, 17, 12, 10, 4, 16, 21, 24, 19, 8, 22, 21, 12, 8, 5, 14, 3, 5, 8, 6, 17, 9, 21, 17, 11, 20, 13, 1, 6, 10, 18, 10, 24, 6, 12, 24, 24, 23, 11, 14, 10, 7, 3, 3, 3, 3, 22, 5, 9, 2, 7, 19, 15, 11, 16, 21, 15, 1, 14, 1, 17, 21, 21, 14, 18, 5, 12, 16, 24, 18, 6, 25, 1, 23, 5, 11, 5, 14, 10, 10, 4, 4, 10, 1, 17, 10, 2, 20, 15, 16, 7, 2, 7, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]\n", + "[24, 23, 9, 19, 8, 9, 24, 4, 19, 10, 2, 5, 15, 7, 13, 3, 19, 8, 8, 13, 15, 17, 5, 2, 11, 16, 24, 19, 3, 11, 1, 15, 2, 1, 20, 20, 10, 19, 19, 8, 14, 19, 16, 21, 14, 1, 25, 1, 10, 1, 5, 1, 16, 22, 7, 25, 25, 14, 18, 22, 12, 15, 3, 11, 12, 21, 9, 19, 19, 18, 4, 2, 11, 23, 20, 2, 19, 2, 20, 22, 6, 19, 6, 25, 4, 20, 21, 25, 23, 8, 18, 2, 18, 19, 16, 10, 18, 18, 15, 24, 20, 23, 9, 23, 17, 2, 7, 25, 10, 9, 7, 4, 11, 13, 2, 2, 17, 3, 10, 14, 14, 24, 16, 14, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]\n", + "[16, 23, 12, 8, 10, 6, 24, 22, 2, 8, 21, 7, 9, 4, 10, 2, 23, 19, 22, 15, 13, 17, 7, 17, 2, 14, 3, 21, 5, 14, 9, 19, 25, 4, 11, 11, 22, 16, 13, 18, 5, 3, 7, 17, 20, 21, 2, 2, 21, 2, 6, 14, 18, 11, 2, 3, 21, 10, 6, 5, 9, 24, 4, 17, 14, 12, 25, 24, 23, 12, 8, 19, 1, 19, 11, 9, 4, 15, 8, 24, 9, 17, 24, 2, 6, 14, 24, 8, 2, 4, 6, 17, 25, 14, 5, 7, 23, 21, 17, 2, 23, 15, 5, 8, 4, 25, 17, 18, 10, 10, 19, 10, 9, 5, 3, 19, 21, 8, 5, 19, 2, 12, 16, 11, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]\n", + "[11, 1, 9, 9, 4, 18, 10, 15, 13, 6, 2, 7, 11, 7, 25, 16, 13, 23, 13, 20, 23, 23, 20, 15, 7, 20, 19, 12, 9, 5, 13, 14, 7, 4, 6, 10, 24, 16, 9, 24, 18, 17, 21, 12, 6, 5, 8, 21, 10, 14, 7, 5, 8, 1, 11, 16, 24, 22, 9, 1, 8, 1, 24, 14, 16, 5, 2, 24, 8, 9, 18, 21, 12, 22, 19, 8, 13, 9, 16, 24, 13, 6, 22, 23, 18, 21, 9, 10, 18, 17, 2, 1, 4, 10, 17, 24, 3, 1, 11, 19, 16, 22, 8, 20, 1, 20, 17, 4, 24, 25, 13, 5, 8, 9, 1, 7, 2, 4, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]\n", + "[15, 5, 3, 10, 12, 11, 9, 1, 11, 24, 25, 15, 10, 13, 9, 13, 13, 24, 24, 11, 7, 11, 20, 14, 7, 13, 5, 16, 15, 11, 2, 12, 6, 10, 1, 1, 7, 2, 16, 14, 23, 2, 24, 22, 17, 4, 19, 4, 23, 7, 23, 20, 8, 22, 14, 18, 7, 22, 25, 4, 8, 6, 18, 12, 19, 10, 1, 22, 15, 24, 7, 17, 15, 16, 21, 11, 1, 15, 17, 9, 22, 15, 8, 9, 3, 15, 18, 15, 21, 8, 1, 11, 13, 6, 4, 16, 5, 23, 20, 1, 17, 10, 24, 22, 10, 13, 16, 13, 7, 4, 9, 13, 14, 18, 21, 16, 21, 23, 1, 14, 9, 11, 21, 7, 16, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n", + "[8, 13, 9, 7, 13, 11, 11, 8, 6, 25, 22, 3, 5, 21, 25, 10, 9, 5, 14, 21, 24, 24, 25, 14, 3, 2, 11, 10, 18, 1, 21, 13, 22, 10, 9, 13, 9, 1, 11, 3, 11, 18, 3, 20, 12, 8, 5, 23, 21, 21, 8, 20, 24, 22, 10, 12, 2, 10, 4, 1, 8, 11, 19, 22, 20, 7, 23, 7, 18, 12, 24, 25, 2, 21, 22, 24, 3, 22, 23, 9, 2, 24, 23, 10, 14, 12, 19, 23, 24, 21, 20, 13, 10, 5, 12, 21, 3, 1, 5, 17, 4, 23, 18, 25, 9, 11, 24, 2, 11, 3, 6, 9, 1, 23, 20, 24, 18, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n", + "[1, 13, 2, 21, 1, 12, 10, 2, 14, 21, 25, 5, 8, 6, 25, 9, 6, 6, 22, 5, 5, 3, 7, 23, 18, 6, 1, 17, 4, 9, 2, 18, 6, 6, 5, 10, 22, 2, 13, 6, 18, 5, 20, 1, 12, 20, 9, 11, 15, 1, 22, 22, 10, 5, 6, 17, 23, 2, 11, 8, 14, 1, 17, 18, 2, 24, 8, 10, 12, 15, 3, 10, 6, 22, 1, 15, 17, 17, 17, 20, 7, 15, 12, 16, 12, 2, 25, 13, 1, 23, 6, 16, 4, 6, 15, 25, 24, 19, 17, 17, 25, 24, 16, 13, 13, 22, 6, 17, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[9, 12, 6, 1, 24, 22, 15, 13, 10, 14, 20, 13, 14, 7, 15, 4, 14, 20, 4, 24, 19, 16, 4, 25, 18, 2, 19, 1, 19, 1, 21, 25, 19, 21, 9, 4, 18, 14, 19, 22, 8, 25, 18, 19, 11, 19, 5, 23, 17, 20, 18, 22, 10, 8, 19, 15, 15, 22, 1, 9, 3, 1, 12, 15, 18, 22, 25, 1, 8, 8, 7, 10, 11, 25, 23, 24, 8, 18, 7, 4, 14, 3, 3, 1, 14, 15, 14, 15, 1, 13, 6, 2, 13, 16, 18, 22, 14, 17, 14, 7, 23, 19, 3, 15, 5, 10, 11, 3, 20, 15, 23, 18, 2, 21, 11, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21]\n", + "[22, 15, 12, 11, 16, 20, 7, 19, 19, 13, 3, 15, 25, 18, 22, 23, 25, 16, 13, 20, 13, 13, 8, 15, 3, 17, 10, 2, 8, 8, 14, 24, 14, 9, 25, 13, 8, 21, 15, 18, 1, 17, 21, 24, 14, 25, 8, 3, 24, 2, 2, 24, 24, 9, 10, 23, 5, 21, 17, 8, 7, 6, 14, 4, 10, 13, 4, 12, 12, 2, 18, 4, 2, 1, 3, 15, 5, 6, 21, 1, 11, 15, 23, 17, 25, 24, 20, 22, 6, 14, 9, 21, 19, 17, 12, 9, 11, 8, 6, 9, 22, 15, 1, 5, 2, 4, 22, 22, 22, 18, 4, 7, 7, 10, 16, 13, 8, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16]\n", + "[1, 6, 11, 13, 1, 18, 9, 15, 20, 8, 18, 12, 4, 17, 4, 17, 7, 8, 6, 14, 10, 18, 20, 20, 18, 16, 11, 18, 19, 11, 2, 25, 24, 19, 4, 19, 25, 25, 3, 18, 16, 22, 19, 11, 12, 16, 14, 13, 24, 3, 21, 11, 7, 6, 20, 9, 14, 19, 8, 22, 5, 17, 6, 12, 21, 8, 2, 14, 6, 4, 22, 2, 6, 9, 3, 22, 4, 1, 3, 3, 5, 7, 24, 20, 23, 12, 14, 9, 1, 11, 7, 4, 15, 5, 22, 20, 25, 13, 14, 22, 1, 20, 13, 4, 14, 18, 14, 20, 22, 11, 4, 21, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24]\n", + "[2, 23, 6, 10, 19, 9, 14, 7, 14, 12, 20, 2, 14, 22, 8, 7, 19, 24, 1, 5, 12, 17, 25, 8, 9, 19, 16, 12, 17, 14, 16, 6, 23, 17, 15, 6, 3, 19, 4, 22, 16, 11, 12, 14, 19, 4, 14, 11, 9, 19, 20, 4, 1, 7, 7, 4, 3, 23, 13, 18, 2, 5, 20, 20, 9, 2, 11, 1, 16, 9, 23, 23, 4, 18, 20, 2, 5, 16, 15, 8, 6, 14, 8, 5, 11, 15, 6, 21, 22, 4, 17, 23, 4, 21, 11, 25, 22, 9, 8, 25, 16, 9, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]\n", + "[2, 7, 17, 7, 17, 20, 21, 2, 1, 8, 3, 9, 22, 2, 22, 2, 2, 9, 3, 1, 3, 10, 10, 22, 1, 4, 4, 5, 6, 18, 4, 10, 2, 6, 2, 3, 23, 17, 15, 6, 10, 18, 10, 4, 6, 4, 1, 23, 5, 21, 12, 13, 7, 15, 20, 19, 10, 12, 16, 9, 25, 1, 24, 19, 1, 1, 1, 15, 25, 6, 11, 21, 22, 6, 12, 15, 14, 15, 4, 1, 18, 13, 20, 13, 8, 6, 25, 20, 12, 2, 10, 15, 20, 9, 14, 5, 1, 9, 12, 4, 14, 6, 3, 18, 16, 24, 1, 2, 3, 13, 14, 23, 22, 12, 19, 6, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[17, 19, 6, 16, 13, 3, 3, 18, 24, 8, 4, 22, 23, 18, 15, 8, 18, 2, 7, 10, 19, 22, 16, 19, 22, 9, 7, 2, 6, 17, 13, 10, 1, 4, 14, 18, 5, 13, 22, 6, 21, 18, 13, 2, 5, 22, 9, 1, 2, 10, 12, 14, 3, 2, 22, 24, 25, 21, 15, 21, 13, 8, 17, 14, 16, 1, 24, 6, 19, 20, 25, 7, 15, 16, 9, 5, 4, 20, 2, 13, 5, 11, 5, 18, 5, 19, 8, 6, 24, 2, 25, 13, 14, 6, 6, 17, 23, 20, 5, 1, 10, 7, 1, 22, 1, 5, 14, 21, 2, 18, 1, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21]\n", + "[24, 13, 16, 12, 2, 2, 13, 25, 11, 20, 22, 5, 5, 21, 22, 14, 13, 14, 15, 4, 17, 6, 4, 9, 9, 13, 2, 3, 12, 4, 18, 20, 8, 11, 23, 17, 12, 7, 7, 22, 25, 19, 5, 25, 11, 21, 25, 23, 25, 12, 9, 17, 7, 12, 21, 11, 2, 11, 22, 16, 19, 6, 19, 23, 11, 7, 5, 1, 21, 7, 10, 4, 8, 11, 14, 9, 17, 5, 21, 16, 16, 7, 19, 19, 24, 6, 8, 5, 8, 15, 12, 10, 17, 17, 19, 14, 23, 4, 6, 21, 6, 16, 8, 13, 21, 24, 18, 21, 24, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21]\n", + "[7, 16, 24, 16, 21, 19, 11, 25, 16, 23, 4, 21, 12, 12, 21, 10, 16, 13, 1, 6, 16, 6, 25, 4, 2, 21, 11, 17, 17, 18, 2, 22, 15, 9, 14, 19, 19, 9, 15, 5, 17, 16, 10, 3, 21, 23, 19, 6, 10, 20, 13, 2, 7, 21, 10, 19, 21, 20, 25, 22, 18, 12, 14, 10, 4, 3, 25, 20, 4, 18, 1, 1, 14, 21, 15, 5, 10, 13, 16, 21, 16, 25, 12, 16, 25, 24, 14, 2, 18, 22, 22, 13, 17, 1, 18, 12, 23, 16, 24, 16, 21, 21, 2, 7, 18, 23, 19, 20, 17, 13, 25, 14, 2, 10, 3, 19, 11, 17, 12, 2, 24, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20]\n", + "[5, 14, 5, 2, 10, 9, 19, 12, 12, 24, 4, 1, 8, 18, 25, 23, 16, 22, 22, 3, 24, 19, 14, 1, 15, 17, 21, 15, 21, 15, 2, 19, 9, 18, 10, 1, 1, 20, 22, 7, 9, 4, 19, 21, 4, 6, 1, 18, 2, 17, 13, 15, 21, 6, 17, 1, 5, 6, 23, 11, 10, 24, 11, 13, 18, 12, 22, 4, 4, 15, 7, 17, 8, 22, 16, 1, 23, 2, 9, 24, 8, 24, 23, 24, 5, 7, 21, 24, 12, 23, 22, 15, 19, 8, 12, 8, 5, 6, 21, 10, 14, 10, 4, 23, 20, 8, 19, 9, 25, 22, 7, 8, 13, 2, 21, 7, 16, 11, 20, 21, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]\n", + "[8, 7, 14, 2, 13, 4, 10, 11, 22, 5, 24, 22, 12, 13, 23, 8, 9, 24, 25, 21, 6, 11, 8, 13, 19, 1, 25, 22, 4, 22, 9, 21, 19, 2, 9, 1, 15, 4, 17, 15, 23, 17, 17, 9, 14, 2, 8, 4, 17, 13, 23, 8, 9, 1, 12, 10, 19, 18, 9, 12, 24, 22, 7, 21, 2, 6, 2, 9, 3, 19, 15, 20, 2, 16, 5, 18, 18, 25, 4, 6, 5, 6, 2, 1, 25, 23, 17, 24, 18, 15, 17, 20, 16, 8, 18, 2, 10, 18, 1, 11, 25, 25, 12, 9, 12, 25, 21, 18, 18, 21, 22, 5, 2, 13, 19, 20, 5, 6, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20]\n", + "[7, 6, 9, 21, 4, 20, 18, 16, 21, 16, 13, 13, 16, 5, 13, 17, 5, 16, 23, 15, 12, 17, 3, 8, 16, 11, 7, 9, 16, 11, 12, 17, 5, 5, 19, 25, 1, 3, 15, 7, 3, 2, 4, 21, 15, 20, 4, 22, 11, 15, 16, 8, 14, 24, 17, 22, 3, 17, 14, 15, 20, 23, 3, 14, 15, 20, 18, 4, 17, 11, 12, 12, 24, 7, 2, 25, 2, 24, 7, 14, 8, 7, 16, 20, 4, 6, 11, 23, 8, 5, 12, 20, 13, 25, 1, 22, 11, 9, 4, 12, 17, 14, 17, 4, 7, 23, 20, 24, 14, 23, 11, 21, 5, 23, 25, 14, 12, 2, 25, 17, 22, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10]\n", + "[23, 16, 23, 16, 11, 11, 8, 19, 4, 19, 24, 9, 10, 9, 9, 11, 23, 9, 2, 9, 14, 3, 25, 17, 25, 1, 8, 19, 13, 18, 7, 23, 15, 8, 24, 22, 24, 4, 10, 4, 3, 15, 14, 17, 19, 5, 2, 25, 14, 25, 6, 20, 18, 23, 22, 16, 8, 18, 6, 20, 11, 22, 23, 20, 25, 18, 8, 17, 19, 19, 24, 25, 5, 11, 22, 16, 22, 11, 7, 22, 7, 16, 24, 7, 2, 18, 12, 12, 24, 1, 5, 4, 24, 10, 13, 3, 18, 2, 5, 17, 22, 22, 7, 1, 2, 1, 8, 11, 6, 7, 20, 8, 6, 17, 21, 3, 10, 10, 5, 24, 7, 12, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20]\n", + "[2, 6, 12, 15, 18, 15, 24, 4, 15, 20, 13, 15, 13, 12, 4, 15, 2, 25, 15, 22, 6, 23, 1, 12, 16, 14, 11, 24, 2, 5, 16, 19, 25, 1, 14, 14, 13, 10, 7, 4, 5, 21, 20, 23, 21, 15, 7, 2, 14, 25, 9, 14, 1, 12, 3, 2, 15, 8, 16, 7, 24, 16, 7, 13, 18, 18, 6, 10, 11, 14, 15, 25, 20, 25, 15, 5, 13, 3, 3, 17, 10, 11, 7, 4, 10, 4, 14, 1, 3, 9, 11, 4, 7, 18, 10, 13, 5, 24, 10, 18, 23, 14, 23, 14, 24, 10, 12, 24, 20, 21, 23, 7, 5, 23, 12, 24, 4, 8, 9, 6, 6, 25, 4, 23, 3, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14]\n", + "[13, 17, 20, 21, 6, 1, 25, 13, 5, 21, 5, 13, 6, 14, 20, 23, 2, 5, 13, 20, 10, 16, 11, 10, 12, 23, 17, 3, 10, 15, 18, 8, 4, 16, 14, 16, 5, 21, 16, 20, 2, 12, 19, 2, 8, 20, 9, 24, 10, 21, 11, 1, 13, 22, 2, 8, 15, 6, 12, 15, 5, 10, 12, 19, 5, 23, 15, 8, 6, 17, 7, 7, 18, 25, 9, 18, 6, 7, 15, 23, 13, 12, 13, 8, 2, 3, 16, 5, 11, 12, 5, 22, 19, 13, 2, 22, 19, 16, 9, 12, 20, 14, 12, 19, 16, 18, 20, 21, 8, 1, 10, 23, 20, 13, 16, 19, 11, 10, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15]\n", + "[10, 25, 7, 2, 24, 9, 7, 4, 13, 18, 3, 16, 6, 11, 17, 20, 10, 8, 23, 18, 3, 5, 1, 21, 16, 9, 13, 15, 7, 9, 14, 19, 25, 21, 7, 11, 20, 22, 7, 22, 1, 9, 22, 10, 15, 18, 19, 18, 1, 16, 24, 3, 10, 4, 7, 5, 11, 22, 15, 8, 2, 23, 2, 17, 20, 16, 11, 7, 11, 6, 10, 11, 3, 14, 8, 3, 23, 19, 24, 12, 7, 5, 14, 18, 17, 4, 6, 25, 18, 23, 10, 11, 10, 11, 3, 7, 10, 17, 24, 16, 8, 12, 17, 23, 19, 6, 18, 21, 13, 19, 8, 4, 13, 21, 4, 19, 22, 21, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16]\n", + "[8, 13, 3, 25, 3, 7, 1, 25, 20, 21, 16, 11, 15, 7, 13, 10, 10, 14, 19, 18, 10, 14, 1, 5, 18, 2, 11, 15, 5, 15, 14, 6, 1, 14, 9, 9, 18, 22, 8, 2, 4, 18, 15, 18, 14, 11, 16, 17, 15, 21, 9, 1, 8, 15, 20, 14, 16, 7, 12, 8, 7, 3, 16, 8, 13, 10, 20, 24, 6, 25, 16, 25, 23, 22, 16, 23, 21, 25, 21, 20, 4, 18, 7, 5, 3, 19, 25, 19, 20, 1, 6, 16, 10, 22, 6, 3, 5, 21, 12, 9, 17, 23, 4, 19, 1, 7, 22, 13, 22, 5, 13, 8, 11, 6, 3, 8, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[3, 10, 2, 5, 6, 13, 9, 8, 9, 16, 3, 18, 10, 13, 11, 15, 1, 17, 24, 10, 17, 24, 3, 3, 20, 8, 1, 23, 23, 10, 14, 14, 16, 8, 8, 8, 4, 21, 12, 18, 20, 16, 15, 13, 18, 25, 8, 6, 6, 21, 13, 11, 13, 20, 2, 24, 19, 8, 11, 10, 1, 7, 20, 14, 23, 3, 24, 17, 12, 6, 24, 24, 3, 25, 9, 1, 2, 14, 18, 15, 15, 13, 5, 9, 22, 10, 17, 12, 20, 20, 10, 9, 15, 11, 22, 1, 4, 18, 6, 24, 18, 14, 14, 22, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11]\n", + "[19, 10, 15, 5, 9, 23, 15, 6, 10, 24, 5, 4, 21, 24, 9, 8, 12, 11, 18, 1, 19, 6, 24, 5, 9, 9, 24, 8, 14, 4, 12, 22, 11, 16, 22, 25, 3, 13, 23, 4, 20, 11, 15, 18, 23, 11, 17, 5, 1, 1, 5, 23, 19, 14, 10, 7, 9, 10, 14, 5, 18, 3, 9, 5, 2, 24, 7, 1, 9, 6, 4, 23, 4, 1, 17, 20, 2, 15, 14, 7, 16, 16, 12, 8, 8, 2, 1, 6, 4, 15, 4, 16, 10, 20, 17, 11, 14, 13, 16, 9, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22]\n", + "[9, 9, 4, 11, 15, 17, 24, 9, 10, 21, 4, 17, 14, 3, 18, 17, 6, 19, 11, 22, 9, 19, 23, 1, 19, 18, 22, 10, 14, 8, 19, 7, 3, 22, 25, 19, 17, 16, 7, 5, 4, 22, 21, 23, 16, 9, 12, 16, 15, 3, 5, 8, 22, 21, 3, 23, 25, 1, 19, 13, 11, 7, 3, 24, 9, 19, 16, 20, 6, 4, 14, 6, 7, 2, 2, 12, 4, 20, 18, 3, 16, 20, 23, 4, 22, 17, 5, 7, 11, 3, 23, 24, 8, 1, 19, 10, 23, 17, 15, 16, 7, 1, 25, 21, 15, 19, 2, 18, 25, 14, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]\n", + "[14, 14, 5, 22, 8, 19, 1, 24, 19, 20, 21, 7, 4, 6, 9, 24, 21, 2, 23, 21, 25, 11, 8, 5, 4, 15, 23, 14, 17, 9, 7, 3, 17, 18, 7, 3, 13, 24, 3, 18, 13, 12, 14, 19, 8, 16, 25, 25, 6, 5, 21, 16, 4, 15, 5, 16, 20, 3, 11, 15, 11, 4, 3, 21, 20, 23, 8, 11, 12, 10, 12, 8, 17, 24, 12, 23, 19, 10, 5, 14, 25, 22, 5, 5, 12, 17, 17, 24, 15, 15, 1, 17, 19, 25, 7, 16, 22, 4, 21, 15, 5, 7, 17, 21, 16, 9, 14, 20, 15, 8, 22, 6, 23, 24, 18, 23, 24, 13, 10, 6, 20, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19]\n", + "[17, 11, 19, 20, 8, 20, 1, 3, 6, 22, 4, 3, 2, 11, 4, 8, 5, 20, 20, 21, 8, 15, 6, 24, 14, 14, 10, 3, 3, 14, 22, 21, 20, 10, 19, 4, 9, 19, 5, 5, 4, 24, 9, 7, 1, 11, 15, 18, 10, 17, 19, 2, 20, 21, 9, 18, 7, 8, 14, 13, 4, 1, 5, 17, 5, 7, 18, 11, 22, 24, 5, 21, 9, 8, 22, 12, 3, 16, 11, 8, 17, 7, 4, 1, 15, 7, 21, 19, 8, 2, 23, 8, 6, 6, 5, 7, 21, 7, 9, 2, 15, 25, 18, 18, 15, 25, 3, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]\n", + "[12, 1, 23, 16, 6, 2, 3, 11, 25, 1, 23, 22, 25, 2, 5, 10, 11, 9, 8, 8, 23, 5, 7, 8, 18, 17, 9, 13, 24, 3, 6, 6, 8, 11, 11, 20, 15, 13, 22, 25, 13, 15, 8, 5, 11, 25, 20, 17, 17, 25, 7, 15, 1, 18, 4, 4, 13, 19, 5, 17, 2, 18, 17, 13, 23, 12, 15, 8, 17, 2, 22, 4, 7, 21, 6, 17, 10, 4, 7, 3, 8, 19, 24, 12, 17, 25, 10, 4, 24, 17, 5, 19, 6, 24, 11, 3, 10, 11, 15, 11, 13, 1, 11, 23, 8, 20, 3, 18, 15, 14, 25, 22, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]\n", + "[16, 3, 9, 22, 4, 1, 20, 23, 19, 6, 18, 13, 20, 23, 16, 5, 3, 6, 1, 2, 5, 22, 2, 18, 7, 16, 14, 2, 4, 12, 15, 19, 11, 16, 11, 4, 2, 5, 8, 1, 4, 16, 19, 13, 19, 21, 18, 5, 6, 21, 10, 1, 16, 15, 24, 5, 21, 19, 25, 14, 20, 14, 22, 4, 19, 22, 18, 10, 3, 12, 11, 4, 23, 18, 24, 13, 4, 9, 2, 2, 15, 14, 24, 17, 20, 4, 18, 13, 4, 17, 24, 8, 18, 8, 14, 16, 4, 7, 5, 23, 11, 18, 24, 7, 15, 9, 3, 16, 20, 3, 14, 23, 8, 17, 10, 2, 1, 16, 12, 6, 20, 25, 18, 1, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[2, 14, 10, 16, 4, 10, 23, 7, 18, 20, 15, 8, 19, 21, 14, 22, 24, 13, 19, 6, 3, 24, 19, 12, 24, 9, 8, 15, 18, 17, 24, 9, 9, 24, 10, 5, 1, 24, 4, 12, 3, 4, 3, 16, 24, 5, 15, 11, 3, 11, 6, 9, 2, 8, 20, 15, 21, 16, 19, 9, 22, 7, 17, 20, 15, 25, 22, 8, 16, 4, 22, 1, 7, 20, 12, 6, 9, 17, 24, 2, 14, 23, 12, 9, 4, 3, 7, 23, 18, 5, 7, 13, 14, 13, 23, 15, 8, 12, 3, 3, 9, 15, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]\n", + "[5, 9, 23, 3, 6, 20, 1, 1, 23, 12, 4, 1, 10, 23, 12, 15, 9, 4, 5, 18, 7, 13, 1, 14, 17, 13, 1, 3, 14, 15, 11, 8, 15, 6, 21, 10, 25, 20, 14, 8, 24, 10, 16, 15, 4, 3, 3, 23, 9, 21, 25, 17, 18, 4, 14, 22, 13, 22, 22, 15, 12, 19, 13, 9, 15, 4, 7, 19, 18, 16, 17, 21, 20, 12, 11, 13, 15, 21, 15, 24, 23, 19, 9, 2, 9, 7, 24, 6, 7, 12, 19, 15, 14, 18, 23, 23, 10, 22, 15, 16, 14, 3, 5, 20, 18, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11]\n", + "[7, 21, 3, 25, 2, 10, 16, 21, 14, 23, 3, 9, 2, 25, 15, 15, 6, 2, 10, 24, 7, 12, 9, 5, 19, 12, 9, 4, 6, 3, 25, 19, 25, 4, 24, 21, 2, 20, 5, 6, 1, 17, 21, 11, 7, 21, 19, 2, 18, 9, 20, 8, 23, 4, 25, 5, 10, 17, 18, 13, 20, 17, 17, 17, 9, 15, 1, 1, 25, 5, 22, 17, 18, 13, 18, 13, 10, 7, 20, 16, 18, 7, 2, 20, 14, 10, 10, 12, 11, 21, 7, 16, 8, 18, 17, 6, 1, 11, 11, 4, 20, 15, 10, 12, 19, 8, 1, 5, 2, 18, 18, 1, 14, 5, 22, 13, 15, 14, 19, 11, 25, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13]\n", + "[18, 16, 6, 10, 20, 13, 12, 12, 14, 17, 1, 2, 6, 4, 22, 16, 22, 19, 1, 12, 7, 2, 21, 21, 3, 25, 25, 10, 2, 12, 5, 9, 25, 6, 12, 17, 18, 4, 4, 3, 23, 2, 25, 21, 23, 1, 10, 7, 9, 6, 18, 18, 25, 8, 20, 3, 20, 16, 9, 5, 23, 25, 15, 10, 22, 2, 18, 9, 13, 13, 14, 5, 3, 6, 17, 3, 10, 7, 7, 9, 7, 5, 19, 18, 20, 15, 24, 22, 23, 25, 8, 17, 24, 14, 2, 25, 10, 6, 24, 25, 18, 10, 22, 17, 10, 25, 8, 20, 15, 17, 6, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]\n", + "[20, 24, 18, 18, 12, 6, 9, 5, 1, 19, 11, 14, 17, 16, 8, 19, 9, 17, 19, 8, 16, 25, 10, 8, 10, 18, 7, 20, 8, 20, 13, 11, 14, 11, 19, 23, 23, 14, 17, 9, 10, 24, 8, 16, 23, 24, 19, 19, 21, 11, 18, 14, 25, 15, 6, 11, 5, 14, 18, 4, 19, 15, 14, 10, 21, 8, 22, 14, 7, 19, 24, 23, 4, 4, 12, 18, 25, 17, 9, 11, 21, 14, 4, 2, 25, 24, 18, 6, 3, 21, 20, 8, 11, 4, 8, 25, 6, 15, 24, 17, 5, 21, 6, 2, 13, 16, 5, 24, 25, 16, 12, 23, 2, 18, 20, 13, 14, 11, 9, 25, 4, 19, 8, 11, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24]\n", + "[23, 4, 2, 5, 12, 3, 3, 2, 16, 23, 23, 12, 23, 18, 25, 20, 16, 7, 7, 5, 9, 6, 9, 17, 2, 23, 14, 15, 6, 13, 12, 20, 2, 2, 14, 24, 10, 15, 14, 22, 4, 15, 24, 14, 10, 15, 17, 9, 6, 6, 18, 5, 3, 7, 7, 2, 15, 8, 11, 11, 12, 6, 22, 13, 23, 25, 17, 3, 10, 11, 13, 13, 9, 5, 15, 16, 7, 15, 18, 24, 7, 18, 18, 24, 14, 18, 13, 25, 9, 20, 16, 24, 22, 1, 19, 23, 9, 18, 8, 23, 21, 17, 19, 7, 3, 2, 21, 1, 11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]\n", + "[10, 14, 6, 17, 1, 6, 21, 13, 3, 21, 12, 10, 22, 15, 24, 24, 5, 5, 6, 4, 14, 11, 13, 21, 21, 7, 3, 4, 25, 13, 12, 24, 3, 17, 11, 9, 9, 16, 17, 7, 6, 12, 8, 23, 23, 24, 21, 18, 6, 14, 13, 1, 2, 3, 15, 25, 2, 24, 21, 8, 18, 22, 15, 14, 3, 13, 21, 20, 8, 10, 14, 7, 19, 21, 12, 6, 21, 24, 22, 21, 3, 5, 12, 1, 13, 20, 23, 11, 12, 5, 3, 4, 2, 18, 20, 22, 17, 8, 7, 7, 11, 22, 10, 5, 16, 8, 17, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[12, 25, 21, 13, 17, 12, 11, 5, 12, 6, 23, 5, 23, 23, 7, 5, 4, 14, 20, 7, 19, 25, 19, 5, 18, 23, 24, 18, 23, 18, 3, 16, 13, 5, 22, 14, 8, 8, 18, 13, 18, 17, 10, 5, 10, 12, 9, 10, 4, 6, 1, 13, 24, 16, 3, 25, 20, 24, 23, 17, 2, 17, 12, 3, 10, 9, 19, 10, 2, 12, 9, 7, 22, 21, 19, 12, 9, 25, 11, 8, 20, 13, 13, 9, 25, 2, 25, 10, 14, 20, 21, 19, 9, 11, 23, 18, 20, 5, 1, 24, 5, 17, 18, 6, 3, 17, 18, 24, 22, 11, 25, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15]\n", + "[11, 2, 16, 16, 22, 10, 1, 6, 5, 22, 19, 18, 11, 4, 24, 8, 4, 5, 21, 12, 3, 8, 11, 6, 3, 21, 18, 8, 8, 14, 23, 17, 24, 15, 8, 18, 9, 2, 8, 23, 10, 8, 6, 16, 9, 22, 12, 13, 10, 20, 4, 10, 13, 6, 14, 21, 23, 8, 21, 11, 9, 11, 14, 18, 6, 4, 24, 13, 14, 14, 16, 7, 23, 1, 9, 8, 17, 4, 7, 19, 18, 4, 16, 1, 7, 12, 2, 14, 19, 21, 3, 10, 6, 17, 4, 5, 16, 19, 20, 3, 3, 5, 21, 19, 22, 12, 18, 25, 22, 25, 23, 19, 17, 5, 6, 18, 18, 12, 3, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11]\n", + "[19, 8, 23, 17, 20, 10, 24, 4, 22, 12, 24, 2, 24, 13, 4, 4, 1, 9, 13, 13, 1, 23, 19, 1, 11, 16, 18, 22, 21, 9, 5, 5, 15, 6, 7, 25, 11, 22, 5, 20, 23, 21, 24, 24, 18, 22, 20, 8, 4, 17, 8, 1, 12, 9, 19, 4, 16, 4, 2, 20, 4, 6, 18, 17, 23, 13, 6, 24, 5, 25, 11, 2, 21, 21, 21, 19, 9, 22, 5, 9, 23, 21, 22, 12, 4, 5, 6, 16, 4, 24, 1, 9, 13, 15, 18, 3, 15, 22, 13, 4, 25, 15, 22, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18]\n", + "[23, 23, 4, 17, 3, 11, 16, 19, 16, 11, 1, 8, 22, 19, 6, 23, 19, 8, 22, 16, 16, 7, 18, 3, 3, 14, 9, 12, 22, 15, 21, 9, 2, 6, 20, 23, 8, 20, 18, 24, 11, 8, 2, 8, 18, 2, 21, 21, 19, 2, 14, 6, 3, 12, 10, 25, 14, 8, 25, 14, 2, 24, 18, 25, 3, 11, 7, 21, 10, 10, 25, 19, 12, 17, 14, 5, 15, 16, 25, 18, 18, 22, 24, 4, 24, 7, 14, 4, 3, 22, 12, 25, 6, 20, 14, 25, 7, 7, 3, 11, 17, 21, 22, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17]\n", + "[17, 18, 24, 11, 18, 23, 14, 15, 9, 9, 2, 10, 15, 17, 22, 4, 5, 10, 24, 11, 14, 20, 4, 3, 13, 8, 16, 14, 14, 24, 13, 12, 10, 17, 23, 10, 7, 3, 2, 24, 19, 23, 10, 25, 12, 4, 22, 10, 2, 11, 25, 23, 6, 12, 5, 8, 17, 21, 4, 9, 4, 24, 24, 15, 4, 20, 5, 23, 10, 18, 2, 11, 25, 6, 15, 22, 2, 18, 18, 17, 6, 6, 18, 9, 1, 10, 2, 16, 14, 3, 6, 5, 1, 2, 12, 22, 13, 12, 17, 25, 24, 12, 18, 22, 17, 16, 10, 10, 4, 9, 22, 4, 15, 13, 4, 2, 25, 1, 5, 1, 16, 17, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]\n", + "[25, 19, 4, 24, 16, 11, 20, 14, 15, 6, 20, 24, 24, 2, 19, 20, 24, 13, 5, 12, 19, 10, 25, 10, 4, 1, 14, 24, 17, 2, 6, 24, 1, 3, 3, 4, 16, 24, 7, 18, 23, 5, 7, 6, 16, 8, 17, 6, 9, 20, 14, 19, 13, 15, 2, 17, 22, 8, 18, 22, 19, 4, 6, 6, 16, 1, 15, 12, 22, 24, 4, 19, 1, 17, 24, 23, 7, 6, 19, 1, 20, 12, 8, 1, 22, 2, 1, 14, 5, 4, 19, 23, 16, 20, 11, 2, 14, 22, 20, 22, 3, 14, 17, 25, 23, 8, 2, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12]\n", + "[16, 10, 22, 5, 23, 17, 5, 18, 24, 12, 15, 24, 18, 6, 21, 7, 13, 21, 17, 20, 16, 7, 5, 2, 22, 9, 13, 10, 10, 4, 13, 20, 2, 16, 2, 7, 10, 10, 24, 1, 20, 23, 12, 23, 1, 5, 24, 2, 23, 2, 8, 12, 16, 1, 4, 20, 20, 5, 19, 14, 22, 2, 18, 6, 21, 25, 15, 8, 15, 20, 18, 4, 22, 14, 7, 12, 13, 21, 8, 14, 3, 15, 5, 15, 9, 10, 2, 4, 22, 11, 7, 5, 19, 7, 19, 5, 19, 21, 3, 18, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]\n", + "[6, 11, 1, 1, 23, 22, 10, 21, 18, 14, 2, 24, 20, 16, 21, 25, 14, 16, 9, 8, 2, 10, 23, 23, 15, 13, 10, 15, 11, 18, 4, 19, 16, 24, 6, 2, 5, 14, 6, 9, 1, 11, 10, 16, 14, 15, 2, 22, 3, 24, 5, 6, 25, 2, 10, 8, 9, 20, 13, 1, 11, 2, 6, 7, 1, 16, 22, 3, 1, 13, 12, 21, 25, 2, 1, 6, 2, 13, 9, 18, 4, 13, 14, 25, 18, 4, 24, 8, 5, 4, 18, 13, 23, 15, 3, 13, 1, 18, 13, 13, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19]\n", + "[11, 18, 19, 2, 15, 7, 18, 24, 9, 8, 11, 24, 19, 18, 5, 1, 10, 10, 13, 17, 4, 24, 11, 13, 24, 2, 1, 13, 19, 10, 10, 17, 8, 23, 21, 5, 22, 8, 20, 18, 17, 24, 15, 13, 20, 20, 7, 19, 7, 18, 14, 2, 19, 20, 21, 14, 7, 21, 17, 17, 25, 25, 22, 13, 18, 15, 12, 3, 24, 25, 8, 17, 5, 7, 14, 10, 2, 18, 10, 19, 9, 16, 24, 14, 3, 16, 19, 1, 2, 24, 13, 16, 24, 20, 4, 9, 17, 2, 13, 9, 4, 14, 20, 4, 17, 1, 9, 23, 24, 17, 23, 12, 18, 8, 24, 11, 12, 16, 6, 2, 14, 3, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]\n", + "[10, 7, 6, 15, 19, 9, 15, 4, 24, 12, 4, 8, 14, 15, 15, 5, 12, 2, 8, 19, 7, 14, 20, 4, 18, 19, 11, 10, 17, 8, 22, 21, 22, 16, 18, 3, 7, 19, 3, 20, 1, 11, 8, 3, 1, 14, 20, 3, 21, 23, 3, 13, 2, 14, 9, 11, 15, 17, 12, 22, 13, 24, 13, 4, 11, 23, 1, 16, 15, 6, 7, 12, 5, 25, 25, 18, 11, 18, 21, 11, 6, 17, 4, 18, 6, 11, 4, 10, 17, 5, 3, 17, 10, 12, 5, 22, 20, 11, 11, 11, 10, 16, 8, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5]\n", + "[13, 23, 16, 9, 5, 6, 16, 19, 5, 17, 20, 24, 22, 9, 22, 7, 2, 11, 2, 19, 1, 22, 15, 18, 22, 25, 7, 17, 10, 24, 12, 2, 4, 15, 22, 14, 9, 18, 10, 24, 9, 9, 13, 6, 15, 22, 8, 3, 25, 8, 22, 13, 4, 23, 6, 10, 12, 14, 19, 20, 3, 23, 17, 2, 13, 9, 17, 1, 2, 5, 3, 21, 22, 14, 17, 16, 3, 20, 2, 10, 2, 17, 22, 18, 9, 22, 6, 8, 7, 9, 1, 9, 10, 6, 17, 4, 15, 4, 16, 19, 2, 4, 25, 3, 4, 9, 3, 24, 11, 15, 18, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9]\n", + "[13, 4, 16, 21, 22, 12, 19, 13, 4, 12, 20, 15, 19, 3, 4, 3, 13, 6, 8, 16, 22, 19, 24, 2, 6, 4, 2, 10, 2, 16, 17, 2, 12, 13, 6, 11, 20, 7, 1, 25, 13, 25, 21, 19, 19, 12, 9, 17, 4, 6, 2, 18, 12, 11, 21, 17, 10, 23, 22, 8, 20, 12, 5, 13, 21, 12, 12, 19, 12, 17, 14, 18, 23, 9, 3, 8, 24, 23, 8, 4, 9, 21, 23, 7, 25, 12, 5, 22, 12, 15, 15, 7, 16, 18, 20, 11, 1, 3, 18, 10, 24, 21, 7, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]\n", + "[20, 4, 14, 4, 23, 11, 5, 10, 12, 3, 12, 6, 23, 6, 3, 6, 25, 21, 15, 9, 22, 23, 16, 10, 21, 24, 11, 24, 10, 19, 22, 13, 8, 14, 18, 24, 25, 5, 1, 20, 25, 20, 2, 8, 10, 13, 14, 17, 9, 2, 11, 16, 14, 23, 16, 4, 5, 19, 20, 13, 24, 1, 18, 6, 5, 22, 15, 13, 25, 7, 14, 10, 4, 5, 10, 2, 13, 1, 24, 2, 13, 18, 24, 3, 3, 10, 17, 24, 5, 10, 14, 14, 20, 12, 1, 12, 11, 16, 4, 21, 11, 8, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20]\n", + "[5, 4, 9, 25, 5, 16, 9, 6, 21, 5, 5, 18, 16, 2, 5, 10, 1, 2, 2, 10, 9, 2, 10, 19, 9, 1, 25, 9, 9, 17, 19, 14, 11, 10, 2, 7, 4, 13, 25, 15, 17, 15, 5, 11, 22, 24, 3, 16, 25, 7, 21, 11, 23, 14, 5, 18, 25, 6, 25, 25, 13, 7, 6, 6, 11, 24, 20, 6, 5, 3, 12, 19, 8, 16, 21, 22, 2, 3, 9, 9, 22, 20, 6, 12, 18, 24, 11, 16, 25, 4, 1, 4, 9, 23, 15, 7, 6, 4, 8, 15, 18, 8, 3, 11, 24, 2, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11]\n", + "[15, 19, 17, 10, 3, 17, 13, 4, 5, 18, 8, 11, 13, 11, 11, 22, 22, 17, 17, 14, 23, 19, 22, 5, 12, 16, 16, 16, 23, 5, 11, 9, 12, 25, 25, 22, 12, 17, 14, 21, 2, 25, 22, 15, 8, 15, 16, 15, 18, 9, 4, 5, 7, 20, 21, 22, 10, 5, 24, 10, 9, 6, 4, 25, 25, 9, 18, 22, 6, 17, 11, 12, 11, 20, 25, 20, 8, 7, 18, 3, 10, 15, 19, 19, 2, 15, 8, 23, 21, 12, 16, 3, 23, 6, 25, 5, 23, 8, 2, 5, 5, 25, 13, 12, 8, 9, 21, 7, 11, 14, 11, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16]\n", + "[17, 12, 8, 11, 1, 23, 14, 18, 9, 19, 13, 5, 21, 16, 17, 24, 11, 15, 16, 21, 19, 11, 5, 14, 5, 16, 22, 14, 10, 18, 21, 24, 18, 1, 12, 23, 15, 22, 12, 17, 10, 14, 25, 13, 23, 22, 2, 19, 18, 9, 23, 14, 13, 1, 18, 10, 16, 14, 4, 8, 2, 3, 19, 23, 20, 24, 18, 18, 13, 23, 3, 15, 7, 11, 2, 17, 12, 8, 15, 21, 8, 24, 25, 16, 24, 4, 6, 11, 25, 15, 4, 23, 18, 4, 22, 16, 21, 11, 22, 19, 14, 18, 21, 16, 24, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]\n", + "[15, 2, 8, 21, 2, 14, 23, 10, 5, 19, 14, 25, 3, 4, 9, 14, 1, 14, 9, 12, 17, 22, 15, 10, 24, 3, 17, 8, 9, 12, 11, 11, 8, 17, 25, 5, 10, 7, 24, 1, 16, 15, 9, 18, 18, 4, 1, 22, 14, 23, 22, 15, 23, 25, 1, 8, 22, 3, 25, 23, 2, 8, 17, 13, 1, 15, 1, 3, 6, 9, 18, 7, 12, 25, 10, 21, 20, 1, 17, 3, 22, 6, 23, 12, 5, 19, 21, 13, 17, 14, 20, 3, 10, 5, 9, 2, 21, 7, 18, 1, 24, 24, 24, 17, 11, 3, 11, 21, 21, 14, 9, 20, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15]\n", + "[12, 5, 12, 11, 4, 22, 24, 9, 6, 19, 23, 17, 7, 10, 7, 11, 6, 15, 6, 3, 24, 21, 14, 16, 9, 7, 12, 12, 9, 25, 13, 17, 24, 6, 12, 22, 22, 24, 4, 23, 4, 14, 14, 4, 19, 4, 5, 3, 23, 9, 9, 11, 3, 20, 11, 23, 24, 2, 19, 12, 17, 2, 19, 3, 14, 3, 14, 14, 23, 24, 16, 5, 20, 22, 24, 10, 20, 2, 15, 22, 25, 12, 3, 3, 13, 11, 18, 17, 9, 20, 3, 1, 18, 14, 8, 1, 21, 10, 22, 20, 1, 1, 19, 18, 19, 23, 5, 1, 13, 17, 18, 4, 11, 5, 8, 9, 9, 7, 13, 13, 13, 9, 9, 5, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19]\n", + "[1, 19, 5, 7, 2, 9, 8, 16, 15, 14, 16, 11, 14, 14, 24, 21, 9, 11, 4, 17, 15, 10, 20, 24, 3, 9, 9, 12, 10, 9, 21, 20, 16, 16, 18, 5, 21, 7, 11, 14, 20, 8, 16, 15, 13, 3, 4, 11, 20, 21, 25, 15, 8, 19, 20, 1, 22, 13, 15, 13, 8, 15, 19, 20, 20, 23, 22, 25, 25, 22, 19, 4, 16, 6, 2, 8, 24, 13, 2, 18, 14, 14, 24, 1, 12, 4, 22, 16, 15, 19, 5, 25, 12, 2, 12, 1, 18, 18, 4, 23, 25, 9, 20, 3, 14, 22, 9, 10, 5, 17, 1, 4, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]\n" + ] + } + ], "source": [ "# This will test your function \n", "test_mode(mode_counter)" @@ -257,20 +930,47 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 92, "metadata": {}, "outputs": [], "source": [ "from statistics import stdev\n", "def st_dev(arr):\n", - " pass" + " n = 0 \n", + " suma = 0\n", + " for i in arr:\n", + " n += 1\n", + " suma += i\n", + " \n", + " avg = float(suma/n)\n", + " sum1= 0\n", + " \n", + " \n", + " for i in arr:\n", + " sum1 += (i - avg)**2\n", + " \n", + " total =(sum1/(n - 1))**0.5\n", + " return total\n", + " " ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 93, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.028s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_stdev(st_dev)" @@ -285,19 +985,35 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 108, "metadata": {}, "outputs": [], "source": [ "def pangram(string):\n", - " pass" + " abc = \"abcdefghijklmnopqrstuvwxyz\"\n", + " for i in abc:\n", + " if i not in string.lower():\n", + " return False\n", + " return True\n" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 109, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "..............................\n", + "----------------------------------------------------------------------\n", + "Ran 30 tests in 0.018s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_pangram(pangram)" @@ -314,19 +1030,69 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 136, "metadata": {}, "outputs": [], "source": [ "def sort_alpha(string):\n", - " pass" + " string +=\",\"\n", + " newlist=[]\n", + " word=\"\"\n", + " new_word =\"\"\n", + " for letter in string.lower():\n", + " if letter ==\",\":\n", + " newlist.append(word)\n", + " word=\"\"\n", + " else:\n", + " word+=letter\n", + " newlist.sort()\n", + " for i in newlist:\n", + " new_word+=\",\"+i\n", + " \n", + " finalword = new_word[1:]\n", + " return finalword\n", + " \n", + " \n", + " " ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 137, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'bernat,el,hola,soc'" + ] + }, + "execution_count": 137, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sort_alpha(\"Hola,soc,el,bernat\")" + ] + }, + { + "cell_type": "code", + "execution_count": 138, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "....................................................................................................\n", + "----------------------------------------------------------------------\n", + "Ran 100 tests in 0.038s\n", + "\n", + "OK\n" + ] + } + ], "source": [ "# This will test your function \n", "test_alpha(sort_alpha)" @@ -342,28 +1108,66 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def check_pass(string):\n", - " pass" + " abc = \"abcdefghijklmnopqrstuvwxyz\"\n", + " abc_upper = \"ABCDEFGHIJKLMNOPQRSTVWXYZ\"\n", + " num = \"0123456789\"\n", + " char = \"#@!$%&)(^*][}{\"\n", + " count = 0\n", + " val = True\n", + " \n", + " \n", + " if validation and validation1 and validation2 and validation3 and validation4:\n", + " final = True\n", + " \n", + " print(final)\n", + " return final\n" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'string' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [6]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;66;03m# This will test your function \u001b[39;00m\n\u001b[0;32m----> 2\u001b[0m check_pass(\u001b[43mstring\u001b[49m)\n", + "\u001b[0;31mNameError\u001b[0m: name 'string' is not defined" + ] + } + ], "source": [ "# This will test your function \n", - "test_pass(check_pass)" + "check_pass(string)" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -377,7 +1181,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.6" + "version": "3.9.12" } }, "nbformat": 4, diff --git a/mod/__pycache__/testing.cpython-39.pyc b/mod/__pycache__/testing.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d6add1785958712ca4f24d59c99a0047195cefb GIT binary patch literal 13207 zcmds8TWlOx8J;t)5=zJ2`~ejoq+QvPqxYT7^OqW!1i;xZ2ZcPO~VnX6^hnPnNSbyqJL zS%c9%!;O{V*|@C7+(apvO_oyGl)R3+eWm_ve`z2)P#Vk*;$DI$?`he6JjMHP9^(Cc z0Ow&o$oJtq!iV@U&inZY-;eVFet;ju`5-^UpTPMLKg>sQexj)HBR^%?!~98p6xXBt zDgHFhNBA@R7|u^}c2i3~y8-I8$utWS!sgYyjapy9$_JisEH|x(aX;Yp-7r@2xSck_ zVav}uPR{k_ZIQQpyK$phsnl;IxKnfjKhLP)`Y(=i3WtHizl-8^?Y?%O6?D$HelNxK zK$~SN#t*eXTh-UJWfmCRSYg+++b=KcL2Nb7V?4grR@1d*V>!0ORuk`QOU6>Hs0T@P zUSTWx8e`g>vuG=|rmglZF}mg&Mw^(-qw|g*kwicL912^bsmtp3*?p}+T-La+7Z^8q z>|QDxyRXHxY#dF+YtII@ALNR{wgOvZF1lXca{Wu0Dct>P*_$ut8%a$n}RQ^c&iM}Qg0}kku5BhJ;cvY91)3%AR4qzy@2wuHYwcNHLGcke&*IB3+ z%Hj~J;t3RCQdG;t3VP@hRy9^TvlH?4Z`KpU^RiX4!SnuH4t%M)R3FUcsCV^5@<%*F zo$af0I&ZsfE+?s2*Tn%m5>KO8XM#p936pn8viLC+DK-?BcQ!b#Hjez~;lqu8Vx6q_ zhp8&&oCpq6G>%sYY;tmMR-M2OR0&SV{&)n2t-LXmwFTEEh5>WYdawCmVEzgVc9pdG`^)v>r5eB$Z-=>?k|N#OH9` zG0!xlBo12Xei=n%oWHQF6UOgpfg$mp;KrIx5@3Zb8x5Qj#<#_HayRj9wlTmDb{XJ; zI4Wozh+!)BQ_)<#a%mmKt#;_8ccSN!v9}^ow;6llFi~@a3L-*0MMaA^TJq3{O<1+d zge@7BspCqJ;A>lFV{}Pql@NH6n(P3DIE7ms3ygqFg5)N>O9U1nK5madVQ8zQblIBz zk$xve;zOLqV{rxr>KCYnX_rzgpUROr?q4 zZR%`n8&dWXPP8-|TI%F>G(|!ZEyi6#lK4DY6JMa>Why#RBQE0J3v~ZWC~8k{roDv} zaS5-a`vpycAahHcr(&FnCP2jmE<*#WLp)CpWZPe+n(VlxpHhvk2;!R|^a}27f)EK^ zshb|v292Vdc#@~?!5Za#E5;PKQ*IPi>_6g=GG;GkfK0I>`pE=-r6AJJ`$=05w!!V`a3u@+G9bP8L;jrai>Fu(S$W+*n7B$EW^f{;W4<&kKicBcT+woAE_BM zY|ZKvA_$Ki3X9+=XTh>|@uXzHb_6}Lbb1U|IY-phrIYgEx1}tSaQYUtNz0}gK$5<) zf=?6+TaX#tw#qlTuB;wRJ4x?J$8|_9??MvD}R4HyNZXAy9d>)enbA)`GU zE46SsCMZY)@5~Nb5!jwFB9G{;FZ|Qnb1qth$e{)|ulkPlM*R_wqynVqO0Nh}T6ca- zmN>FT$G`MFu8vT=tXjd6AFWdk8Ml475S8?(=Rbb@OqyZ z-UctFHF^;f0bfeN&DL{`4SaFrSyi@?8z02#x#8I4hFlz@pn>w<+;#&CSv0?xHnRIw z?(vFS^8D@$WKaF~0ga}PNhK(HjwBK&?^Aob1S@48;r|RVA%vq=Cn|JL6^J>Kn9SJU2tIqw8BX2H2@o7}6} zWz&VhhvsLiML$zJ`MT>&o3mbi&ZiD*iU2e4WS@NA5`|3d^bIt}t$E*cJv2k@Iz`iO zlA?$JbyG98>IwZK?~bl(mf$}6Dpk~Y+{H|7?7BBk&EpMsu|7<06#}znPYX-EeY`gI zrW}9GuFNb7AH((L$Ln92^6eW=38YQUdnOkcUAaDr8QZOx1#6)}CXFgnyFjGPT8ram z#VHbh7sge0CQ{Ax>b&RPwTTB9>hW6oCg#BkW}KQFhD_WSoCWjEsx@Z|)0>{PvCRM< zWNH&v>ccz(%DrjR@f+OB&tTY+t@$|&)G4FeVy5=OEi1^+m}hR-UIpA)Jbq@}yy9Yp zr-VIi&!HJ?Vlb!PR`XFr;yzP*@#>;^1H2z6Qq{ungDPL7g@8|;yjK(!7=>Y!P0OqZ zr)D3ooxf!*EXo1mle@OSSg=y$To^B8t(4JtbOz zw6{uh!=%C%5NvumElsO9MH+)dkX&J_sUWdrtoE%TgtOMz;PNtZp8eS1GVsZ6aH(LQ zfv`S>T-`5-lWodCrI~w^6G0v9nz{8$qOC64l^eDVU6F+Q&#A?_aF5A+c*pXhzG!(# zw}vui(ybX=M$&r~X>aVJf)f|$tJpWiV-1^qjj3dKIv#dfEYun)JJ}i~`( ztgXJ20j_mJCFdx}Drh=-rU8FN52f{{;=`L*($W|(EgHFYX}n1<3_G4;vz}8HG`_Zs zV6U`et3S0>W1IdqXp=>Huq*W#rs|*gs!K{e3h9&4IK!0V`_*aqx?x=IcWddb_Dp{m zCw=9IF*{)u`wnJxZ5$+vC(L^nz|g2FdS+C^+zncY3xR-vmRTJ7QcN_qA! zo`(tF6M@aK=da>AK}(Q{JkcaGI47wl1HH-sm)-svHya`g`~D6~`xi)@r?@j2R>ja}ZONEsFAQSSDOEt0% z6bZ5>>39wIT6CzL8(Y({iA#@RU~VnbiDqeIo<>Eo{aC}sDd~8FQf3U^nsj$hQH8`2ATfy9FT3I#STy0vk zr_fY7*=20DnV8Lpe|vH{o6OJH`MF$0aH7PfqDwHV$Ru_9M?7syEi1{4*kqM@KB{^q z*5Q9SXm`KoxxP%N5LlcAbhz zDk$40^A9p8Dkv}`-lL*G1*r*1ks5~_j4Y&Ms$_Bra3XE`#_RVTX*=F#bkx M9FV2D8cGfS7j%7iJpcdz literal 0 HcmV?d00001