{"submission_id":1183,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-02 09:36:54","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in liste:\n if i % 2 == 0:\n res += i\n return res","user":"userdId_4","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1183} {"submission_id":99,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 03:55:46","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res += elem\n return res","user":"userdId_32","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":99} {"submission_id":2461,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 03:56:25","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_32","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2461} {"submission_id":2822,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 04:57:24","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_7","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2822} {"submission_id":3721,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 04:57:29","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_7","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3721} {"submission_id":2948,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 04:58:35","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_17","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2948} {"submission_id":5489,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 05:01:38","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(0, len(liste)):\n res = res + liste[i]\n return res","user":"userdId_7","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5489} {"submission_id":2679,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 05:02:22","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_7","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2679} {"submission_id":1241,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:04:33","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_17","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1241} {"submission_id":1101,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 05:05:10","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(liste):\n res = res + i\n return res","user":"userdId_30","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1101} {"submission_id":4213,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 05:06:11","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in liste:\n res = res + i\n return res","user":"userdId_30","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4213} {"submission_id":5451,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 05:07:49","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return None","user":"userdId_25","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5451} {"submission_id":2197,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 05:07:49","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_30","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2197} {"submission_id":1266,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 05:07:57","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_25","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1266} {"submission_id":2308,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 05:08:09","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_25","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2308} {"submission_id":3659,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-03 05:11:24","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_17","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":3659} {"submission_id":2581,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 05:11:37","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_35","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2581} {"submission_id":4428,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 05:11:52","correct":false,"func_code":"def somme(liste):\n res = 0\n if elem in liste:\n res = res + elem\n return res","user":"userdId_8","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4428} {"submission_id":2723,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:12:58","correct":false,"func_code":"def maximum(liste):\n if liste == 0:\n res = None\n else:\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = res\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2723} {"submission_id":2174,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:13:45","correct":false,"func_code":"def maximum(liste):\n if liste == 0:\n res = None\n else:\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = res > liste[i]\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2174} {"submission_id":739,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:15:40","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":739} {"submission_id":4291,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-03 05:16:02","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_8","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4291} {"submission_id":2908,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:16:17","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n if liste[i] > i:\n res = liste[i]\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2908} {"submission_id":2009,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:18:01","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_7","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2009} {"submission_id":4372,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:18:22","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 1, len(liste)\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4372} {"submission_id":680,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:21:36","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":680} {"submission_id":3068,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:23:14","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in liste:\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3068} {"submission_id":1828,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:23:44","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in len(liste):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1828} {"submission_id":3516,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:24:14","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3516} {"submission_id":2064,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:25:59","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(liste):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2064} {"submission_id":3936,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:26:26","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n elif i in range(liste):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3936} {"submission_id":3409,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:27:06","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in liste:\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3409} {"submission_id":684,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:29:08","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_32","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":684} {"submission_id":556,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:30:06","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in liste:\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":556} {"submission_id":4989,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:30:21","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(liste):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4989} {"submission_id":7,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-03 05:30:40","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_7","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":7} {"submission_id":4961,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:30:58","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range([liste]):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4961} {"submission_id":4908,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:31:19","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(liste):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4908} {"submission_id":4649,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:31:30","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4649} {"submission_id":1106,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:31:37","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1106} {"submission_id":5232,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:31:57","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5232} {"submission_id":516,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:32:33","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":516} {"submission_id":4811,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:32:34","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n res < liste[i]\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4811} {"submission_id":3667,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:33:02","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3667} {"submission_id":1629,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:33:44","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in liste:\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1629} {"submission_id":3229,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:34:10","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in liste:\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3229} {"submission_id":1492,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:34:23","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in liste:\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1492} {"submission_id":3054,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:35:32","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in liste:\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3054} {"submission_id":5349,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:36:12","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5349} {"submission_id":5021,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:36:50","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5021} {"submission_id":3875,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:39:25","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n res = range[0]\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3875} {"submission_id":2799,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:39:41","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n res == range[0]\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2799} {"submission_id":2152,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:41:11","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_35","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2152} {"submission_id":446,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:41:25","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_35","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":446} {"submission_id":2620,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:41:34","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n res = range[0]\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2620} {"submission_id":4061,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:42:58","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = range[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4061} {"submission_id":2821,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:43:13","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n res = range[0]\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2821} {"submission_id":1889,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:44:00","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n res = range[1]\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1889} {"submission_id":1206,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:44:07","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n res = range[0]\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1206} {"submission_id":706,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:45:03","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":706} {"submission_id":1879,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:45:10","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n res = range[i]\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1879} {"submission_id":834,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:45:18","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n res = range[0]\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":834} {"submission_id":1134,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:45:30","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1134} {"submission_id":331,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:49:13","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n res = liste[0]\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":331} {"submission_id":1440,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-03 05:51:04","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1440} {"submission_id":2791,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-03 05:52:33","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_30","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2791} {"submission_id":2865,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-03 06:10:15","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2865} {"submission_id":2766,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-03 06:10:28","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2766} {"submission_id":131,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-03 06:22:25","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_35","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":131} {"submission_id":5040,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-03 06:32:19","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_25","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5040} {"submission_id":5360,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-04 03:40:50","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n res = 0\n for elem in liste:\n res = res + liste\n res = res \/ len(liste)\n return res","user":"userdId_17","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5360} {"submission_id":5471,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-04 03:41:07","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n res = 0\n for elem in liste:\n res = res + elem\n res = res \/ len(liste)\n return res","user":"userdId_17","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5471} {"submission_id":1188,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-04 03:42:25","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n res = 0\n for elem in liste:\n res = res + elem\n res = res \/ len(liste)\n return res","user":"userdId_17","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1188} {"submission_id":1505,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-04 03:44:47","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n for elem in liste:\n res = res + elem\n res = res \/ len(liste)\n return res","user":"userdId_17","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1505} {"submission_id":3268,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-04 05:01:16","correct":true,"func_code":"def somme(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = 0\n for i in liste:\n res = res + i\n return res","user":"userdId_18","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3268} {"submission_id":928,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-04 05:03:44","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(1, liste)):\n if liste[i] > res:\n res = i\n return res","user":"userdId_18","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":928} {"submission_id":5229,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-04 05:04:31","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = i\n return res","user":"userdId_18","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5229} {"submission_id":2019,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-04 05:06:49","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = i\n return res","user":"userdId_18","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2019} {"submission_id":183,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-04 05:07:58","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if i > res:\n res = i\n return res","user":"userdId_18","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":183} {"submission_id":1408,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-04 05:09:14","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if i > res:\n res = i\n return res","user":"userdId_18","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1408} {"submission_id":3872,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-04 05:10:43","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if i > res:\n res = i\n return res","user":"userdId_18","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3872} {"submission_id":4054,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-04 11:38:31","correct":false,"func_code":"def somme(liste):\n return None","user":"userdId_32","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4054} {"submission_id":3006,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:32:05","correct":false,"func_code":"def somme(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_30","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3006} {"submission_id":943,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:32:56","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return None","user":"userdId_49","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":943} {"submission_id":5026,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:33:02","correct":false,"func_code":"def somme(liste):\n if liste[i] == 0:\n res = 0\n else:\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_30","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5026} {"submission_id":269,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:33:14","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(0, len(liste), 1):\n res = res + liste[i]\n return res","user":"userdId_29","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":269} {"submission_id":5604,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:33:20","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in liste:\n res += i\n return res","user":"userdId_6","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5604} {"submission_id":1697,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:33:54","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_49","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1697} {"submission_id":635,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:34:05","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste(i)\n return res","user":"userdId_16","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":635} {"submission_id":3128,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:34:07","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return None","user":"userdId_14","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3128} {"submission_id":1390,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:34:30","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(0, len(liste), 1):\n res = res + liste[i]\n return res","user":"userdId_29","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1390} {"submission_id":5212,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:34:32","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_14","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5212} {"submission_id":3978,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:34:32","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_16","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3978} {"submission_id":4581,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:34:44","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_30","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4581} {"submission_id":2777,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:34:51","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_14","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2777} {"submission_id":1855,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:36:23","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_48","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1855} {"submission_id":5296,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 21:36:44","correct":false,"func_code":"def maximum(liste):\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_6","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5296} {"submission_id":1432,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 21:36:54","correct":false,"func_code":"def maximum(liste):\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_6","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1432} {"submission_id":937,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:37:31","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_21","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":937} {"submission_id":2080,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:37:59","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste\n return None","user":"userdId_23","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2080} {"submission_id":2397,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:38:03","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_36","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2397} {"submission_id":1912,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 21:38:05","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n return None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_6","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1912} {"submission_id":2379,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:39:47","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(l)):\n res = res + liste[i]\n return","user":"userdId_25","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2379} {"submission_id":3779,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:40:01","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(l)):\n res = res + liste[i]\n return res","user":"userdId_25","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3779} {"submission_id":4642,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:40:11","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_25","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4642} {"submission_id":1455,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:40:15","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(l)):\n res = res + liste(i)\n return None","user":"userdId_23","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1455} {"submission_id":4929,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:40:24","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_25","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4929} {"submission_id":5577,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:40:46","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len, l):\n res = res + liste(i)\n return None","user":"userdId_23","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5577} {"submission_id":5213,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:42:28","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste(i)\n return None","user":"userdId_23","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5213} {"submission_id":5032,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:42:37","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_14","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5032} {"submission_id":150,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:42:43","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste(i)\n return None","user":"userdId_23","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":150} {"submission_id":4708,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:42:47","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return None","user":"userdId_32","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4708} {"submission_id":2043,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:42:58","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste(i)\n return None","user":"userdId_23","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2043} {"submission_id":1426,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:44:05","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_32","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1426} {"submission_id":4399,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-05 21:44:28","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n return None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < max:\n max = liste[i]\n return max","user":"userdId_6","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4399} {"submission_id":2036,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:44:33","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste(i)\n return res","user":"userdId_23","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2036} {"submission_id":1300,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:44:42","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_25","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1300} {"submission_id":579,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:44:50","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_25","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":579} {"submission_id":5606,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:45:19","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_23","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5606} {"submission_id":3611,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-05 21:47:03","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n return None\n else:\n moy = 0\n for i in liste:\n moy += i\n moy \/= len(liste)\n return moy","user":"userdId_6","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3611} {"submission_id":4541,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:53:54","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + liste[i]\n return res","user":"userdId_14","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4541} {"submission_id":3865,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:53:57","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_29","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3865} {"submission_id":5547,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:54:07","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_14","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5547} {"submission_id":1349,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:54:08","correct":false,"func_code":"def somme(liste):\n res = 0\n for elen in liste:\n res = res + elem\n return res","user":"userdId_49","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1349} {"submission_id":3772,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:54:18","correct":true,"func_code":"def somme(liste):\n res = 0\n for elen in liste:\n res = res + elen\n return res","user":"userdId_49","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3772} {"submission_id":3876,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:54:25","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_30","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3876} {"submission_id":3063,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:54:26","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_25","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3063} {"submission_id":2634,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:54:29","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_29","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2634} {"submission_id":3448,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:55:28","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in l:\n res = res + elem\n return res","user":"userdId_23","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3448} {"submission_id":2985,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 21:56:58","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_23","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2985} {"submission_id":4569,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 21:57:37","correct":false,"func_code":"def maximum(liste):\n max = 0\n for i in range(0, len(liste)):\n if liste[i] > res:\n max = liste[i]\n return max","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4569} {"submission_id":4445,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 21:57:51","correct":false,"func_code":"def maximum(liste):\n max = 0\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4445} {"submission_id":4027,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 21:58:27","correct":false,"func_code":"def maximum(liste):\n max = 0\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = liste[i]\n max = max\n return max","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4027} {"submission_id":5226,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 21:59:13","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(l)):\n if res < i:\n res = i\n return res","user":"userdId_48","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5226} {"submission_id":3661,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 21:59:26","correct":false,"func_code":"def maximum(l):\n res = 0\n for i in range(len(l)):\n if res < i:\n res = i\n return res","user":"userdId_48","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3661} {"submission_id":365,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 21:59:42","correct":false,"func_code":"def maximum(liste):\n max = 0\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":365} {"submission_id":3336,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:00:35","correct":false,"func_code":"def maximum(l):\n res = None\n for i in range(len(l)):\n if res < i:\n res = i\n return res","user":"userdId_48","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3336} {"submission_id":226,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:00:57","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":226} {"submission_id":117,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:01:21","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = None\n for i in range(len(liste)):\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":117} {"submission_id":4192,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:01:27","correct":false,"func_code":"def maximum(l):\n res = l[0]\n for i in range(len(l)):\n if res < i:\n res = i\n return res","user":"userdId_48","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4192} {"submission_id":5653,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:01:40","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = None\n for i in range(len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5653} {"submission_id":3762,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:02:12","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = None\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3762} {"submission_id":643,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:02:32","correct":false,"func_code":"def maximum(liste):\n max = ''\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":643} {"submission_id":4580,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:03:30","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = None\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4580} {"submission_id":5001,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:03:51","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = None\n for i in range(len(liste)):\n if liste[i] > res:\n res = res\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5001} {"submission_id":369,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:04:15","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = None\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i] > res\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":369} {"submission_id":3593,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:04:18","correct":false,"func_code":"def maximum(l):\n res = None\n for i in range(1, len(l)):\n if res < i:\n res = i\n return res","user":"userdId_48","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3593} {"submission_id":3173,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:04:31","correct":false,"func_code":"def maximum(liste):\n if len(liste):\n res = none\n else:\n res = 0\n for i in range(1, len(liste)):\n res = len(liste) > res\n res = len(liste)\n return","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3173} {"submission_id":5087,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:04:44","correct":false,"func_code":"def maximum(liste):\n if len(liste):\n res = None\n else:\n res = 0\n for i in range(1, len(liste)):\n res = len(liste) > res\n res = len(liste)\n return res","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5087} {"submission_id":3180,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:04:46","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elen in liste:\n if elen > 0:\n res = elen\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3180} {"submission_id":2236,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:05:08","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2236} {"submission_id":3214,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:05:42","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n return None\n else:\n max = liste[0]\n return None","user":"userdId_14","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3214} {"submission_id":2049,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:05:51","correct":false,"func_code":"def maximum(liste):\n if len(liste):\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n res = len(liste) > res\n res = len(liste)\n return res","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2049} {"submission_id":2037,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:06:41","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_30","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2037} {"submission_id":1902,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:06:44","correct":false,"func_code":"def maximum(liste):\n if len(liste):\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n res = len(liste) > res\n res = len(liste)\n return res","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1902} {"submission_id":708,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:06:55","correct":false,"func_code":"def maximum(l):\n res = l[0]\n for i in range(1, len(l)):\n if i == None:\n res = None\n elif res < i:\n res = i\n return res","user":"userdId_48","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":708} {"submission_id":4982,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:07:40","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elen in liste:\n if elen > 0:\n res = elen\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4982} {"submission_id":2736,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:08:18","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n res = liste[0]\n for i in range(1, len(liste)):\n res = len(liste) > res\n res = len(liste)\n return res","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2736} {"submission_id":3015,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:08:58","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n return None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_14","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3015} {"submission_id":951,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:09:43","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elen in liste:\n if elen > 0:\n res = elen\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":951} {"submission_id":2647,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:09:52","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n return None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_14","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2647} {"submission_id":5551,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:11:38","correct":false,"func_code":"def maximum(l):\n if len(l) == 0:\n res = l[0]\n for i in range(1, len(l)):\n if res < i:\n res = i\n else:\n res = None\n return res","user":"userdId_48","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5551} {"submission_id":2830,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:12:02","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2830} {"submission_id":1474,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:13:16","correct":false,"func_code":"def maximum(liste):\n max = liste[0]\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1474} {"submission_id":5037,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:13:22","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elen in liste:\n if elen > res:\n res = elen\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5037} {"submission_id":2764,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:13:34","correct":false,"func_code":"def maximum(liste):\n max = liste[0]\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2764} {"submission_id":4664,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:13:59","correct":false,"func_code":"def maximum(l):\n if len(l) == 0:\n res == l[0]\n for i in range(1, len(l)):\n if res < i:\n res = i\n else:\n res = None\n return res","user":"userdId_48","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4664} {"submission_id":1336,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:14:09","correct":false,"func_code":"def maximum(l):\n if len(l) == 0:\n res = l[0]\n for i in range(1, len(l)):\n if res < i:\n res = i\n else:\n res = None\n return res","user":"userdId_48","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1336} {"submission_id":1464,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:14:28","correct":false,"func_code":"def maximum(liste):\n liste: 0\n res = 0\n for i in range(len(liste)):\n if res < len(liste):\n res = len(liste)\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1464} {"submission_id":709,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:14:29","correct":false,"func_code":"def maximum(liste):\n max = 0\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":709} {"submission_id":222,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:15:12","correct":false,"func_code":"def maximum(liste):\n liste: 0\n res = 0\n for i in range(len(liste)):\n if res > len(liste):\n res = len(liste)\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":222} {"submission_id":2582,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:15:28","correct":false,"func_code":"def maximum(liste):\n liste: 0\n res = 0\n for i in range(len(liste)):\n if res < len(liste):\n res = len(liste)\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2582} {"submission_id":4574,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:15:29","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elen in liste[1]:\n if elen > res:\n res = elen\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4574} {"submission_id":5533,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:15:38","correct":false,"func_code":"def maximum(liste):\n max = liste[0]\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5533} {"submission_id":5424,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:15:39","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elen in liste:\n if elen > res:\n res = elen\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5424} {"submission_id":4830,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:16:26","correct":false,"func_code":"def maximum(liste):\n max = 0\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4830} {"submission_id":3601,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:16:40","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n if res < elem(liste):\n res = elem(liste)\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3601} {"submission_id":5298,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:17:11","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if res < elem(liste):\n res = elem(liste)\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5298} {"submission_id":5475,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:17:26","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5475} {"submission_id":1085,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:17:52","correct":false,"func_code":"def maximum(liste):\n max = -999\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1085} {"submission_id":3581,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:18:19","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3581} {"submission_id":3923,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:18:38","correct":true,"func_code":"def maximum(liste):\n max = -999\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = liste[i]\n if len(liste) == 0:\n max = None\n return max","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3923} {"submission_id":1755,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:19:27","correct":false,"func_code":"def maximum(liste):\n res = -100\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1755} {"submission_id":3053,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:19:38","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste\n return res","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3053} {"submission_id":2264,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:20:10","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2264} {"submission_id":5118,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:20:14","correct":false,"func_code":"def maximum(l):\n if len(l) == 0:\n res = None\n else:\n res = l[0]\n for i in range(1, len(l)):\n if res < i:\n res = i\n return res","user":"userdId_48","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5118} {"submission_id":844,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:20:18","correct":false,"func_code":"def maximum(liste):\n max = liste[0]\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = liste[i]\n if len(liste) == 0:\n max = None\n return max","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":844} {"submission_id":5078,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:20:25","correct":false,"func_code":"def maximum(liste):\n res = -12\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5078} {"submission_id":2380,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 22:20:28","correct":false,"func_code":"def maximum(liste):\n res = -12\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2380} {"submission_id":5398,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:33:47","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_12","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5398} {"submission_id":4262,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:34:43","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_13","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4262} {"submission_id":1704,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:34:43","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_33","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1704} {"submission_id":2135,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:34:50","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_23","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2135} {"submission_id":5481,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:34:50","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(0, len(liste)):\n if liste[i] > res:\n res = liste[i]\n if len(liste) == 0:\n res = None\n return res","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5481} {"submission_id":2069,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:34:53","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_9","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2069} {"submission_id":5146,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:34:53","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_33","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5146} {"submission_id":2604,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:34:53","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_13","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2604} {"submission_id":501,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:35:16","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_45","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":501} {"submission_id":161,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:35:29","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_33","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":161} {"submission_id":3138,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:35:42","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_12","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3138} {"submission_id":1193,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:35:47","correct":true,"func_code":"def somme(liste):\n res = 0\n if len(liste) == 0:\n return 0\n else:\n for elem in liste:\n res = res + elem\n return res","user":"userdId_14","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1193} {"submission_id":4516,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:35:49","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_41","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4516} {"submission_id":324,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:36:53","correct":false,"func_code":"def maximum(liste):\n max = 0\n for i in max:\n if i > max:\n max = i\n return max","user":"userdId_13","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":324} {"submission_id":4418,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:36:53","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_15","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4418} {"submission_id":458,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:38:09","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_24","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":458} {"submission_id":3016,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:39:12","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return max","user":"userdId_13","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3016} {"submission_id":564,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:39:34","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n return None\n else:\n max = l[0]\n for elem in liste:\n if elem > max:\n max = elem\n return max","user":"userdId_14","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":564} {"submission_id":1145,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:39:35","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return max","user":"userdId_13","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1145} {"submission_id":5227,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:39:51","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n return None\n else:\n max = liste[0]\n for elem in liste:\n if elem > max:\n max = elem\n return max","user":"userdId_14","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5227} {"submission_id":1395,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:40:22","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return max","user":"userdId_13","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1395} {"submission_id":3485,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:40:47","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range(0, len(liste)):\n if liste[i] > res:\n res = liste[i]\n if len(liste) == 0:\n res = None\n return res","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3485} {"submission_id":2807,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:40:48","correct":false,"func_code":"def maximum(liste):\n res = 'None'\n for elem in liste:\n res = res > elem\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2807} {"submission_id":3434,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:41:08","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n res = res > elem\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3434} {"submission_id":428,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:41:38","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_46","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":428} {"submission_id":1928,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:41:46","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_19","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1928} {"submission_id":1157,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:41:47","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_9","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1157} {"submission_id":1511,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:42:13","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return max","user":"userdId_13","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1511} {"submission_id":2695,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:42:25","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_13","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2695} {"submission_id":939,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:42:37","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_45","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":939} {"submission_id":723,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:42:38","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n if len(liste) == 0:\n res = None\n return res","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":723} {"submission_id":1475,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:42:55","correct":false,"func_code":"def maximum(liste):\n res = liste[1]\n for i in range(0, len(liste)):\n if liste[i] > res:\n res = liste[i]\n if len(liste) == 0:\n res = None\n return res","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1475} {"submission_id":1565,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:43:27","correct":false,"func_code":"def maximum(liste):\n res = 'None'\n for elem in liste:\n if elem > res:\n res = res + elem\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1565} {"submission_id":4047,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:44:02","correct":false,"func_code":"def maximum(liste):\n max = o\n if elem > max in liste:\n max = elem\n return max","user":"userdId_46","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4047} {"submission_id":3606,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:44:08","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = res + elem\n else:\n res = 'None'\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3606} {"submission_id":3425,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:44:14","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range(0, len(liste)):\n if liste[i] > res:\n res = liste[i]\n if len(liste) == 0:\n res = None\n return res","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3425} {"submission_id":1450,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:44:19","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1450} {"submission_id":4212,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:44:23","correct":false,"func_code":"def maximum(liste):\n max = 0\n if elem > max in liste:\n max = elem\n return max","user":"userdId_46","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4212} {"submission_id":182,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:44:27","correct":true,"func_code":"def maximum(liste):\n if liste == []:\n return None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_15","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":182} {"submission_id":3004,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:44:50","correct":false,"func_code":"def maximum(liste):\n max = 0\n if i > max in liste:\n max = elem\n return max","user":"userdId_46","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3004} {"submission_id":1410,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:45:09","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n if elem > res:\n res = res + elem\n else:\n res = 'None'\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1410} {"submission_id":1422,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:45:49","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in list:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1422} {"submission_id":3303,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:46:01","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] > res:\n res = res + liste[i]\n else:\n res = None\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3303} {"submission_id":4917,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:46:05","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(0, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_29","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4917} {"submission_id":1640,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:46:11","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = liste[i]\n if res < i:\n res = i\n return res","user":"userdId_5","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1640} {"submission_id":575,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:46:31","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":575} {"submission_id":2611,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-05 23:46:34","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n moy = None\n else:\n moy = 0\n for i in liste:\n moy = moy + i\n moy = moy \/ len(liste)\n return moy","user":"userdId_13","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2611} {"submission_id":102,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:47:09","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if liste > elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":102} {"submission_id":5246,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:47:18","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n if res < i:\n res = i\n return res","user":"userdId_5","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5246} {"submission_id":1813,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-05 23:47:21","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_9","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1813} {"submission_id":1988,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-05 23:47:24","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n moy = None\n else:\n moy = 0\n for i in liste:\n moy = moy + i\n moy = moy \/ len(liste)\n return moy","user":"userdId_13","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1988} {"submission_id":4204,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:47:25","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + len(liste)[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4204} {"submission_id":4079,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:47:34","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] > res:\n res = res + liste[i]\n else:\n res = None\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4079} {"submission_id":755,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:47:39","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in list:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":755} {"submission_id":918,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:47:41","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if res > elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":918} {"submission_id":5235,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:47:46","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in list:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5235} {"submission_id":3427,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:47:47","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3427} {"submission_id":3914,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-05 23:47:52","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n moy = None\n else:\n moy = 0\n for i in liste:\n moy = moy + i\n moy = moy \/ len(liste)\n return moy","user":"userdId_13","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3914} {"submission_id":4369,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:47:57","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4369} {"submission_id":3129,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:48:02","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range(len(liste)):\n res = res < i\n return res","user":"userdId_45","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3129} {"submission_id":112,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:48:03","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in list:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":112} {"submission_id":1610,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:48:15","correct":false,"func_code":"def maximum(liste):\n res = -12\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1610} {"submission_id":5309,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:48:18","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res < i\n return res","user":"userdId_45","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5309} {"submission_id":1757,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-05 23:48:24","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_9","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1757} {"submission_id":1588,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:48:34","correct":false,"func_code":"def maximum(liste):\n if liste == []:\n return None\n else:\n res = liste[0]\n for i in range(0, len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_2","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1588} {"submission_id":4446,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:48:41","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n return none\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_1","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4446} {"submission_id":5558,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:48:50","correct":true,"func_code":"def maximum(liste):\n if liste == []:\n return None\n else:\n res = liste[0]\n for i in range(0, len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_2","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5558} {"submission_id":3102,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:48:55","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n return None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_1","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3102} {"submission_id":4738,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:49:04","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4738} {"submission_id":2506,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:49:10","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in list:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2506} {"submission_id":475,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:49:13","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] > 0:\n res = res + liste[i]\n else:\n res = None\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":475} {"submission_id":1311,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:49:30","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in list:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1311} {"submission_id":1892,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:49:39","correct":false,"func_code":"def maximum(liste):\n max = 0\n for elem in range(1, len(liste)):\n if len[liste] > max:\n max = l[liste]\n return max","user":"userdId_46","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1892} {"submission_id":2832,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:49:43","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in list:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2832} {"submission_id":5308,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:50:16","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_19","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5308} {"submission_id":4756,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:50:28","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n return None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_1","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4756} {"submission_id":429,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:50:29","correct":false,"func_code":"def maximum(liste):\n max = 0\n for elem in range(1, len(liste)):\n if len[liste] > max:\n max = l[liste]\n return max","user":"userdId_46","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":429} {"submission_id":1708,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:50:36","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in list:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1708} {"submission_id":3840,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:50:38","correct":false,"func_code":"def maximum(liste):\n max = 0\n for elem in range(1, len(liste)):\n if len[liste] > max:\n max = l[liste]\n return max","user":"userdId_46","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3840} {"submission_id":3998,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:50:40","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n return None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_1","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3998} {"submission_id":3512,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:50:46","correct":false,"func_code":"def maximum(liste):\n max = 0\n for elem in range(1, len(liste)):\n if len[liste] > max:\n max = l[liste]\n return max","user":"userdId_46","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3512} {"submission_id":1294,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-05 23:50:56","correct":true,"func_code":"def minimum(liste):\n if liste == []:\n return None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_15","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1294} {"submission_id":2097,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-05 23:50:56","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_13","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2097} {"submission_id":2969,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:51:10","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n if res < i:\n res = i\n return res","user":"userdId_5","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2969} {"submission_id":41,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:51:19","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in list:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":41} {"submission_id":1773,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-05 23:51:26","correct":true,"func_code":"def minimum(liste):\n if liste == []:\n return None\n else:\n res = liste[0]\n for i in range(0, len(liste)):\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_2","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1773} {"submission_id":1992,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:51:29","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in list:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1992} {"submission_id":2956,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:51:52","correct":false,"func_code":"def maximum(liste):\n res = max\n for i in range(len(liste)):\n res = res < i\n return res","user":"userdId_45","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2956} {"submission_id":3301,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:52:04","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]","user":"userdId_1","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3301} {"submission_id":4616,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-05 23:52:10","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_13","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4616} {"submission_id":2299,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-05 23:52:30","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_1","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2299} {"submission_id":205,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-05 23:52:31","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/\/ cpt\n return res","user":"userdId_13","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":205} {"submission_id":4189,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:55:22","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] > res:\n res = res + liste[i]\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4189} {"submission_id":1703,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-05 23:56:17","correct":false,"func_code":"def maximum(liste):\n max = 0\n for elem in range(1, len(liste)):\n if liste[elem] > max:\n max = liste[elem]\n return max","user":"userdId_46","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1703} {"submission_id":3305,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-05 23:57:38","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for i in range(len(liste)):\n cpt = cpt + 1\n res = res + liste[i]\n res = res \/ cpt\n return res","user":"userdId_30","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3305} {"submission_id":9,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-05 23:58:42","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_9","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":9} {"submission_id":5589,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:00:01","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5589} {"submission_id":3553,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:00:05","correct":false,"func_code":"def maximum(liste):\n max = 0\n for elem in range(1, len(liste)):\n if liste[elem] > max:\n max = liste[elem]\n return max","user":"userdId_46","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3553} {"submission_id":4846,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:00:05","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in liste:\n res = res + i\n if res < i:\n res = i\n return res","user":"userdId_5","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4846} {"submission_id":3864,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-06 00:00:05","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in list:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3864} {"submission_id":4091,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:00:05","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_13","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4091} {"submission_id":3783,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:00:05","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_13","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3783} {"submission_id":1655,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:00:07","correct":false,"func_code":"def moyenne(liste):\n if liste == []:\n return None\n else:\n S = 0\n nbNotes = 0\n for i in liste:\n S = S + liste[i]\n nbNotes = nbNotes + 1\n return S \/ nbNotes","user":"userdId_15","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1655} {"submission_id":5396,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:00:14","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_13","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5396} {"submission_id":3242,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-06 00:00:15","correct":true,"func_code":"def somme(liste):\n res = 0\n for nb in liste:\n res = res + nb\n return res","user":"userdId_29","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3242} {"submission_id":5329,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:00:15","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5329} {"submission_id":598,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:00:16","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in liste:\n res = res + i\n if res < i:\n res = i\n return res","user":"userdId_5","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":598} {"submission_id":3320,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:00:16","correct":false,"func_code":"def moyenne(liste):\n somme = 0\n for elem in liste:\n somme = somme + elem\n moy = somme \/ len(liste)\n return moy","user":"userdId_2","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3320} {"submission_id":4420,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:00:16","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] > res:\n res = res + liste[i]\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4420} {"submission_id":4278,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-06 00:00:16","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_45","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4278} {"submission_id":660,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-06 00:00:16","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_45","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":660} {"submission_id":2352,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:00:16","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for i in range(len(liste)):\n cpt = cpt + 1\n res = res + liste[i]\n res = res \/ cpt\n return res","user":"userdId_30","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2352} {"submission_id":3422,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:00:16","correct":false,"func_code":"def moyenne(liste):\n somme = 0\n for i in range(0, len(liste)):\n somme = somme + liste[i]\n moy = somme \/ len(liste)\n return moy","user":"userdId_2","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3422} {"submission_id":5191,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:04:06","correct":false,"func_code":"def moyenne(liste):\n somme = 0\n for elem in liste:\n somme = somme + elem\n moy = somme \/ len(liste)\n return moy","user":"userdId_2","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5191} {"submission_id":140,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:04:16","correct":false,"func_code":"def moyenne(liste):\n if liste == []:\n return None\n else:\n S = 0\n nbNotes = 0\n for i in liste:\n S = S + liste[i]\n nbNotes = nbNotes + 1\n return S \/ nbNotes","user":"userdId_15","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":140} {"submission_id":3492,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:04:20","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_9","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":3492} {"submission_id":2811,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:04:34","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_13","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2811} {"submission_id":4015,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:04:44","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for i in range(len(liste)):\n cpt = cpt + 1\n res = res + liste[i]\n res = res \/ cpt\n return res","user":"userdId_30","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4015} {"submission_id":184,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:04:58","correct":false,"func_code":"def moyenne(liste):\n somme = 0\n nbtermes = 0\n for elem in liste:\n somme = somme + elem\n nbtermes = nbtermes + 1\n moy = somme \/ nbtermes\n return moy","user":"userdId_2","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":184} {"submission_id":2325,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-06 00:05:03","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in list:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2325} {"submission_id":3196,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:05:07","correct":true,"func_code":"def moyenne(liste):\n if liste == []:\n return None\n else:\n S = 0\n nbNotes = 0\n for elem in liste:\n S = S + elem\n nbNotes = nbNotes + 1\n return S \/ nbNotes","user":"userdId_15","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3196} {"submission_id":4447,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:05:17","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(le(liste)):\n if liste[i] > res:\n res = liste[i]\n return None","user":"userdId_12","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4447} {"submission_id":1964,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-06 00:05:20","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1964} {"submission_id":2810,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:05:25","correct":false,"func_code":"def maximum(liste):\n res = max\n for i in range(len(liste)):\n res = i < res\n return res","user":"userdId_45","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2810} {"submission_id":209,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:05:45","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return None","user":"userdId_12","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":209} {"submission_id":5484,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:05:47","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return None","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5484} {"submission_id":4487,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:06:00","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < res:\n res = liste[i]\n return None","user":"userdId_13","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4487} {"submission_id":3920,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:06:03","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_12","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3920} {"submission_id":342,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:06:10","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_13","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":342} {"submission_id":3997,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:06:16","correct":false,"func_code":"def maximum(liste):\n res = 25\n for i in range(len(liste)):\n res = res + liste[i]\n return 25","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3997} {"submission_id":1449,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:06:21","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_13","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1449} {"submission_id":1615,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:06:37","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return liste","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1615} {"submission_id":2936,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:06:54","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return len","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2936} {"submission_id":5223,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:07:21","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5223} {"submission_id":1058,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:07:45","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1058} {"submission_id":5509,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:07:47","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5509} {"submission_id":1296,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:08:00","correct":false,"func_code":"def maximum(liste):\n res = -12\n for elem in liste:\n if res < elem:\n res = elem\n if elem in liste == 0:\n res = None\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1296} {"submission_id":5295,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:08:36","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res == res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5295} {"submission_id":377,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:08:48","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":377} {"submission_id":816,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:09:28","correct":false,"func_code":"def moyenne(liste):\n if liste == []:\n return None\n else:\n somme = 0\n nbtermes = 0\n for elem in liste:\n somme = somme + elem\n nbtermes = nbtermes + 1\n moy = somme \/ nbtermes\n return moy","user":"userdId_2","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":816} {"submission_id":1581,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:10:30","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1581} {"submission_id":2274,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-06 00:10:34","correct":true,"func_code":"def somme(liste):\n res = 0\n for nb in liste:\n res = res + nb\n return res","user":"userdId_29","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2274} {"submission_id":4073,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:11:54","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4073} {"submission_id":4627,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:12:23","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_12","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4627} {"submission_id":4400,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:12:26","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + lenliste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4400} {"submission_id":4085,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:12:31","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = elem\n for elem in liste:\n if elem < 0:\n res = elem\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4085} {"submission_id":574,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:12:47","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n nb = 0\n res = 0\n for elem in liste:\n res = res + elem\n moy = res \/ nb\n return moy","user":"userdId_29","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":574} {"submission_id":2237,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:12:58","correct":false,"func_code":"def moyenne(liste):\n if liste == []:\n return None\n else:\n somme = 0\n nbtermes = 0\n for elem in liste:\n somme = somme + elem\n nbtermes = nbtermes + 1\n moy = somme \/ nbtermes\n return moy","user":"userdId_2","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2237} {"submission_id":2030,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:13:05","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2030} {"submission_id":4696,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:13:06","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = elem\n for elem in liste:\n if elem < 0:\n res = 0\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4696} {"submission_id":3036,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:13:20","correct":true,"func_code":"def moyenne(liste):\n if liste == []:\n return None\n else:\n somme = 0\n nbtermes = 0\n for elem in liste:\n somme = somme + elem\n nbtermes = nbtermes + 1\n moy = somme \/ nbtermes\n return moy","user":"userdId_2","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3036} {"submission_id":2472,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:13:23","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = elem\n for elem in liste:\n if elem < 0:\n res = elem\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2472} {"submission_id":2246,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:13:28","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res == res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2246} {"submission_id":1315,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:13:29","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = elem\n for elem in liste:\n if elem < 0:\n res = elem\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1315} {"submission_id":5077,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:14:42","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = res + liste[i]\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5077} {"submission_id":1081,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-06 00:15:54","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_41","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1081} {"submission_id":1785,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:15:55","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1785} {"submission_id":4701,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:15:57","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n nb = 0\n res = 0\n for elem in liste:\n res = res + elem\n nb += 1\n moy = res \/ nb\n return moy","user":"userdId_29","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4701} {"submission_id":1791,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:16:42","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1791} {"submission_id":3278,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:16:43","correct":false,"func_code":"def maximum(liste):\n res = liste\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3278} {"submission_id":2550,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:16:56","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2550} {"submission_id":2562,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:16:59","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2562} {"submission_id":208,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:17:12","correct":false,"func_code":"def maximum(liste):\n res = 0\n if i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":208} {"submission_id":4863,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:17:17","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n nb = 0\n res = 0\n moy = ''\n for elem in liste:\n res = res + elem\n nb += 1\n moy = res \/ nb\n return moy","user":"userdId_29","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4863} {"submission_id":5054,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:17:19","correct":false,"func_code":"def maximum(liste):\n res = l[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5054} {"submission_id":4926,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:17:38","correct":false,"func_code":"def maximum(liste):\n res = liste([0])\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4926} {"submission_id":3673,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:17:38","correct":false,"func_code":"def maximum(liste):\n res = 0\n if maximum in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3673} {"submission_id":341,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:17:41","correct":false,"func_code":"def maximum(liste):\n res = max\n for i in range(len(liste)):\n if liste[i]:\n res = liste[i]\n return res","user":"userdId_45","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":341} {"submission_id":1534,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:17:52","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1534} {"submission_id":2585,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:17:56","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i]:\n res = liste[i]\n return res","user":"userdId_45","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2585} {"submission_id":3540,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:18:06","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n cpt = 0\n num = 0\n res = 0\n for i in range(len(liste)):\n num = num + liste[i]\n cpt = cpt + 1\n res = num \/ cpt\n return res","user":"userdId_12","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3540} {"submission_id":4398,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:18:21","correct":false,"func_code":"def maximum(liste):\n res = 0\n if liste in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4398} {"submission_id":3756,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:18:22","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n nb = 0\n res = 0\n moy = ''\n for elem in liste:\n res = res + elem\n nb += 1\n moy = res \/ nb\n return moy","user":"userdId_29","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3756} {"submission_id":3031,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:18:28","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_45","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3031} {"submission_id":791,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:18:30","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n nb = 0\n res = 0\n moy = ''\n for elem in liste:\n res = res + elem\n nb += 1\n moy = res \/ nb\n return moy","user":"userdId_29","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":791} {"submission_id":2119,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:18:46","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2119} {"submission_id":5003,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:18:55","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(0, len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_29","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5003} {"submission_id":658,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:18:55","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_33","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":658} {"submission_id":433,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:19:44","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n return None","user":"userdId_14","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":433} {"submission_id":3972,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:20:06","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_33","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3972} {"submission_id":2517,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:20:10","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2517} {"submission_id":4304,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:20:28","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4304} {"submission_id":3438,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:20:40","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3438} {"submission_id":94,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:20:50","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":94} {"submission_id":1359,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:21:04","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in range(len(liste)):\n res = res + liste[elem]\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1359} {"submission_id":3400,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:21:09","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3400} {"submission_id":1949,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:21:21","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1949} {"submission_id":881,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:21:33","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_33","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":881} {"submission_id":976,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:21:35","correct":false,"func_code":"def maximum(liste):\n res = liste\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":976} {"submission_id":1223,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:22:07","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = elem\n res = liste[0]\n for elem in liste:\n if elem > res:\n res > elem\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1223} {"submission_id":4203,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:22:15","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if elem > res:\n res = elem","user":"userdId_33","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4203} {"submission_id":958,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:22:19","correct":false,"func_code":"def maximum(liste):\n res = -12\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":958} {"submission_id":4467,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:22:26","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if elem > res:\n res = elem","user":"userdId_33","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4467} {"submission_id":587,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:22:31","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if elem > res:\n res = elem","user":"userdId_33","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":587} {"submission_id":1507,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:22:34","correct":false,"func_code":"def maximum(liste):\n res = liste, [0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1507} {"submission_id":2050,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:22:40","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n return None\n min = 0\n for i in range(1, len(liste)):\n if liste[i] < min:\n min = liste[i]\n return min","user":"userdId_1","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2050} {"submission_id":3354,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:22:54","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if elem > res:\n res = elem","user":"userdId_33","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3354} {"submission_id":2182,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:23:02","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2182} {"submission_id":1159,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:23:07","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n return None\n min = 0\n for i in range(1, len(liste)):\n if liste[i] < min:\n min = liste[i]\n return min","user":"userdId_1","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1159} {"submission_id":2568,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:23:16","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res > elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2568} {"submission_id":1733,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:24:30","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n return None\n else:\n min = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < min:\n min = liste[i]\n return min","user":"userdId_1","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1733} {"submission_id":924,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:24:32","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":924} {"submission_id":630,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:24:56","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n for elem in liste:\n if elem < liste[0]:\n res = liste[0]\n return res","user":"userdId_14","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":630} {"submission_id":1700,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:25:31","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for elem in liste:\n if elem < liste[0]:\n res = liste[0]\n return res","user":"userdId_14","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1700} {"submission_id":1129,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:25:39","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for elem in liste:\n if elem < liste[0]:\n res = liste[0]\n return res","user":"userdId_14","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1129} {"submission_id":2144,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:25:47","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_45","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2144} {"submission_id":2406,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:26:13","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for elem in liste:\n if elem < liste[i]:\n res = liste[i]\n return res","user":"userdId_14","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2406} {"submission_id":3351,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:26:13","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3351} {"submission_id":5184,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:26:14","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n return none\n res = liste[0]\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_33","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5184} {"submission_id":1851,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:26:20","correct":false,"func_code":"def maximum(liste):\n res = liste([0])\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1851} {"submission_id":4748,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:26:43","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for elem in liste:\n if elem < liste[elem]:\n res = liste[elem]\n return res","user":"userdId_14","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4748} {"submission_id":5028,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:27:03","correct":false,"func_code":"def moyenne(liste):\n res = 0\n nb = 0\n for nb in liste:\n res = res + nb\n nb += 1\n moy = res \/ nb\n return moy","user":"userdId_29","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5028} {"submission_id":4286,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:27:24","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if elem < liste[i]:\n res = liste[i]\n return res","user":"userdId_14","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4286} {"submission_id":3294,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:28:04","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if i < liste[i]:\n res = liste[i]\n return res","user":"userdId_14","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":3294} {"submission_id":3734,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:28:16","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if i > liste[i]:\n res = liste[i]\n return res","user":"userdId_14","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":3734} {"submission_id":3725,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:28:32","correct":false,"func_code":"def maximum(liste):\n res = liste([1])\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3725} {"submission_id":725,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:28:43","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":725} {"submission_id":5153,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:28:46","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_45","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5153} {"submission_id":3935,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:29:05","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n moy = None\n else:\n res = 0\n nb = 0\n for nb in liste:\n res = res + nb\n nb += 1\n moy = res \/ nb\n return moy","user":"userdId_29","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3935} {"submission_id":1764,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:29:21","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1764} {"submission_id":1217,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:29:37","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n moy = None\n else:\n res = 0\n nb = 0\n for nb in liste:\n res = res + nb\n nb += 1\n moy = res \/ nb\n return moy","user":"userdId_29","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1217} {"submission_id":2646,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:30:34","correct":true,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n if cpt == 0:\n res = None\n else:\n res = res \/ cpt\n return res","user":"userdId_1","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2646} {"submission_id":4962,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:31:03","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_45","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4962} {"submission_id":2992,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:31:22","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2992} {"submission_id":4942,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:31:29","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n moy = None\n else:\n res = 0\n for nb in liste:\n res = res + nb\n moy = res \/ len(liste)\n return moy","user":"userdId_29","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4942} {"submission_id":3502,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:32:02","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3502} {"submission_id":4901,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:32:38","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_33","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4901} {"submission_id":2190,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:32:50","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n min = None\n else:\n min = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < min:\n min = liste[i]\n return min","user":"userdId_14","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2190} {"submission_id":5341,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:35:25","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_5","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5341} {"submission_id":3440,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:35:30","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n for i in liste:\n res = res + i\n cpt = cpt + 1\n moyenne = res \/ cpt\n return moyenne","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3440} {"submission_id":2671,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:37:25","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n moyenne = 0\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n moyenne = res \/ cpt\n return moyenne","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2671} {"submission_id":4469,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:37:41","correct":false,"func_code":"def minimum(liste):\n res = 100\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_45","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4469} {"submission_id":2544,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:38:11","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n moyenne = 0\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n return res \/ cpt","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2544} {"submission_id":4827,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:38:48","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n res = 0\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n return res \/ cpt","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4827} {"submission_id":4697,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:39:09","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n res = 0\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4697} {"submission_id":3205,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:39:42","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n res = 0\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n res = res % cpt\n return res","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3205} {"submission_id":2566,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:40:13","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2566} {"submission_id":3730,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:40:50","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n moy = 0\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n moy = res * cpt\n return res","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3730} {"submission_id":4117,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:40:58","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n moy = 0\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n moy = res * cpt\n return my","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4117} {"submission_id":4758,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:41:02","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n moy = 0\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n moy = res * cpt\n return moy","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4758} {"submission_id":3658,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:41:31","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n moy = 0\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n moy = res \/\/ cpt\n return moy","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3658} {"submission_id":4572,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:41:37","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n moy = 0\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n moy = res \/ cpt\n return moy","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4572} {"submission_id":5476,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:42:47","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_41","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5476} {"submission_id":1060,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:43:16","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n moy = 0\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n moy = res * cpt\n return moy","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1060} {"submission_id":392,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:43:31","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n moy = None\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n moy = res * cpt\n return moy","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":392} {"submission_id":5428,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:44:10","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n moy = None\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n moy = res * cpt\n return moy","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5428} {"submission_id":2293,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:44:35","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_24","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2293} {"submission_id":19,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:44:42","correct":false,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n moy = None\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n moy = res * cpt\n return moy","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":19} {"submission_id":40,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:44:54","correct":true,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n if len(liste) == 0:\n moy = None\n else:\n for i in liste:\n res = res + i\n cpt = cpt + 1\n moy = res \/ cpt\n return moy","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":40} {"submission_id":1738,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:46:52","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = 0\n else:\n rest = liste[0]\n for i in range(len(liste)):\n if liste[0] < res:\n res = liste[0]\n return res","user":"userdId_45","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1738} {"submission_id":869,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 00:48:17","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_49","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":869} {"submission_id":2711,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 00:51:07","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for elem in liste:\n if elem < res:\n res = elem\n return res","user":"userdId_49","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2711} {"submission_id":774,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:53:08","correct":false,"func_code":"def moyenne(liste):\n y = 0\n x = 0\n for elem in liste:\n y = y + 1\n x = x + elem\n res = x \/ y\n return res","user":"userdId_24","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":774} {"submission_id":3831,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:53:22","correct":false,"func_code":"def moyenne(liste):\n res = 0\n y = 0\n x = 0\n for elem in liste:\n y = y + 1\n x = x + elem\n res = x \/ y\n return res","user":"userdId_24","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3831} {"submission_id":3963,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 00:55:28","correct":false,"func_code":"def moyenne(liste):\n res = 0\n y = 0\n x = 0\n for elem in liste:\n y = y + 1\n x = x + elem\n res = x \/ y\n if len(liste) == 0:\n res = None\n return res","user":"userdId_24","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3963} {"submission_id":2230,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-06 21:57:17","correct":false,"func_code":"def somme(liste):\n res = None\n if len(liste) > 0:\n res = sum(liste)\n return res","user":"userdId_4","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2230} {"submission_id":2101,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-06 21:57:47","correct":true,"func_code":"def somme(liste):\n res = 0\n if len(liste) > 0:\n res = sum(liste)\n return res","user":"userdId_4","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2101} {"submission_id":2173,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 22:02:55","correct":false,"func_code":"def maximum(liste):\n res = None\n if len(liste) > 0:\n liste.sort()\n res = liste\n return res","user":"userdId_4","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2173} {"submission_id":5013,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 22:03:08","correct":false,"func_code":"def maximum(liste):\n res = None\n if len(liste) > 0:\n liste.sort()\n res = liste\n return res[-1]","user":"userdId_4","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5013} {"submission_id":3332,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 22:03:53","correct":false,"func_code":"def maximum(liste):\n res = None\n if len(liste) > 0:\n liste.sort()\n res = liste\n return res[-1]","user":"userdId_4","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3332} {"submission_id":2653,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-06 22:04:45","correct":true,"func_code":"def maximum(liste):\n res = None\n if len(liste) > 0:\n liste.sort()\n res = liste[-1]\n return res","user":"userdId_4","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2653} {"submission_id":5216,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-06 22:12:10","correct":true,"func_code":"def minimum(liste):\n res = None\n if len(liste) > 0:\n liste.sort()\n res = liste[0]\n return res","user":"userdId_4","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5216} {"submission_id":3518,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-06 22:17:08","correct":false,"func_code":"def moyenne(liste):\n res = None\n if len(liste) > 0:\n res = mean(liste)\n return res","user":"userdId_4","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3518} {"submission_id":5445,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-09 08:08:42","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in l:\n res = res + elem\n return res","user":"userdId_11","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5445} {"submission_id":2909,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-09 08:09:05","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_11","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2909} {"submission_id":4978,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-09 08:10:06","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_11","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4978} {"submission_id":1695,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-09 08:10:58","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_11","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1695} {"submission_id":695,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-09 08:13:04","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n max = None\n else:\n max = liste[0]\n for i in range(liste):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_11","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":695} {"submission_id":790,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-09 08:17:54","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_11","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":790} {"submission_id":2403,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-09 08:19:32","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n max = None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_11","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2403} {"submission_id":821,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-09 08:38:59","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n min = None\n else:\n min = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < min:\n min = liste[i]\n return min","user":"userdId_11","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":821} {"submission_id":5330,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-09 08:44:54","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n return res \/ cpt","user":"userdId_11","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5330} {"submission_id":339,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-09 08:45:13","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n return res \/ cpt","user":"userdId_11","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":339} {"submission_id":2291,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-09 08:46:27","correct":true,"func_code":"def moyenne(liste):\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n if cpt == 0:\n res = None\n else:\n res = res \/ cpt\n return res","user":"userdId_11","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2291} {"submission_id":895,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-09 21:41:44","correct":true,"func_code":"def somme(liste):\n if liste == []:\n return 0\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n res += liste[i]\n return res","user":"userdId_42","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":895} {"submission_id":430,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-09 21:45:42","correct":true,"func_code":"def maximum(liste):\n if liste == []:\n return None\n else:\n maximum = liste[0]\n for i in range(1, len(liste)):\n if maximum < liste[i]:\n maximum = liste[i]\n return maximum","user":"userdId_42","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":430} {"submission_id":5530,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-09 21:52:19","correct":true,"func_code":"def minimum(liste):\n if liste == []:\n return None\n else:\n minimum = liste[0]\n for i in range(1, len(liste)):\n if minimum > liste[i]:\n minimum = liste[i]\n return minimum","user":"userdId_42","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5530} {"submission_id":3671,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-09 21:55:07","correct":true,"func_code":"def moyenne(liste):\n if liste == []:\n return None\n else:\n res = 0\n for c in liste:\n res = res + c\n return res \/ len(liste)","user":"userdId_42","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3671} {"submission_id":1783,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-09 21:57:37","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in liste:\n if i % 2 == 0:\n res += i\n return res","user":"userdId_6","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1783} {"submission_id":5148,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-09 22:26:34","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for x in liste:\n if x % 2 == 0:\n res += x\n return res","user":"userdId_55","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":5148} {"submission_id":2417,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-09 22:35:04","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(liste):\n res = res + liste[i]\n return res","user":"userdId_12","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2417} {"submission_id":177,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-09 22:35:32","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_12","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":177} {"submission_id":618,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-09 22:38:08","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_12","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":618} {"submission_id":4252,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-09 22:40:54","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_12","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4252} {"submission_id":4406,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-09 22:43:47","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n moy = 0\n cpt = 0\n for i in range(len(liste)):\n moy = moy + liste[i]\n cpt = cpt + 1\n res = moy \/ cpt\n return res","user":"userdId_12","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4406} {"submission_id":5172,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 03:59:20","correct":false,"func_code":"def sommeNbPairs(liste):\n if liste == []:\n res = 0\n else:\n for i in liste:\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_18","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":5172} {"submission_id":4065,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:00:06","correct":true,"func_code":"def sommeNbPairs(liste):\n if liste == []:\n res = 0\n else:\n res = 0\n for i in liste:\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_18","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4065} {"submission_id":2394,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:01:29","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for c in liste:\n if c % 2 == 0:\n res = res + c\n return res","user":"userdId_18","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":2394} {"submission_id":5164,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:03:23","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for x in liste:\n res = res + x\n return res","user":"userdId_8","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":5164} {"submission_id":2661,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:03:53","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in liste:\n res = res + liste[i]\n return res","user":"userdId_8","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":2661} {"submission_id":2529,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:04:14","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_8","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":2529} {"submission_id":2477,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:04:35","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for x in liste:\n res = res + x\n return res","user":"userdId_8","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":2477} {"submission_id":1925,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:06:00","correct":false,"func_code":"def sommeNbPairs(liste):\n for liste in (range == 0):\n res = 0\n return None","user":"userdId_25","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1925} {"submission_id":3689,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:07:01","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n if liste == []:\n res = 0\n else:\n for i in liste:\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_7","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":3689} {"submission_id":3236,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:07:31","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(n, 0, -2):\n res = res + i\n return res","user":"userdId_18","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":3236} {"submission_id":4633,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:08:05","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(n, 2, -2):\n res = res + i\n return res","user":"userdId_18","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":4633} {"submission_id":3316,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:08:34","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(n, 0, -2):\n res = res + i\n return res","user":"userdId_18","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":3316} {"submission_id":2094,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:09:15","correct":false,"func_code":"def sommeNbPairs(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_9","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":2094} {"submission_id":2649,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:09:40","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_8","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":2649} {"submission_id":4250,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:09:53","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_16","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4250} {"submission_id":5483,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:10:46","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for x in liste:\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_31","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":5483} {"submission_id":1493,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:11:04","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(1, n, 2):\n res = res + i\n return res","user":"userdId_18","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":1493} {"submission_id":778,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:11:25","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(1, n + 1, 2):\n res = res + i\n return res","user":"userdId_18","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":778} {"submission_id":5237,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:11:40","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(0, n, 2):\n res = res + i\n return res","user":"userdId_18","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":5237} {"submission_id":764,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:12:18","correct":true,"func_code":"def sommeNbPairs(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_9","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":764} {"submission_id":1165,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:13:30","correct":true,"func_code":"def sommeNbPairs(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_9","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1165} {"submission_id":2011,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:15:30","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(0, n + 1, 2):\n res = res + i\n return res","user":"userdId_18","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":2011} {"submission_id":4471,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:15:55","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in liste:\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_35","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4471} {"submission_id":1140,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:17:52","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for x in liste:\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_39","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1140} {"submission_id":2412,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:17:58","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for nbrs in liste:\n if nbrs % 2 == 0:\n res = res + nbrs\n return res","user":"userdId_26","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":2412} {"submission_id":4287,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:18:32","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for nbrs in liste:\n if nbrs % 2 == 0:\n res = res + nbrs\n return res","user":"userdId_26","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4287} {"submission_id":1578,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:19:08","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for x in range(len(liste)):\n res = x % 2\n return res","user":"userdId_25","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1578} {"submission_id":3358,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:20:23","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for x in liste:\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_10","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":3358} {"submission_id":3384,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:21:26","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for x in liste:\n if x % 2 == 0:\n res = res + 0\n return res","user":"userdId_25","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":3384} {"submission_id":4762,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:21:31","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for x in liste:\n if x % 2 == 0:\n res = res + 0\n return res","user":"userdId_25","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4762} {"submission_id":385,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:21:55","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_36","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":385} {"submission_id":5539,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:22:09","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for x in liste:\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_25","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":5539} {"submission_id":4045,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-10 04:22:22","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_9","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4045} {"submission_id":4053,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:24:28","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for e in range(N + 1):\n if e % 2 == 0:\n res = res + e\n return res","user":"userdId_26","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":4053} {"submission_id":3360,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:24:34","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for x in range(n, 2):\n res = res + x\n return res","user":"userdId_8","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":3360} {"submission_id":193,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:24:43","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for e in range(n + 1):\n if e % 2 == 0:\n res = res + e\n return res","user":"userdId_26","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":193} {"submission_id":946,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:25:35","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n if n < 0:\n res = 0\n else:\n for i in range(n + 1):\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_7","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":946} {"submission_id":452,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:26:16","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for x in range(1, n + 1):\n if x % 2 == 0:\n res = res + x\n return None","user":"userdId_39","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":452} {"submission_id":2848,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:27:01","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for x in range(1, n + 1, 2):\n if x % 2 == 0:\n res = res + x\n return None","user":"userdId_39","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":2848} {"submission_id":162,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:27:45","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for x in range(n + 1):\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_31","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":162} {"submission_id":3785,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:28:08","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for x in range(1, n + 1, 2):\n if x % 2 == 0:\n res = res + x\n else:\n res = res - x\n return None","user":"userdId_39","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":3785} {"submission_id":5250,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:28:10","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(n, 2):\n if liste[i]:\n res = res + liste[i]\n return res","user":"userdId_8","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":5250} {"submission_id":1120,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:28:14","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(n, 2):\n if liste[i]:\n res = res + liste[i]\n return res","user":"userdId_8","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":1120} {"submission_id":1304,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:28:17","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for x in range(1, n + 1, 2):\n if x % 2 == 0:\n res = res + x\n else:\n res = res - 1\n return None","user":"userdId_39","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":1304} {"submission_id":5065,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:28:40","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for x in range(1, n + 1, 2):\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_39","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":5065} {"submission_id":2741,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:28:52","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(len(1, n + 1)):\n if liste[i]:\n res = res + liste[i]\n return res","user":"userdId_8","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":2741} {"submission_id":5043,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:28:53","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for x in range(1, n + 1):\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_39","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":5043} {"submission_id":3338,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:29:18","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(len(1, n + 1)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_8","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":3338} {"submission_id":2593,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:29:24","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(len(1, n + 1)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_8","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":2593} {"submission_id":255,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:29:32","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for x in range(1, n + 1):\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_16","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":255} {"submission_id":3291,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:29:45","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(1, n + 1):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_8","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":3291} {"submission_id":1187,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-10 04:30:01","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for x in range(1, n + 1):\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_8","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":1187} {"submission_id":1620,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-10 09:57:54","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n res = liste[i]\n return res","user":"userdId_11","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1620} {"submission_id":2511,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-10 10:00:30","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n max = None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n res = liste[i]","user":"userdId_11","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2511} {"submission_id":5311,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-10 10:01:06","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n max = None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n res = liste[i]","user":"userdId_11","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5311} {"submission_id":5249,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-11 05:56:22","correct":true,"func_code":"def somme(liste):\n return sum(liste)","user":"userdId_56","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5249} {"submission_id":2084,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-12 06:23:59","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in liste:\n res = res + i(liste)\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2084} {"submission_id":4043,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-12 06:26:10","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in len(liste):\n res = res + len(liste)\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4043} {"submission_id":3177,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-12 06:26:21","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in len(liste):\n res = res + len(liste)\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3177} {"submission_id":2010,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-12 06:30:36","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in liste(l):\n res = res + I\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2010} {"submission_id":1822,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-12 06:30:45","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in liste(l):\n res = res + i\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1822} {"submission_id":5384,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-12 06:30:58","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in liste:\n res = res + i\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":5384} {"submission_id":2520,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:36:44","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n if res < liste:\n res = max\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2520} {"submission_id":5631,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:37:18","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n if res < liste:\n res = max\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5631} {"submission_id":2746,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:37:52","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n if res < liste:\n liste = max\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2746} {"submission_id":2034,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:39:33","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in liste:\n if res < liste:\n res = max\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2034} {"submission_id":133,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:40:02","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in liste:\n if res < liste:\n res = max\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":133} {"submission_id":868,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:40:11","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in liste:\n if res < liste:\n res = max\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":868} {"submission_id":436,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:40:37","correct":false,"func_code":"def maximum(liste):\n res = 12\n for i in liste:\n if res < liste:\n res = max\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":436} {"submission_id":3947,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:41:29","correct":false,"func_code":"def maximum(liste):\n res = 12\n for i in liste:\n if liste < res:\n res = max\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3947} {"submission_id":149,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:43:07","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in liste:\n res = max\n if res < liste:\n res = max\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":149} {"submission_id":5668,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:43:40","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in liste:\n res = max\n if res < i:\n res = max\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5668} {"submission_id":5245,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:50:57","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in liste:\n if res < i:\n return i\n else:\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5245} {"submission_id":3188,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:52:56","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range:\n if res < i:\n return i\n else:\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3188} {"submission_id":1961,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:53:13","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range(liste):\n if res < i:\n return i\n else:\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1961} {"submission_id":4434,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:53:31","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range(list):\n if res < i:\n return i\n else:\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4434} {"submission_id":727,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:53:43","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range(i):\n if res < i:\n return i\n else:\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":727} {"submission_id":2252,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:56:10","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in len(liste):\n if res < liste[i]:\n max = liste[i]\n return max","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2252} {"submission_id":1649,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:57:03","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in liste:\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1649} {"submission_id":3670,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 06:59:28","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in liste:\n res < liste[i]\n res = liste[i]\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3670} {"submission_id":2991,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-12 08:26:46","correct":true,"func_code":"def somme(liste):\n if len(liste) == 0:\n return 0\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_1","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2991} {"submission_id":1678,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 08:29:58","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n return None\n max = [0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_1","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1678} {"submission_id":2218,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 08:31:30","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n return None\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_1","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2218} {"submission_id":3556,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-12 08:42:55","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_24","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3556} {"submission_id":2428,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 08:48:15","correct":false,"func_code":"def maximum(liste):\n for i in liste:\n res = liste([0])\n if res < i in liste:\n res = liste[i]\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2428} {"submission_id":5453,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 08:48:28","correct":false,"func_code":"def maximum(liste):\n for i in liste:\n res = liste[0]\n if res < i in liste:\n res = liste[i]\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5453} {"submission_id":4840,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 08:48:47","correct":false,"func_code":"def maximum(liste):\n for i in liste:\n res = liste[0]\n if res < i in liste:\n res = liste(i)\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4840} {"submission_id":449,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 09:34:11","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n return None\n min = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < min:\n min = liste[i]\n return min","user":"userdId_1","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":449} {"submission_id":5215,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 09:37:23","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n return None\n res = 0\n cpt = 0\n for i in range(len(liste)):\n res = res + liste[i]\n cpt = cpt + 1\n if cpt == 0:\n return None\n else:\n res = res \/ cpt\n return res","user":"userdId_1","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5215} {"submission_id":4598,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 09:42:02","correct":false,"func_code":"def maximum(liste):\n max = liste[0]\n for i in len(liste):\n if max < liste(i):\n max = liste(i)\n elif max > liste(i):\n max = max\n return max","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4598} {"submission_id":4969,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 09:43:08","correct":false,"func_code":"def maximum(liste):\n max = liste[0]\n for i in liste:\n if max < liste(i):\n max = liste(i)\n elif max > liste(i):\n max = max\n return max","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4969} {"submission_id":82,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 10:13:01","correct":false,"func_code":"def maximum(liste):\n max = liste[0]\n for i in liste:\n if max < liste(i):\n max = liste(i)\n else:\n if max > liste(i):\n max = max\n return max","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":82} {"submission_id":748,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 10:32:58","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in list(range(i)):\n if res < list(i):\n res = list(i)\n else:\n if lis(i) < res:\n res = res\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":748} {"submission_id":3366,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 10:34:09","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in list(range):\n if res < list(i):\n res = list(i)\n else:\n if lis(i) < res:\n res = res\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3366} {"submission_id":3094,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 10:34:34","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in list(range(4)):\n if res < list(i):\n res = list(i)\n else:\n if lis(i) < res:\n res = res\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3094} {"submission_id":2185,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-12 21:44:53","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in liste:\n res = res + liste[i]\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2185} {"submission_id":1451,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-12 21:46:04","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_20","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1451} {"submission_id":188,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:50:01","correct":false,"func_code":"def minimum(liste):\n res = l[0]\n for elem in liste:\n if l[0] < elem:\n res = elem\n return res","user":"userdId_23","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":188} {"submission_id":3467,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:50:25","correct":false,"func_code":"def minimum(liste):\n res = l[0]\n for elem in liste:\n if l[0] < elem:\n res = elem\n return res","user":"userdId_23","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":3467} {"submission_id":904,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:50:38","correct":false,"func_code":"def minimum(liste):\n res = l([0])\n for elem in liste:\n if l[0] < elem:\n res = elem\n return res","user":"userdId_23","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":904} {"submission_id":760,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:50:43","correct":false,"func_code":"def maximum(liste):\n if liste == 0:\n res = None\n else:\n res = 0\n for i in range(len, liste):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":760} {"submission_id":2347,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:50:58","correct":false,"func_code":"def minimum(liste):\n res = 0\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2347} {"submission_id":1260,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:51:21","correct":false,"func_code":"def minimum(liste):\n res = 0\n for elem in liste:\n if res > elem:\n res = elem\n return res","user":"userdId_23","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1260} {"submission_id":634,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:52:46","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n if len(liste) == 0:\n res = None\n else:\n for i in liste:\n if res < liste[0]:\n res = liste[0]\n return res","user":"userdId_14","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":634} {"submission_id":4688,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:52:57","correct":false,"func_code":"def minimum(liste):\n res = 0\n for elem in liste:\n if res >= elem:\n res = elem\n return res","user":"userdId_23","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4688} {"submission_id":4656,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:53:13","correct":false,"func_code":"def minimum(liste):\n res = 12\n for elem in liste:\n if res > elem:\n res = elem\n return res","user":"userdId_23","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4656} {"submission_id":4084,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:54:06","correct":false,"func_code":"def minimum(liste):\n res = l[0]\n for elem in liste:\n if l[0] > elem:\n res = elem\n return res","user":"userdId_23","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4084} {"submission_id":268,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:54:11","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in liste:\n if res < liste[0]:\n res = liste[0]\n return res","user":"userdId_14","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":268} {"submission_id":4334,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:54:28","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in liste:\n if res > liste[0]:\n res = liste[0]\n return res","user":"userdId_14","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4334} {"submission_id":4782,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:54:28","correct":false,"func_code":"def minimum(liste):\n res = l[0]\n for elem in liste:\n if res > elem:\n res = elem\n return res","user":"userdId_23","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4782} {"submission_id":3506,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:54:34","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in liste:\n if res > liste[0]:\n res = liste[0]\n return res","user":"userdId_14","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3506} {"submission_id":2027,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:54:40","correct":false,"func_code":"def minimum(liste):\n res = l([0])\n for elem in liste:\n if res > elem:\n res = elem\n return res","user":"userdId_23","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2027} {"submission_id":4711,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:54:57","correct":false,"func_code":"def maximum(liste):\n if liste == 0:\n res = None\n else:\n res = 0\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4711} {"submission_id":935,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:54:58","correct":false,"func_code":"def minimum(liste):\n res = len([0])\n for elem in liste:\n if res > elem:\n res = elem\n return res","user":"userdId_23","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":935} {"submission_id":3313,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:55:46","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3313} {"submission_id":5624,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:55:48","correct":false,"func_code":"def minimum(liste):\n res = l([0])\n for elem in liste:\n if res > elem:\n res = elem\n return res","user":"userdId_23","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5624} {"submission_id":353,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:56:01","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":353} {"submission_id":4867,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:56:19","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_25","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4867} {"submission_id":3629,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:56:19","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_20","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3629} {"submission_id":2121,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:56:21","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[1]\n return res","user":"userdId_14","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2121} {"submission_id":4744,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:56:48","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in liste:\n if liste[i] > res:\n res = liste[1]\n return res","user":"userdId_14","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4744} {"submission_id":3699,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:57:07","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in liste:\n if i >= res:\n res = i\n return res","user":"userdId_35","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3699} {"submission_id":2860,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:57:15","correct":false,"func_code":"def maximum(liste):\n res = l[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2860} {"submission_id":1265,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:57:17","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in liste:\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_14","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1265} {"submission_id":256,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:57:30","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_23","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":256} {"submission_id":460,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:57:57","correct":false,"func_code":"def maximum(liste):\n max = len(1, liste)\n for i in range(len(liste)):\n if i > max:\n max = i\n return None","user":"userdId_46","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":460} {"submission_id":1012,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:57:57","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for c in liste:\n if i >= res:\n res = c\n return res","user":"userdId_35","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1012} {"submission_id":1380,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:58:02","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for c in liste:\n if c >= res:\n res = c\n return res","user":"userdId_35","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1380} {"submission_id":4882,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:58:06","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_14","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4882} {"submission_id":1599,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:58:23","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return None","user":"userdId_25","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1599} {"submission_id":5417,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:58:52","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_25","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5417} {"submission_id":1547,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 21:59:39","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_32","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1547} {"submission_id":2803,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-12 21:59:42","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_20","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2803} {"submission_id":2442,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 22:00:13","correct":false,"func_code":"def maximum(liste):\n maximum = liste[0]\n for maximum in liste:\n if c >= maximum:\n res = c\n return res","user":"userdId_35","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2442} {"submission_id":2239,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 22:00:27","correct":false,"func_code":"def maximum(liste):\n maximum = liste[0]\n for maximum in liste:\n if c >= maximum:\n maximum = c\n return maximum","user":"userdId_35","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2239} {"submission_id":4765,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 22:00:43","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_32","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4765} {"submission_id":2480,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 22:01:50","correct":false,"func_code":"def maximum(liste):\n res = -50\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_32","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2480} {"submission_id":1324,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:02:35","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res % cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1324} {"submission_id":3993,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:03:02","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 2\n res = res % cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3993} {"submission_id":867,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 22:03:19","correct":false,"func_code":"def maximum(liste):\n res = -50\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n if liste[0]:\n res = None\n return res","user":"userdId_32","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":867} {"submission_id":786,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:03:47","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in range(len(liste)):\n res = res + elem\n cpt = cpt + 2\n res = res % cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":786} {"submission_id":4865,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:04:12","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in range(len(liste)):\n res = res + elem\n cpt = cpt + 1\n res = res % cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4865} {"submission_id":3191,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:04:47","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n cpt = liste[0]\n for elem in range(len(liste)):\n res = res + elem\n cpt = cpt + 1\n res = res % cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3191} {"submission_id":4258,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:04:53","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n cpt = 0\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n cpt = cpt + 1\n res = res % cpt\n return res","user":"userdId_25","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4258} {"submission_id":2206,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:05:29","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 1\n cpt = 1\n for elem in range(len(liste)):\n res = res + elem\n cpt = cpt + 1\n res = res % cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2206} {"submission_id":5391,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:05:32","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for i in range(len(liste)):\n res = res + liste[i]\n cpt = cpt + 1\n res = res % cpt\n return res","user":"userdId_25","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5391} {"submission_id":5218,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:06:26","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 1\n cpt = 1\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res % cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5218} {"submission_id":2538,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:06:46","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res % cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2538} {"submission_id":4941,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 22:07:51","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range(len(liste)):\n if i >= res:\n res = i\n return res","user":"userdId_35","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4941} {"submission_id":545,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:08:24","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + elem\n res = res % cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":545} {"submission_id":5650,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:08:31","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for i in range(len(liste)):\n res = res + liste[i]\n cpt = cpt + 1\n res = res % cpt\n return res","user":"userdId_25","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5650} {"submission_id":1710,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:08:38","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + elem\n res = elem % cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1710} {"submission_id":5280,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:09:14","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + elem\n res = cpt % elem\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5280} {"submission_id":4409,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:09:34","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + elem\n res = elem % cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4409} {"submission_id":2077,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:11:25","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + elem\n res = elem \/ cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2077} {"submission_id":4014,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 22:11:31","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if res < elem:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4014} {"submission_id":4081,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:12:02","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + elem\n res = cpt % elem\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4081} {"submission_id":3369,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:12:27","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + elem\n res = elem % cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3369} {"submission_id":4374,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 22:12:42","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if i >= res:\n res = i\n return res","user":"userdId_35","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4374} {"submission_id":4849,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:12:44","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + elem\n res = elem % cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4849} {"submission_id":5689,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:12:57","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + elem\n res = elem \/\/ cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5689} {"submission_id":651,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:13:06","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + elem\n res = elem \/ cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":651} {"submission_id":5635,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:13:52","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_25","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5635} {"submission_id":1297,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 22:13:56","correct":false,"func_code":"def maximum(liste):\n res = 0\n for elem in liste:\n if res > elem:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1297} {"submission_id":1425,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:14:05","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_25","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1425} {"submission_id":509,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 22:14:32","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] >= res:\n res = i\n return res","user":"userdId_35","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":509} {"submission_id":2484,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:14:42","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = elem \/ cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2484} {"submission_id":3934,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:14:57","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3934} {"submission_id":4205,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 22:15:02","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n max = None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_46","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4205} {"submission_id":2378,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-12 22:15:06","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_20","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2378} {"submission_id":2598,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-12 22:15:50","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n if i >= res:\n res = i\n return res","user":"userdId_35","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2598} {"submission_id":5662,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:25:54","correct":true,"func_code":"def sommeNbPairs(liste):\n if liste == []:\n return 0\n else:\n sum = 0\n for num in liste:\n if num % 2 == 0:\n sum += num\n return sum","user":"userdId_42","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":5662} {"submission_id":3411,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:31:57","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_17","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":3411} {"submission_id":314,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:32:30","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in liste:\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_17","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":314} {"submission_id":2586,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:32:32","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n if n <= 0:\n return 0\n else:\n sum = 0\n for i in range(1, n + 1):\n if i % 2 == 0:\n sum += i\n return sum","user":"userdId_42","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":2586} {"submission_id":2348,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:33:05","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in liste:\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_17","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":2348} {"submission_id":4529,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:33:50","correct":true,"func_code":"def sommeNbPairs(liste):\n if len(liste) == 0:\n return 0\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_1","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4529} {"submission_id":25,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:34:28","correct":false,"func_code":"def sommeNbPairs(liste):\n if liste == []:\n res = 0\n else:\n for elem in liste:\n if elem % 2 == 0:\n res = res + elem\n return res","user":"userdId_15","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":25} {"submission_id":166,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:35:05","correct":false,"func_code":"def sommeNbPairs(l):\n res = 0\n for x in l:\n if x % 2:\n res = res + x\n return res","user":"userdId_38","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":166} {"submission_id":3466,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:35:10","correct":true,"func_code":"def sommeNbPairs(liste):\n if liste == []:\n res = 0\n else:\n res = 0\n for elem in liste:\n if elem % 2 == 0:\n res = res + elem\n return res","user":"userdId_15","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":3466} {"submission_id":4594,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:35:38","correct":false,"func_code":"def sommeNbPairs(liste):\n for nb in liste:\n if nb % 2 == 0:\n res = res + nb\n return res","user":"userdId_19","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4594} {"submission_id":2720,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:35:55","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for nb in liste:\n if nb % 2 == 0:\n res = res + nb\n return res","user":"userdId_19","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":2720} {"submission_id":1015,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:35:56","correct":false,"func_code":"def sommeNbPairs(liste):\n if liste == 0:\n res = 0\n else:\n for n in liste:\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_5","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1015} {"submission_id":3168,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:36:17","correct":false,"func_code":"def sommeNbPairs(liste):\n if liste == 0:\n res = 0\n else:\n for n in liste:\n if liste[n] % 2 == 0:\n res = res + liste[n]\n return res","user":"userdId_5","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":3168} {"submission_id":693,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:36:39","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n if liste == []:\n res = res\n else:\n for n in liste:\n if n % 2 == 0:\n res = res + n\n return res","user":"userdId_2","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":693} {"submission_id":1142,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:36:41","correct":true,"func_code":"def sommeNbPairs(l):\n res = 0\n for x in l:\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_38","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1142} {"submission_id":5211,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:37:26","correct":false,"func_code":"def sommeNbPairs(liste):\n if liste == 0:\n res = 0\n else:\n for n in liste:\n if liste[liste] % 2 == 0:\n res = res + liste[liste]\n return res","user":"userdId_5","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":5211} {"submission_id":1618,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:37:43","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(n + 1):\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_17","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":1618} {"submission_id":3389,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:38:06","correct":false,"func_code":"def sommeNbPairs(liste):\n if liste == 0:\n res = 0\n else:\n for n in liste:\n if liste % 2 == 0:\n res = res + liste\n return res","user":"userdId_5","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":3389} {"submission_id":4491,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:39:07","correct":false,"func_code":"def sommeNbPairs(liste):\n if liste == 0:\n res = 0\n else:\n for n in liste:\n if n % 2 == 0:\n res = res + n\n return res","user":"userdId_5","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4491} {"submission_id":5680,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:39:15","correct":true,"func_code":"def sommeNbPairs(liste):\n if liste == []:\n res = 0\n else:\n res = 0\n for n in liste:\n if n % 2 == 0:\n res = res + n\n return res","user":"userdId_2","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":5680} {"submission_id":3046,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:39:34","correct":true,"func_code":"def sommeNbPairs(liste):\n if liste == 0:\n res = 0\n else:\n res = 0\n for n in liste:\n if n % 2 == 0:\n res = res + n\n return res","user":"userdId_5","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":3046} {"submission_id":273,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:40:23","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n if n <= 0:\n res = 0\n else:\n res = n * (n + 2) \/ 2\n return res","user":"userdId_2","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":273} {"submission_id":2277,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:40:59","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for nb in liste:\n if nb % 2 == 0:\n res = res + nb\n return res","user":"userdId_29","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":2277} {"submission_id":3985,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:41:38","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n if n <= 0:\n res = 0\n else:\n for n in liste:\n if n % 2 == 0:\n res = n * (n + 1) \/ 2\n return res","user":"userdId_2","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":3985} {"submission_id":4693,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:41:52","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for n in liste:\n if n % 2 == 0:\n res = res + n\n return res","user":"userdId_5","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4693} {"submission_id":977,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:42:28","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n if n < 0:\n res = 0\n else:\n res = 0\n for i in range(n + 1):\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_15","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":977} {"submission_id":2147,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:42:29","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n if n < 0:\n res = 0\n for i in range(1, n + 1):\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_19","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":2147} {"submission_id":1718,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:43:34","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n if i in range(1, n + 1):\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_38","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":1718} {"submission_id":4059,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:43:56","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n if i in range(1, n + 1):\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_38","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":4059} {"submission_id":5605,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:44:11","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for elem in liste:\n if elem % 2 == 0:\n res = res + elem\n return res","user":"userdId_15","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":5605} {"submission_id":5008,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:44:27","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for n in liste:\n if n % 2 == 0:\n res = res + n\n return res","user":"userdId_2","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":5008} {"submission_id":2410,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:44:33","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(1, n + 1):\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_38","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":2410} {"submission_id":4856,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:45:58","correct":true,"func_code":"def sommeNbPairs(liste):\n somme = 0\n if liste == []:\n somme = 0\n for elem in liste:\n if elem % 2 == 0:\n somme = somme + elem\n return somme","user":"userdId_13","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4856} {"submission_id":4809,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:48:09","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(2, n + 1, 2):\n res = res + i\n return res","user":"userdId_38","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":4809} {"submission_id":913,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:49:15","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_12","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":913} {"submission_id":585,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:49:23","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n if n < 0:\n res = 0\n for i in range(2, n + 1, 2):\n res = res + i\n return res","user":"userdId_19","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":585} {"submission_id":3780,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:49:30","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(n + 1):\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_29","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":3780} {"submission_id":619,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:49:41","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(n + 1):\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_29","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":619} {"submission_id":2851,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:50:00","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(2, n + 1, 2):\n res = res + i\n return res","user":"userdId_38","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":2851} {"submission_id":919,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:50:39","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(n + 1):\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_2","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":919} {"submission_id":3022,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:53:01","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n if len(liste) == 0:\n res = 0\n for elem in liste:\n if elem % 2 == 0:\n res = res + elem\n return res","user":"userdId_14","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":3022} {"submission_id":4663,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:53:16","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_12","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4663} {"submission_id":2014,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:55:19","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n if n < 0:\n res = 0\n for i in range(2, n + 1, 2):\n res = res + i\n return res","user":"userdId_19","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":2014} {"submission_id":4199,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:57:39","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n somme = 0\n for i in range(1, n + 1):\n somme = somme + i\n for elem in liste:\n if elem % 2 == 0:\n somme = somme + elem\n return somme","user":"userdId_13","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":4199} {"submission_id":2668,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:58:10","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n somme = 0\n for i in range(1, n + 1):\n somme = somme + i\n if elem % 2 == 0:\n somme = somme + elem\n return somme","user":"userdId_13","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":2668} {"submission_id":808,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:59:02","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n somme = 0\n if elem % 2 == 0:\n for elem in range(1, n + 1):\n somme = somme + i\n return somme","user":"userdId_13","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":808} {"submission_id":4157,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:59:05","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n for elem in range(2, n + 1, 2):\n res = res + elem\n return res","user":"userdId_1","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":4157} {"submission_id":4347,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:59:19","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 1\n for elem in range(2, n + 1, 2):\n res = res + elem\n return res","user":"userdId_1","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":4347} {"submission_id":2302,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-13 00:59:27","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for elem in liste:\n if elem % 2 == 0:\n res = res + elem\n return res","user":"userdId_30","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":2302} {"submission_id":240,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 00:59:54","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for elem in range(1, n + 1, 2):\n res = res + elem\n return res","user":"userdId_5","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":240} {"submission_id":266,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-13 01:01:05","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n somme = 0\n for elem in range(1, n + 1):\n if elem % 2 == 0:\n somme = somme + elem\n return somme","user":"userdId_13","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":266} {"submission_id":1642,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-14 00:12:24","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_14","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1642} {"submission_id":83,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-14 00:16:58","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in liste[i]:\n if liste[i] < i:\n res = liste[i]\n return res","user":"userdId_14","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":83} {"submission_id":4806,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-14 00:17:34","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in liste[i]:\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_14","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4806} {"submission_id":158,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-14 00:17:59","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_14","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":158} {"submission_id":5060,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-14 00:50:17","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_11","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5060} {"submission_id":1968,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-14 01:06:49","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_11","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1968} {"submission_id":5344,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-14 03:16:01","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5344} {"submission_id":3450,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-14 03:16:28","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3450} {"submission_id":5420,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-14 03:20:02","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res % cpt\n return res","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5420} {"submission_id":2728,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-14 03:21:03","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for i in len(liste):\n res = res + i\n cpt = cpt + 1\n res = res % cpt\n return res","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2728} {"submission_id":4173,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-14 03:21:21","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for i in range(len(liste)):\n res = res + i\n cpt = cpt + 1\n res = res % cpt\n return res","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4173} {"submission_id":4521,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-14 03:26:31","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for i in range(len(liste)):\n res = res + i\n cpt = cpt + 1\n moy = res % cpt\n return moy","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4521} {"submission_id":141,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-14 03:26:57","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n x = 0\n for i in range(len(liste)):\n res = res + i\n x = x + 1\n moy = res % x\n return moy","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":141} {"submission_id":1513,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-14 03:27:11","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n x = 0\n for i in range(len(liste)):\n res = res + i\n x = x + 1\n moy = x % res\n return moy","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1513} {"submission_id":5031,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-14 03:27:58","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n x = 0\n for elem in liste:\n res = res + elem\n x = x + 1\n moy = x % res\n return moy","user":"userdId_14","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5031} {"submission_id":5491,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-14 21:39:04","correct":false,"func_code":"def maximum(liste):\n if x >= y and x >= z:\n maxi = x\n if y >= x and y >= z:\n maxi = y\n if z >= x and z >= y:\n maxi = z\n return maxi","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5491} {"submission_id":813,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-14 21:39:35","correct":false,"func_code":"def maximum(x, y, z):\n if x >= y and x >= z:\n maxi = x\n if y >= x and y >= z:\n maxi = y\n if z >= x and z >= y:\n maxi = z\n return maxi","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":813} {"submission_id":1471,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-14 22:01:06","correct":false,"func_code":"def maximum(liste):\n maxi = 0\n for v in range(liste):\n if v > maxi:\n maxi = v\n return maxi","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1471} {"submission_id":2393,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-14 22:01:33","correct":false,"func_code":"def maximum(list):\n maxi = 0\n for v in range(list):\n if v > maxi:\n maxi = v\n return maxi","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2393} {"submission_id":2626,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-14 22:01:53","correct":false,"func_code":"def maximum(liste):\n maxi = 0\n for v in range(liste):\n if v > maxi:\n maxi = v\n return maxi","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2626} {"submission_id":2813,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-14 22:03:57","correct":false,"func_code":"def maximum(liste):\n maxi = liste[0]\n for i in liste:\n if i >= maxi:\n maxi = i\n return maxi","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2813} {"submission_id":1767,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-14 22:04:25","correct":false,"func_code":"def maximum(liste):\n maxi = liste[0]\n for i in liste:\n if i >= maxi:\n maxi = i\n return maxi","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1767} {"submission_id":2873,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-14 22:14:45","correct":false,"func_code":"def maximum(liste):\n n = len(liste)\n maxi = liste[0]\n for i in range(1, n):\n if lise[i] >= maxi:\n maxi = liste[i]\n return maxi","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2873} {"submission_id":1054,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-14 22:14:55","correct":false,"func_code":"def maximum(liste):\n n = len(liste)\n maxi = liste[0]\n for i in range(1, n):\n if liste[i] >= maxi:\n maxi = liste[i]\n return maxi","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1054} {"submission_id":1178,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-14 22:21:30","correct":false,"func_code":"def maximum(liste):\n maxi = 0\n for i in range(1, len(liste)):\n if list[i] > res:\n res = list[i]\n return maxi","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1178} {"submission_id":3349,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-15 02:22:23","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_8","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":3349} {"submission_id":2266,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-15 02:44:23","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for x in range(1, n + 1):\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_8","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":2266} {"submission_id":609,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-15 02:44:49","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for x in range(1, n + 1):\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_8","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":609} {"submission_id":4239,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-16 02:08:14","correct":true,"func_code":"def somme(liste):\n res = 0\n for x in liste:\n res = res + x\n return res","user":"userdId_16","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4239} {"submission_id":3066,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-16 04:06:55","correct":false,"func_code":"def minimum(liste):\n res = liste[0]\n for i in liste:\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_18","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":3066} {"submission_id":4003,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-16 04:14:26","correct":false,"func_code":"def moyenne(liste):\n return None","user":"userdId_18","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4003} {"submission_id":817,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-16 04:15:19","correct":true,"func_code":"def minimum(liste):\n if liste == []:\n res = None\n else:\n res = min(liste)\n return res","user":"userdId_18","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":817} {"submission_id":3537,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-16 04:20:32","correct":false,"func_code":"def moyenne(liste):\n if liste == []:\n res = None\n else:\n res = 0\n cpt = 0\n for i in liste:\n res = res + liste[i]\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_18","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3537} {"submission_id":712,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-16 04:21:30","correct":true,"func_code":"def moyenne(liste):\n if liste == []:\n res = None\n else:\n res = 0\n cpt = 0\n for i in range(len(liste)):\n res = res + liste[i]\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_18","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":712} {"submission_id":1532,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-16 23:42:41","correct":false,"func_code":"def sommeNbPairs(liste):\n for i in range(len(liste)):\n if [i] % 2 == 0:\n res = res + [i]\n return res","user":"userdId_12","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1532} {"submission_id":1366,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-16 23:43:48","correct":false,"func_code":"def sommeNbPairs(liste):\n for elem in liste:\n if elem % 2 == 0:\n res = res + [i]\n return res","user":"userdId_12","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1366} {"submission_id":4242,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-16 23:43:54","correct":false,"func_code":"def sommeNbPairs(liste):\n for elem in liste:\n if elem % 2 == 0:\n res = res + [i]\n return res","user":"userdId_12","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4242} {"submission_id":1609,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-16 23:44:02","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for elem in liste:\n if elem % 2 == 0:\n res = res + [i]\n return res","user":"userdId_12","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1609} {"submission_id":1003,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-16 23:44:16","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for elem in liste:\n if elem % 2 == 0:\n res = res + elem\n return res","user":"userdId_12","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1003} {"submission_id":4814,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-17 00:02:06","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for i in range(0, n + 1, 1):\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_12","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":4814} {"submission_id":95,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 05:47:43","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":95} {"submission_id":4851,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 05:48:18","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4851} {"submission_id":5637,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 05:49:00","correct":false,"func_code":"def maximum(liste):\n res = 0\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5637} {"submission_id":2926,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 05:49:20","correct":false,"func_code":"def maximum(liste):\n res = 0\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2926} {"submission_id":45,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 05:49:44","correct":false,"func_code":"def maximum(liste):\n res = 0\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":45} {"submission_id":5357,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 05:50:01","correct":false,"func_code":"def maximum(liste):\n res = 0\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5357} {"submission_id":387,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-17 06:00:25","correct":false,"func_code":"def sommeNbPairs(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = 0\n for i in range(liste):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_11","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":387} {"submission_id":4280,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:00:54","correct":false,"func_code":"def maximum(liste):\n if len(liste == 0):\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4280} {"submission_id":5264,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-17 06:00:57","correct":false,"func_code":"def sommeNbPairs(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = 0\n for i in range(0, liste):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_11","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":5264} {"submission_id":1985,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:01:29","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1985} {"submission_id":1040,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:01:57","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1040} {"submission_id":4764,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-17 06:02:16","correct":false,"func_code":"def sommeNbPairs(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = 0\n for elem in liste:\n if elem % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_11","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4764} {"submission_id":1516,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-17 06:02:27","correct":true,"func_code":"def sommeNbPairs(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = 0\n for elem in liste:\n if elem % 2 == 0:\n res = res + elem\n return res","user":"userdId_11","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1516} {"submission_id":4424,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:03:33","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4424} {"submission_id":2889,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:11:19","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2889} {"submission_id":1252,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:14:13","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1252} {"submission_id":402,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:14:52","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":402} {"submission_id":4506,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:17:35","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4506} {"submission_id":3926,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:17:47","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = none\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3926} {"submission_id":814,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:18:01","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":814} {"submission_id":3465,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:23:28","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3465} {"submission_id":688,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:24:34","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = liste[0]\n for elem in liste:\n res = liste\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":688} {"submission_id":2643,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:25:16","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = liste[0]\n for elem in liste:\n res < liste\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2643} {"submission_id":3281,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:25:42","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = liste[0]\n for elem in liste:\n res > liste\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3281} {"submission_id":4182,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:25:56","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4182} {"submission_id":3857,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-17 06:27:25","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = liste[0]\n for elem in liste:\n res = elem\n return res","user":"userdId_22","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3857} {"submission_id":4319,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-21 06:01:02","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if x % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_9","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4319} {"submission_id":1808,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-21 06:02:02","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if x % 2 != 0:\n res = res + liste[i]\n return res","user":"userdId_9","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1808} {"submission_id":1821,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-21 06:02:30","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 != 0:\n res = res + liste[i]\n return res","user":"userdId_9","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1821} {"submission_id":3363,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-21 06:03:03","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if [i] % 2 != 0:\n res = res + liste[i]\n return res","user":"userdId_9","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":3363} {"submission_id":4463,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-21 06:03:50","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 != 0:\n res = res + liste[i]\n return res","user":"userdId_9","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4463} {"submission_id":4875,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-21 06:05:28","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if len(liste[i]) % 2 != 0:\n res = res + liste[i]\n return res","user":"userdId_9","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4875} {"submission_id":744,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-21 06:05:42","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if len(liste) % 2 != 0:\n res = res + liste[i]\n return res","user":"userdId_9","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":744} {"submission_id":4554,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-21 06:09:31","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 != 0:\n res = res + liste[i]\n return res","user":"userdId_9","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":4554} {"submission_id":1016,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-21 06:09:41","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_9","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":1016} {"submission_id":504,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-22 05:21:39","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_12","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":504} {"submission_id":4279,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 05:22:45","correct":false,"func_code":"def maximum(liste):\n maxi = liste[0]\n for elem in liste:\n if elem > maxi:\n maxi = elem\n return maxi","user":"userdId_12","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4279} {"submission_id":116,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 05:25:07","correct":false,"func_code":"def maximum(liste):\n maxi = liste[0]\n for i in range(liste):\n if liste[i] > maxi:\n maxi = elem\n return maxi","user":"userdId_12","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":116} {"submission_id":572,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 05:25:23","correct":false,"func_code":"def maximum(liste):\n maxi = liste[0]\n for i in range(len(liste)):\n if liste[i] > maxi:\n maxi = elem\n return maxi","user":"userdId_12","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":572} {"submission_id":5035,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 05:25:36","correct":false,"func_code":"def maximum(liste):\n maxi = liste[0]\n for i in range(len(liste)):\n if liste[i] > maxi:\n maxi = liste[i]\n return maxi","user":"userdId_12","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5035} {"submission_id":16,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 05:26:39","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n maxi = liste[0]\n for i in range(len(liste)):\n if liste[i] > maxi:\n maxi = liste[i]\n return maxi","user":"userdId_12","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":16} {"submission_id":2007,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 05:27:06","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_12","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2007} {"submission_id":4686,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-22 05:29:28","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_12","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4686} {"submission_id":2551,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-22 05:31:54","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n num = 0\n for i in range(len(liste)):\n num = num + liste[i]\n res = num \/ len(liste)\n return res","user":"userdId_12","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2551} {"submission_id":2137,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-22 07:19:23","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_16","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2137} {"submission_id":2159,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-22 07:22:19","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n return res + liste[i]","user":"userdId_16","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2159} {"submission_id":1979,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 07:27:02","correct":false,"func_code":"def maximum(liste):\n res = ''\n for i in range(len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_16","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1979} {"submission_id":2525,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 07:56:21","correct":false,"func_code":"def maximum(liste):\n if liste == ():\n res = none\n else:\n res = liste[0]\n for i in range(len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_16","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2525} {"submission_id":4972,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 07:57:50","correct":false,"func_code":"def maximum(liste):\n if liste == ():\n res = none\n else:\n res = liste[0]\n for i in range(len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_16","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4972} {"submission_id":2451,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 08:00:22","correct":false,"func_code":"def maximum(liste):\n if liste == ():\n res = none\n else:\n res = liste[0]\n for i in range(len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_16","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2451} {"submission_id":279,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 08:00:50","correct":false,"func_code":"def maximum(liste):\n if liste == ():\n res = none\n else:\n res = liste[1]\n for i in range(len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_16","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":279} {"submission_id":5670,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 08:05:29","correct":false,"func_code":"def maximum(liste):\n if liste == ():\n res = none\n else:\n res = liste[0]\n for i in range(len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_16","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5670} {"submission_id":4604,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-22 08:47:58","correct":false,"func_code":"def minimum(liste):\n if liste == ():\n res = none\n else:\n res = liste[0]\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_16","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4604} {"submission_id":2874,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-22 08:49:03","correct":false,"func_code":"def minimum(liste):\n if liste == ():\n res = none\n else:\n res = liste[0]\n for i in range(len(liste)):\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_16","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2874} {"submission_id":1737,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-22 09:03:46","correct":false,"func_code":"def moyenne(liste):\n if liste == ():\n res = none\n else:\n for i in range(len(liste)):\n x = res + liste[i]\n res = x \/ len(liste)\n return res","user":"userdId_16","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1737} {"submission_id":1847,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-22 09:04:11","correct":false,"func_code":"def moyenne(liste):\n if liste == ():\n res = none\n else:\n res = 0\n for i in range(len(liste)):\n x = res + liste[i]\n res = x \/ len(liste)\n return res","user":"userdId_16","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1847} {"submission_id":3517,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-22 09:12:11","correct":false,"func_code":"def moyenne(liste):\n if liste == ():\n res = none\n else:\n res = 0\n for i in range(len(liste)):\n x = res + liste[i]\n res = x \/ len(liste)\n return res","user":"userdId_16","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3517} {"submission_id":3890,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-22 09:13:36","correct":false,"func_code":"def moyenne(liste):\n if liste == ():\n res = none\n else:\n x = 0\n for i in range(len(liste)):\n x = x + liste[i]\n res = x \/ len(liste)\n return res","user":"userdId_16","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3890} {"submission_id":2054,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-22 09:19:06","correct":false,"func_code":"def moyenne(liste):\n if liste == ():\n res = none\n else:\n x = 0\n for i in range(len(liste)):\n x = x + liste[i]\n res = x \/ len(liste)\n return res","user":"userdId_16","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2054} {"submission_id":2715,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-22 09:23:04","correct":false,"func_code":"def moyenne(liste):\n if liste == ():\n res = none\n else:\n x = 0\n for i in range(len(liste)):\n x = x + liste[i]\n res = x \/ len(liste)\n return res","user":"userdId_16","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2715} {"submission_id":3158,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-22 09:24:13","correct":false,"func_code":"def moyenne(liste):\n if liste == ():\n res = none\n else:\n x = 0\n for i in range(len(liste)):\n x = x + liste[i]\n res = x \/ len(liste)\n return res","user":"userdId_16","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3158} {"submission_id":898,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-22 09:39:43","correct":false,"func_code":"def minimum(liste):\n if liste == ():\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_16","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":898} {"submission_id":345,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-22 10:33:19","correct":false,"func_code":"def moyenne(liste):\n if liste == ():\n res = none\n else:\n x = 0\n cpt = 0\n for i in range(len(liste)):\n cpt = cpt + 1\n x = x + liste[i]\n res = x \/ cpt\n return res","user":"userdId_16","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":345} {"submission_id":2639,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-22 10:48:03","correct":true,"func_code":"def moyenne(liste):\n if liste == []:\n res = None\n else:\n x = 0\n cpt = 0\n for i in liste:\n x = x + i\n cpt = cpt + 1\n res = x \/ cpt\n return res","user":"userdId_27","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2639} {"submission_id":3109,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-22 10:52:36","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in liste:\n res = res + i\n return res","user":"userdId_27","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3109} {"submission_id":4583,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 10:55:47","correct":true,"func_code":"def maximum(liste):\n if liste == []:\n max = None\n else:\n max = liste[0]\n for i in range(len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_27","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4583} {"submission_id":4088,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-22 11:02:48","correct":true,"func_code":"def minimum(liste):\n if liste == []:\n min = None\n else:\n min = liste[0]\n for i in range(len(liste)):\n if liste[i] < min:\n min = liste[i]\n return min","user":"userdId_27","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4088} {"submission_id":4051,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-22 11:39:09","correct":true,"func_code":"def somme(liste):\n res = 0\n for n in liste:\n res = res + n\n return res","user":"userdId_21","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4051} {"submission_id":4626,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 11:46:06","correct":false,"func_code":"def maximum(liste):\n max = l[0]\n for x in liste:\n if x > max:\n max = x\n return max","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4626} {"submission_id":3165,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 11:46:19","correct":false,"func_code":"def maximum(liste):\n max = l[1]\n for x in liste:\n if x > max:\n max = x\n return max","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3165} {"submission_id":1303,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 11:47:36","correct":false,"func_code":"def maximum(l):\n max = l[0]\n for x in l:\n if x > max:\n max = x\n return max","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1303} {"submission_id":2920,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 11:48:11","correct":false,"func_code":"def maximum(liste):\n max = liste[0]\n for x in liste:\n if x > max:\n max = x\n return max","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2920} {"submission_id":1332,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 11:56:21","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for x in liste:\n if x > res:\n res = x\n return res","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1332} {"submission_id":2167,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 11:56:33","correct":false,"func_code":"def maximum(liste):\n res = liste[1]\n for x in liste:\n if x > res:\n res = x\n return res","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2167} {"submission_id":1344,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 11:56:42","correct":false,"func_code":"def maximum(liste):\n for x in liste:\n if x > res:\n res = x\n return res","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1344} {"submission_id":2116,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 11:59:15","correct":false,"func_code":"def maximum(liste):\n res = l(0)\n for x in liste:\n if x > res:\n res = x\n return res","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2116} {"submission_id":5591,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:00:04","correct":false,"func_code":"def maximum(liste):\n res = l(1)\n for x in liste:\n if x > res:\n res = x\n return res","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5591} {"submission_id":1844,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:00:45","correct":false,"func_code":"def maximum(liste):\n res = 0\n for x in liste:\n if x > res:\n res = x\n return res","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1844} {"submission_id":5346,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:01:02","correct":false,"func_code":"def maximum(liste):\n res = []\n for x in liste:\n if x > res:\n res = x\n return res","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5346} {"submission_id":1759,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:04:13","correct":false,"func_code":"def maximum(liste):\n res = 0\n for i in range(1, len(liste)):\n if list[i] > res:\n res = list[i]\n return res","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1759} {"submission_id":5436,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:09:11","correct":false,"func_code":"def maximum(l):\n max = l[0]\n for i in range(0, len(l)):\n if l[i] > res:\n res = l[i]\n return res","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5436} {"submission_id":4793,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:09:58","correct":false,"func_code":"def maximum(liste):\n max = liste[0]\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = l[i]\n return max","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4793} {"submission_id":3539,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:10:19","correct":false,"func_code":"def maximum(liste):\n max = liste[0]\n for i in range(0, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3539} {"submission_id":5495,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:10:50","correct":false,"func_code":"def maximum(liste):\n max = liste[1]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5495} {"submission_id":823,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:11:13","correct":false,"func_code":"def maximum(liste):\n max = liste[1]\n for i in len(liste):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":823} {"submission_id":5135,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-22 12:26:41","correct":false,"func_code":"def minimum(liste):\n min = l[0]\n for i in liste:\n if i < min:\n min = i\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5135} {"submission_id":5621,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-22 12:27:03","correct":false,"func_code":"def minimum(liste):\n min = l[1]\n for i in liste:\n if i < min:\n min = i\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5621} {"submission_id":5595,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-22 12:27:16","correct":false,"func_code":"def minimum(liste):\n for i in liste:\n if i < min:\n min = i\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5595} {"submission_id":3558,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:30:34","correct":false,"func_code":"def maximum(liste):\n maxVal = liste[0]\n for i in range(0, len(liste)):\n if liste[i] > maxVal:\n maxVal = liste[i]\n return maxVal","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3558} {"submission_id":1402,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:30:44","correct":false,"func_code":"def maximum(liste):\n maxVal = liste[0]\n for i in range(0, len(liste)):\n if liste[i] > maxVal:\n maxVal = liste[i]\n return maxVal","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1402} {"submission_id":2918,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:32:18","correct":false,"func_code":"def maximum(liste):\n maxVal = liste[0]\n for i in range(0, len(liste) + 1):\n if liste[i] > maxVal:\n maxVal = liste[i]\n return maxVal","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2918} {"submission_id":4635,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:38:29","correct":false,"func_code":"def maximum(liste):\n max = l[0]\n for i in range(0, len(liste)):\n if max < l[0]:\n max = l[0]\n return max","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4635} {"submission_id":720,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:45:09","correct":false,"func_code":"def maximum(liste):\n max = l[0]\n for i in range(0, len(liste)):\n if max < i:\n max = i\n return max","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":720} {"submission_id":3625,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-22 12:45:33","correct":false,"func_code":"def maximum(liste):\n res = l[0]\n for i in range(0, len(liste)):\n if res < i:\n res = i\n return res","user":"userdId_21","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3625} {"submission_id":3041,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-22 14:27:47","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for n in range(1, n + 1):\n if n % 2 == 0:\n res = res + 1\n return res","user":"userdId_21","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":3041} {"submission_id":1686,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-22 14:28:38","correct":true,"func_code":"def sommeNPremiersEntiersPairs(n):\n res = 0\n for n in range(1, n + 1):\n if n % 2 == 0:\n res = res + n\n return res","user":"userdId_21","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":1686} {"submission_id":5327,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-22 23:07:11","correct":true,"func_code":"def sommeNbPairs(liste):\n res = 0\n for n in liste:\n if n % 2 == 0:\n res += n\n return res","user":"userdId_36","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":5327} {"submission_id":897,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-22 23:20:35","correct":true,"func_code":"def somme(liste):\n res = 0\n for element in liste:\n res = res + element\n return res","user":"userdId_34","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":897} {"submission_id":4265,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-22 23:42:18","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = none\n else:\n x = 0\n cpt = 0\n for i in range(len(liste)):\n cpt = cpt + 1\n x = x + liste[i]\n res = x \/ cpt\n return res","user":"userdId_16","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4265} {"submission_id":3495,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-22 23:42:59","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n x = 0\n cpt = 0\n for i in range(len(liste)):\n cpt = cpt + 1\n x = x + liste[i]\n res = x \/ cpt\n return res","user":"userdId_16","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3495} {"submission_id":5023,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-22 23:43:42","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(len(liste)):\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_16","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5023} {"submission_id":3356,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-23 00:07:56","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n return None\n min = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < min:\n min = liste[i]\n return min","user":"userdId_34","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":3356} {"submission_id":4234,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-23 00:08:05","correct":false,"func_code":"def somme(liste):\n res = 0\n for x in range(liste):\n res += x\n return res","user":"userdId_8","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4234} {"submission_id":1962,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-23 00:10:34","correct":false,"func_code":"def somme(liste):\n res = 0\n for x in range[liste]:\n res += x\n return res","user":"userdId_8","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1962} {"submission_id":4010,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-23 00:10:49","correct":false,"func_code":"def somme(liste):\n res = 0\n for x in range([liste]):\n res += x\n return res","user":"userdId_8","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4010} {"submission_id":1168,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-23 00:11:24","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res += liste[i]\n return res","user":"userdId_8","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1168} {"submission_id":888,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:22:08","correct":false,"func_code":"def maximum(liste):\n if len(list) == 0:\n res = None\n res = []\n for i in range(len(liste)):\n if liste[i + 1] > liste[i]:\n res = liste[i + 1]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":888} {"submission_id":1702,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:22:19","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n res = []\n for i in range(len(liste)):\n if liste[i + 1] > liste[i]:\n res = liste[i + 1]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1702} {"submission_id":3190,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:22:40","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n res = []\n for i in range(len(liste)):\n if liste[i] + 1 > liste[i]:\n res = liste[i] + 1\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3190} {"submission_id":965,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:28:03","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = []\n for i in range(len(liste)):\n if liste[i] + 1 > liste[i]:\n res = liste[i] + 1\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":965} {"submission_id":1443,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:30:04","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = []\n for i in range(len(liste)):\n if liste[i + 1] > liste[i]:\n res = liste[i + 1]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1443} {"submission_id":4365,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:30:54","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = []\n for i in range(len(liste)):\n if liste[1 + i] > liste[i]:\n res = liste[1 + i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4365} {"submission_id":375,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:34:16","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = []\n for i in range(len(liste)):\n if len(liste + 1) > len(liste):\n res = len(liste + 1)\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":375} {"submission_id":413,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:34:55","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = []\n for i in range(len(liste)):\n if len(liste) + 1 > len(liste):\n res = len(liste + 1)\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":413} {"submission_id":4099,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:37:24","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n res = res < liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4099} {"submission_id":1625,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:37:54","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n for i in range(len(liste)):\n res = res < liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1625} {"submission_id":5362,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:38:19","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = []\n for i in range(len(liste)):\n res = liste[i] > res\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5362} {"submission_id":3826,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:38:26","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = []\n for i in range(len(liste)):\n res = liste[i] > res\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3826} {"submission_id":1515,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:39:49","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = []\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1515} {"submission_id":2858,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:40:15","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = []\n for i in range(len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2858} {"submission_id":933,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:41:26","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = []\n for i in range(len(liste)):\n res = liste[i] > res\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":933} {"submission_id":5183,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-23 00:43:44","correct":true,"func_code":"def sommeNbPairs(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = 0\n for i in range(len(liste)):\n if liste[i] % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_11","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":5183} {"submission_id":4973,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-23 00:51:48","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_24","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4973} {"submission_id":1848,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:52:54","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1848} {"submission_id":2113,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 00:54:34","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range(liste):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2113} {"submission_id":3096,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-23 00:55:08","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n if n < 0:\n res = 0\n else:\n for x in range(n):\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_11","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":3096} {"submission_id":2021,"exercise_name":"3030dc079e6607c253e89e8ef4784b74","date":"2020-03-23 00:55:33","correct":false,"func_code":"def sommeNPremiersEntiersPairs(n):\n if n < 0:\n res = 0\n else:\n res = 0\n for x in range(n):\n if x % 2 == 0:\n res = res + x\n return res","user":"userdId_11","func_name":"sommeNPremiersEntiersPairs","assignment_id":"sum_n_first_even","test":"assert sommeNPremiersEntiersPairs(1)==0 and sommeNPremiersEntiersPairs(3)==2 and sommeNPremiersEntiersPairs(5)==6 and sommeNPremiersEntiersPairs(-2)==0 and sommeNPremiersEntiersPairs(0)==0 and sommeNPremiersEntiersPairs(10)==30 and sommeNPremiersEntiersPairs(124)==3906 and sommeNPremiersEntiersPairs(-5)==0","description":"Returns the sum of the n first even numbers.","__index_level_0__":2021} {"submission_id":2426,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 01:15:03","correct":false,"func_code":"def maximum(liste):\n if len(liste) == 0:\n max = None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return res","user":"userdId_34","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2426} {"submission_id":5315,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 01:15:18","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n max = None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_34","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":5315} {"submission_id":1330,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-23 01:19:17","correct":true,"func_code":"def moyenne(liste):\n res = 0\n compteur = 0\n for element in liste:\n res = res + element\n compteur = compteur + 1\n if compteur == 0:\n res = None\n else:\n res = res \/ compteur\n return res","user":"userdId_34","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1330} {"submission_id":4090,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-23 01:20:11","correct":false,"func_code":"def moyenne(liste):\n if liste == []:\n res = None\n else:\n x = 0\n cpt = 0\n for i in liste:\n x = x + i\n cpt = cpt + 1\n res = x \/ cpt\n return res","user":"userdId_10","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4090} {"submission_id":1044,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-23 01:21:53","correct":false,"func_code":"def moyenne(liste):\n if liste == []:\n res = None\n else:\n x = 0\n cpt = 0\n for i in range(len(liste)):\n x = x + i\n cpt = cpt + 1\n res = x \/ cpt\n return res","user":"userdId_10","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1044} {"submission_id":4639,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-23 01:55:55","correct":false,"func_code":"def minimum(liste):\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_24","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4639} {"submission_id":3370,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 01:56:55","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3370} {"submission_id":2589,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 01:57:20","correct":false,"func_code":"def maximum(liste):\n res = l[0]\n for i in range(len(liste)):\n if l[i] > res:\n res = l[i]\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2589} {"submission_id":1577,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-23 01:57:37","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_24","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1577} {"submission_id":2945,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-23 02:01:40","correct":false,"func_code":"def minimum(liste):\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_24","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2945} {"submission_id":2200,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-23 02:01:58","correct":false,"func_code":"def minimum(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_24","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2200} {"submission_id":2459,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-23 02:02:16","correct":false,"func_code":"def minimum(liste):\n res = 0\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_24","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2459} {"submission_id":1103,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-23 02:02:52","correct":false,"func_code":"def minimum(liste):\n res = 1000\n for i in range(len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_24","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1103} {"submission_id":3098,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-23 02:12:21","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if i % 2 == 0:\n res = res + liste[i]\n return res","user":"userdId_24","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":3098} {"submission_id":2784,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-23 02:13:00","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if i % 2 == 0:\n res = res + [i]\n return res","user":"userdId_24","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":2784} {"submission_id":950,"exercise_name":"863be7d2bf89c7261781b8b75d109451","date":"2020-03-23 02:13:09","correct":false,"func_code":"def sommeNbPairs(liste):\n res = 0\n for i in range(len(liste)):\n if i % 2 == 0:\n res = res + i\n return res","user":"userdId_24","func_name":"sommeNbPairs","assignment_id":"sum_even_numbers","test":"assert sommeNbPairs([12, 13, 6, 5, 7])==18 and sommeNbPairs([])==0 and sommeNbPairs([13, 15, -3, 711])==0 and sommeNbPairs([1224, -728])==496 and sommeNbPairs([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999])==249500","description":"Return the sum of the even numbers in a list.","__index_level_0__":950} {"submission_id":3726,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-03-28 11:45:35","correct":true,"func_code":"def somme(liste):\n if len(liste) == 0:\n res = 0\n else:\n res = 0\n for elem in liste:\n res = res + elem\n return res","user":"userdId_11","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3726} {"submission_id":165,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-28 11:48:21","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n max = None\n else:\n max = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > max:\n max = liste[i]\n return max","user":"userdId_11","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":165} {"submission_id":3568,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-03-28 11:52:47","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n min = None\n else:\n min = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < min:\n min = liste[i]\n return min","user":"userdId_11","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":3568} {"submission_id":1478,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-30 21:59:31","correct":false,"func_code":"def listeSymetrique(l):\n i = 0\n while i < len(l):\n if l[i] != l[-(1 + i)]:\n return False\n return True","user":"userdId_6","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":1478} {"submission_id":848,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-30 21:59:54","correct":false,"func_code":"def listeSymetrique(l):\n i = 0\n while i < len(l):\n if l[i] != l[-(1 + i)]:\n return False\n i += 1\n return True","user":"userdId_6","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":848} {"submission_id":3021,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-30 22:00:00","correct":true,"func_code":"def listeSymetrique(l):\n i = 0\n while i < len(l):\n if l[i] != l[-(1 + i)]:\n return False\n i += 1\n return True","user":"userdId_6","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":3021} {"submission_id":3515,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-30 22:42:49","correct":false,"func_code":"def listeSymetrique(l):\n A = False\n l2 = []\n flag = A\n i = 0\n while flag == A and i < len(l) - 1:\n if l[i] < l[i + 1]:\n l2.append(l[i])\n l2.append(l[i + 1])\n i = +2\n else:\n l2.reverse()\n flag = True\n print(l[i + 1:], l2)\n if l[i + 1:] == l2:\n res = True\n else:\n res = A\n return res","user":"userdId_4","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":3515} {"submission_id":4801,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-30 22:51:01","correct":true,"func_code":"def listeSymetrique(l):\n i = 0\n n = 0\n while i < len(l) and n == 0:\n if l[i] == l[len(l) - i - 1]:\n i = i + 1\n n = 0\n else:\n n = 1\n if n == 0:\n res = True\n else:\n res = False\n return res","user":"userdId_19","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":4801} {"submission_id":4977,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-30 23:12:19","correct":false,"func_code":"def listeSymetrique(l):\n A = False\n l2 = []\n flag = A\n i = 0\n while flag == A and i < len(l) - 1:\n if l[i] < l[i + 1] and l[i] >= 0:\n l2.append(l[i])\n l2.append(l[i + 1])\n i = +2\n elif l[i] > l[i + 1] and l[i] < 0:\n l2.append(l[i])\n l2.append(l[i + 1])\n i = +2\n else:\n l2.reverse()\n flag = True\n print(l[i + 1:], l2)\n if l[i + 1:] == l2:\n res = True\n else:\n res = A\n return res","user":"userdId_4","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":4977} {"submission_id":1728,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 00:23:48","correct":false,"func_code":"def listeSymetrique(l):\n A = False\n trouve = A\n i = 0\n j = -1\n while i < len(l) and j <= -len(l):\n if l(i) == l(j):\n trouve = True\n else:\n trouve = A\n i = i + 1\n j = j - 1\n return trouve","user":"userdId_28","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":1728} {"submission_id":4020,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 00:24:40","correct":false,"func_code":"def listeSymetrique(l):\n trouve = False\n i = 0\n j = -1\n while i < len(l) and j <= -len(l):\n if l(i) == l(j):\n trouve = True\n i = i + 1\n j = j - 1\n return trouve","user":"userdId_28","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":4020} {"submission_id":5501,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 00:25:44","correct":false,"func_code":"def listeSymetrique(l):\n trouve = True\n i = 0\n j = -1\n while i < len(l) and j <= -len(l):\n if l(i) != l(j):\n trouve = False\n i = i + 1\n j = j - 1\n return trouve","user":"userdId_28","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":5501} {"submission_id":1201,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 00:26:24","correct":false,"func_code":"def listeSymetrique(l):\n trouve = True\n i = 0\n j = -1\n while i < len(l) and j <= -len(l) and trouve == True:\n if l(i) != l(j):\n trouve = False\n i = i + 1\n j = j - 1\n return trouve","user":"userdId_28","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":1201} {"submission_id":735,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 00:34:52","correct":false,"func_code":"def listeSymetrique(l):\n A = True\n trouve = A\n i = 0\n j = -1\n while i < len(l) and j <= -len(l) and trouve == A:\n if l(i) != l(j):\n trouve = False\n else:\n trouve = A\n i = i + 1\n j = j - 1\n return trouve","user":"userdId_28","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":735} {"submission_id":3406,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 00:36:03","correct":false,"func_code":"def listeSymetrique(l):\n trouve = True\n i = 0\n j = -1\n while i < len(l) and j <= -len(l) and trouve == True:\n if l[i] != l[j]:\n trouve = False\n i = i + 1\n j = j - 1\n return trouve","user":"userdId_28","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":3406} {"submission_id":3431,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 00:36:13","correct":false,"func_code":"def listeSymetrique(l):\n trouve = True\n i = 0\n j = -1\n while i < len(l) and j <= -len(l) and trouve == True:\n if l[i] != l[j]:\n trouve = False\n i = i + 1\n j = j - 1\n return trouve","user":"userdId_28","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":3431} {"submission_id":506,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-31 00:45:27","correct":false,"func_code":"def moyenne(liste):\n somme = 0\n cpt = 0\n for elem in liste:\n somme = somme + elem\n cpt = cpt + 1\n res = somme \/ cpt\n return res","user":"userdId_10","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":506} {"submission_id":4524,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 00:52:20","correct":false,"func_code":"def listeSymetrique(l):\n l2 = l[int(len(l) \/ 2):]\n l2.reverse()\n l = l[:int(len(l) \/ 2) + 1]\n res = False\n if l == l2:\n res = True\n return res","user":"userdId_4","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":4524} {"submission_id":4625,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 00:57:11","correct":false,"func_code":"def listeSymetrique(l):\n l2 = l[int(len(l) \/ 2):]\n l2.reverse()\n l = l[:int(len(l) \/ 2) + 1]\n res = True\n if l != l2:\n res = False\n return res","user":"userdId_4","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":4625} {"submission_id":3442,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 01:03:21","correct":true,"func_code":"def listeSymetrique(l):\n l2 = l[int(len(l) \/ 2):]\n l2.reverse()\n if len(l) % 2 == 0:\n l = l[:int(len(l) \/ 2)]\n else:\n l = l[:int(len(l) \/ 2) + 1]\n res = True\n print(l, l2)\n if l != l2:\n res = False\n return res","user":"userdId_4","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":3442} {"submission_id":2229,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 01:09:54","correct":true,"func_code":"def listeSymetrique(l):\n i = 0\n res = True\n while res == True and i < len(l) - 1:\n i += 1\n if l[i] != l[len(l) - i - 1]:\n res = False\n return res","user":"userdId_4","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2229} {"submission_id":586,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 01:10:57","correct":false,"func_code":"def listeSymetrique(l):\n trouve = True\n i = 0\n j = -1\n while i < len(l) and j <= -len(l) and trouve == True:\n if l[i] != l[j]:\n trouve = False\n i = i + 1\n j = j - 1\n return trouve","user":"userdId_28","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":586} {"submission_id":2023,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 01:59:58","correct":true,"func_code":"def listeSymetrique(l):\n trouve = True\n i = 0\n j = -1\n while i < len(l) and j >= -len(l) and trouve == True:\n if l[i] != l[j]:\n trouve = False\n i = i + 1\n j = j - 1\n return trouve","user":"userdId_28","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2023} {"submission_id":1693,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 04:09:35","correct":true,"func_code":"def listeSymetrique(liste):\n res = True\n i = 0\n while i < len(liste) \/\/ 2:\n if liste[i] != liste[len(liste) - 1 - i]:\n res = False\n i = i + 1\n return res","user":"userdId_52","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":1693} {"submission_id":5618,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 04:20:13","correct":true,"func_code":"def listeSymetrique(l):\n res = True\n i = 0\n while i < len(l) and res == True:\n if l[i] != l[len(l) - i - 1]:\n res = False\n i = i + 1\n return res","user":"userdId_17","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":5618} {"submission_id":702,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 04:23:17","correct":true,"func_code":"def listeSymetrique(l):\n res = True\n i = 0\n j = -1\n while i < len(l) and j < len(l):\n if l[i] == l[j]:\n i = i + 1\n j = j - 1\n else:\n res = False\n i = i + 1\n j = j + 1\n return res","user":"userdId_7","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":702} {"submission_id":2391,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 04:25:02","correct":true,"func_code":"def listeSymetrique(l):\n res = True\n i = 0\n j = len(l) - 1\n while i < len(l) and j < len(l):\n if l[i] != l[j]:\n res = False\n i += 1\n j -= 1\n return res","user":"userdId_27","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2391} {"submission_id":673,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 04:29:48","correct":true,"func_code":"def listeSymetrique(l):\n if l == []:\n ok = True\n else:\n ok = True\n i = 0\n while i < len(l) and ok:\n if l[i] != l[-i - 1]:\n ok = False\n i += 1\n return ok","user":"userdId_18","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":673} {"submission_id":2322,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:02:43","correct":false,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n while i < len(l) and ok:\n if l[i] != l[-i]:\n ok = False\n i += 1\n return res","user":"userdId_13","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2322} {"submission_id":3449,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:03:09","correct":false,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n while i < len(l) and ok:\n if l[i] != l[-i]:\n ok = False\n i += 1\n return ok","user":"userdId_13","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":3449} {"submission_id":92,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:03:17","correct":true,"func_code":"def listeSymetrique(l):\n trouve = True\n i = 0\n j = len(l) - 1\n while i < len(l) and j < len(l) and trouve:\n if l[i] != l[j]:\n trouve = False\n i += 1\n j -= 1\n return trouve","user":"userdId_27","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":92} {"submission_id":3649,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:03:42","correct":true,"func_code":"def listeSymetrique(l):\n res = True\n i = 0\n j = -1\n while i < len(l) and j < len(l) and res == True:\n if l[i] == l[j]:\n i = i + 1\n j = j - 1\n else:\n res = False\n return res","user":"userdId_7","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":3649} {"submission_id":4253,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:04:25","correct":true,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n while i < len(l) and ok:\n if l[i] != l[-i - 1]:\n ok = False\n else:\n ok = True\n i += 1\n return ok","user":"userdId_13","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":4253} {"submission_id":2862,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:06:14","correct":true,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n while i < len(l) and ok:\n if l[i] != l[-i - 1]:\n ok = False\n i += 1\n return ok","user":"userdId_13","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2862} {"submission_id":5644,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:09:53","correct":true,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n j = len(l) - 1\n while i < j and ok:\n if l[i] != l[j]:\n ok = False\n i += 1\n j -= 1\n return ok","user":"userdId_21","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":5644} {"submission_id":1267,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:12:29","correct":false,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n while i < len(l) and ok:\n if l[i] != l[i - 1]:\n ok = False\n i = i + 1\n return res","user":"userdId_9","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":1267} {"submission_id":2104,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:12:39","correct":false,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n while i < len(l) and ok:\n if l[i] != l[i - 1]:\n ok = False\n i = i + 1\n return res","user":"userdId_9","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2104} {"submission_id":4421,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:13:04","correct":false,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n while i < len(l) and ok:\n if l[i] != l[i - 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_9","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":4421} {"submission_id":1874,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:13:34","correct":false,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n while i < len(l) and ok:\n if l[i] != l[i - 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_9","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":1874} {"submission_id":5114,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:13:37","correct":true,"func_code":"def listeSymetrique(l):\n res = True\n i = 0\n while i < len(l) and res:\n if l[i] != l[-i - 1]:\n res = False\n i += 1\n return res","user":"userdId_8","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":5114} {"submission_id":2328,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:14:12","correct":false,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n while i < len(l) and ok:\n if l[i] != l[i - 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_9","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2328} {"submission_id":2765,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:17:36","correct":false,"func_code":"def listeSymetrique(l):\n i = 0\n ok = True\n while i < len(l) and ok:\n if l[i] != l[i - 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_9","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2765} {"submission_id":28,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 05:19:51","correct":true,"func_code":"def listeSymetrique(l):\n i = 0\n ok = True\n while i < len(l) \/\/ 2 and ok:\n if l[i] != l[-i - 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_9","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":28} {"submission_id":2614,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-03-31 05:28:37","correct":true,"func_code":"def maximum(liste):\n if liste == []:\n res = None\n else:\n res = max(liste)\n return res","user":"userdId_18","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2614} {"submission_id":2749,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-03-31 06:24:03","correct":true,"func_code":"def listeSymetrique(l):\n A = False\n trouve = True\n i = 0\n j = -1\n while i < len(l) and j >= -len(l) and trouve != A:\n if l[i] != l[j]:\n trouve = A\n i = i + 1\n j = j - 1\n return trouve","user":"userdId_28","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2749} {"submission_id":1845,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-31 07:41:23","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n return res \/ cpt","user":"userdId_11","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1845} {"submission_id":5613,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-31 07:41:39","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n return res \/ cpt","user":"userdId_11","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5613} {"submission_id":5480,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-31 07:42:24","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n moy = res \/ cpt\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n return moy","user":"userdId_11","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5480} {"submission_id":4632,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-31 07:42:43","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n moy = res \/ cpt\n return moy","user":"userdId_11","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4632} {"submission_id":2385,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-31 07:42:58","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n moy = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n moy = res \/ cpt\n return moy","user":"userdId_11","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2385} {"submission_id":4641,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-03-31 07:46:59","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for elem in liste:\n res = res + elem\n cpt = cpt + 1\n res = res \/ cpt\n return res","user":"userdId_11","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4641} {"submission_id":4013,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:13:49","correct":false,"func_code":"def listeSymetrique(l):\n i = 0\n n = 0\n while i < len(l \/ 2) and n == 0:\n if l[i] == l[len(l) - i - 1]:\n i = i + 1\n n = 0\n else:\n n = 1\n if n == 0:\n res = True\n else:\n res = False\n return res","user":"userdId_19","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":4013} {"submission_id":5022,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:14:06","correct":true,"func_code":"def listeSymetrique(l):\n i = 0\n n = 0\n while i < len(l) \/ 2 and n == 0:\n if l[i] == l[len(l) - i - 1]:\n i = i + 1\n n = 0\n else:\n n = 1\n if n == 0:\n res = True\n else:\n res = False\n return res","user":"userdId_19","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":5022} {"submission_id":887,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:21:30","correct":true,"func_code":"def listeSymetrique(l):\n i = 0\n j = -1\n res = True\n while i < len(l) \/ 2 and j < len(l) \/ 2 and res == True:\n if l[i] != l[j]:\n res = False\n i = i + 1\n j = j - 1\n return res","user":"userdId_12","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":887} {"submission_id":2001,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:28:51","correct":false,"func_code":"def listeSymetrique(l):\n i = 0\n ok = True\n while i < len(liste) and ok:\n if liste[i] != liste[-(i + 1)]:\n ok = False\n i = i + 1\n return ok","user":"userdId_1","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2001} {"submission_id":306,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:29:21","correct":true,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n while i < len(l) and ok:\n if l[i] != l[-i - 1]:\n ok = False\n i += 1\n return ok","user":"userdId_34","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":306} {"submission_id":4522,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:29:24","correct":true,"func_code":"def listeSymetrique(l):\n i = 0\n ok = True\n while i < len(l) and ok:\n if l[i] != l[-(i + 1)]:\n ok = False\n i = i + 1\n return ok","user":"userdId_1","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":4522} {"submission_id":3367,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:31:26","correct":true,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n while i < len(l) and ok:\n if l[i] != l[-1 - i]:\n ok = False\n i += 1\n return ok","user":"userdId_30","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":3367} {"submission_id":2220,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:32:07","correct":false,"func_code":"def listeSymetrique(l):\n i = 0\n j = -1\n res = True\n while i < len(l) \/ 2 and j > -len(l) \/ 2 and res == True:\n if l[i] != l[j]:\n res = False\n i = i + 1\n j = j - 1\n return res","user":"userdId_12","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2220} {"submission_id":4311,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:32:21","correct":false,"func_code":"def listeSymetrique(l):\n i = 0\n j = -1\n res = True\n while i < len(l) \/ 2 and j < -len(l) \/ 2 and res == True:\n if l[i] != l[j]:\n res = False\n i = i + 1\n j = j - 1\n return res","user":"userdId_12","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":4311} {"submission_id":192,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:32:35","correct":false,"func_code":"def listeSymetrique(l):\n i = 0\n j = -1\n res = True\n while i < len(l) \/ 2 and j > -len(l) \/ 2 and res == True:\n if l[i] != l[j]:\n res = False\n i = i + 1\n j = j - 1\n return res","user":"userdId_12","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":192} {"submission_id":2959,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:32:46","correct":true,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n j = -1\n while i < len(l) \/ 2 and ok:\n if l[i] != l[j]:\n ok = False\n i += 1\n j -= 1\n return ok","user":"userdId_15","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2959} {"submission_id":2896,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:33:00","correct":false,"func_code":"def listeSymetrique(l):\n i = 0\n j = -1\n ok = True\n while i < len(l) \/ 2 and j > -len(l) \/ 2 and ok:\n if l[i] != l[j]:\n ok = False\n i = i + 1\n j = j - 1\n return ok","user":"userdId_12","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2896} {"submission_id":4243,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:34:41","correct":true,"func_code":"def listeSymetrique(l):\n i = 0\n j = -1\n ok = True\n while i < len(l) \/ 2 and ok:\n if l[i] != l[j]:\n ok = False\n i = i + 1\n j = j - 1\n return ok","user":"userdId_12","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":4243} {"submission_id":1257,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:42:19","correct":false,"func_code":"def listeSymetrique(l):\n i = 0\n ok = True\n while i < len(liste) and ok == True:\n if liste[i] != liste[-i - 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_5","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":1257} {"submission_id":3615,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:42:38","correct":true,"func_code":"def listeSymetrique(liste):\n i = 0\n ok = True\n while i < len(liste) and ok == True:\n if liste[i] != liste[-i - 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_5","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":3615} {"submission_id":236,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:50:52","correct":false,"func_code":"def listeSymetrique(l):\n i = 0\n ok = True\n while i < len(l) and ok:\n if l[i] != l[-i - 1]:\n ok = False\n return ok","user":"userdId_43","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":236} {"submission_id":290,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:59:11","correct":false,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n while i < len(liste) \/ 2 and ok:\n if l[i] != l[-1 - i]:\n ok = False\n i = i + 1\n return ok","user":"userdId_14","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":290} {"submission_id":3040,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-02 23:59:50","correct":true,"func_code":"def listeSymetrique(l):\n ok = True\n i = 0\n while i < len(l) \/ 2 and ok:\n if l[i] != l[-1 - i]:\n ok = False\n i = i + 1\n return ok","user":"userdId_14","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":3040} {"submission_id":2232,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-03 00:02:46","correct":true,"func_code":"def listeSymetrique(l):\n res = True\n i = 0\n while i < len(l) \/ 2 and res == True:\n if l[i] != l[len(l) - i - 1]:\n res = False\n i = i + 1\n return res","user":"userdId_17","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2232} {"submission_id":2595,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-03 00:35:35","correct":false,"func_code":"def listeSymetrique(l):\n i = 0\n ok = True\n while i < len(l) \/ 2 and ok:\n if l[i] != l[1 - i]:\n ok = False\n i = i + 1\n return ok","user":"userdId_12","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":2595} {"submission_id":4022,"exercise_name":"8eb27aeda471a467e2223abebeca886e","date":"2020-04-03 00:36:00","correct":true,"func_code":"def listeSymetrique(l):\n i = 0\n ok = True\n while i < len(l) \/ 2 and ok:\n if l[i] != l[-1 - i]:\n ok = False\n i = i + 1\n return ok","user":"userdId_12","func_name":"listeSymetrique","assignment_id":"symetrical_list","test":"assert listeSymetrique([1, 2, 3, 2, 1])==True and listeSymetrique([1, 2, 3, 1])==False and listeSymetrique([])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 1, 4, 198, 7, -65, 90, -2, -2, 90, -65, 7, 198, 4, 1, 8])==True and listeSymetrique([8, 3, -2, 1, 8])==False and listeSymetrique([8, 3, -2, -2, 1, 8])==False","description":"Check whether a list is symmetrical.","__index_level_0__":4022} {"submission_id":3971,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-04-05 03:03:51","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res += elem\n return res","user":"userdId_26","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3971} {"submission_id":253,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-04-05 03:28:09","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste) - 1):\n if res <= liste[i]:\n res = liste[i]\n return res","user":"userdId_26","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":253} {"submission_id":2225,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-05 03:33:11","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste) - 1):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_26","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2225} {"submission_id":4136,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-05 03:33:50","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste) - 1):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_26","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4136} {"submission_id":3599,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-05 03:34:09","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste) - 1):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_26","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":3599} {"submission_id":1690,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-05 03:34:51","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste) - 1):\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_26","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1690} {"submission_id":5111,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-05 03:35:21","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste) - 1):\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_26","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5111} {"submission_id":388,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-05 03:35:41","correct":false,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste) - 1):\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_26","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":388} {"submission_id":5659,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-05 03:35:57","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_26","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5659} {"submission_id":4317,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 03:38:45","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4317} {"submission_id":51,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 03:38:58","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":51} {"submission_id":3150,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 03:39:17","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3150} {"submission_id":247,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 03:39:40","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":247} {"submission_id":3137,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 03:39:49","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3137} {"submission_id":494,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 03:39:59","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":494} {"submission_id":2760,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 03:42:53","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2760} {"submission_id":320,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 03:43:41","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":320} {"submission_id":1279,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 03:48:36","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1279} {"submission_id":4494,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 03:48:53","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n return res\n else:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4494} {"submission_id":3386,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 03:48:57","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n return res\n else:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3386} {"submission_id":593,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 03:49:09","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n return res\n else:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":593} {"submission_id":2552,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 04:15:12","correct":false,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2552} {"submission_id":5136,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 04:15:53","correct":false,"func_code":"def moyenne(liste):\n if len(liste) != 0:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n else:\n res = None\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5136} {"submission_id":3573,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 04:15:56","correct":false,"func_code":"def moyenne(liste):\n if len(liste) != 0:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n else:\n res = None\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3573} {"submission_id":1765,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 04:16:06","correct":false,"func_code":"def moyenne(liste):\n if len(liste) != 0:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n else:\n res = None\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1765} {"submission_id":5167,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 04:16:13","correct":false,"func_code":"def moyenne(liste):\n if len(liste) != 0:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n else:\n res = None\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5167} {"submission_id":4596,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 04:16:24","correct":false,"func_code":"def moyenne(liste):\n if len(liste) != 0:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n else:\n res = 0\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4596} {"submission_id":597,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 04:16:49","correct":false,"func_code":"def moyenne(liste):\n if len(liste) != 0:\n s = 0\n for elem in liste:\n s += elem\n res = s \/\/ len(liste)\n else:\n res = None\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":597} {"submission_id":5347,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-05 04:49:38","correct":true,"func_code":"def moyenne(liste):\n if len(liste) != 0:\n s = 0\n for elem in liste:\n s += elem\n res = s \/ len(liste)\n else:\n res = None\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":5347} {"submission_id":4698,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-05 08:45:46","correct":true,"func_code":"def motPalindrome(mot):\n if mot == '':\n ok = True\n else:\n ok = True\n i = 0\n while i < len(mot) and ok:\n if mot[i] != mot[-i - 1]:\n ok = False\n i += 1\n return ok","user":"userdId_18","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4698} {"submission_id":2363,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-05 09:16:11","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n while i < len(mot) \/\/ 2 and ok:\n if mot[i] != mot[-i - 1]:\n ok = False\n i += 1\n return ok","user":"userdId_38","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2363} {"submission_id":1292,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-05 09:22:38","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n while i < len(mot) and ok:\n ok = mot[i] == mot[-1 - i]\n i += 1\n return ok","user":"userdId_12","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":1292} {"submission_id":2672,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-05 10:05:21","correct":true,"func_code":"def motPalindrome(mot):\n res = True\n i = 0\n while i < int(len(mot) \/ 2) and res:\n if mot[i] != mot[-1 - i]:\n res = False\n i += 1\n return res","user":"userdId_4","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2672} {"submission_id":74,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-05 11:55:52","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < j and ok:\n if mot[i] != mot[j]:\n ok = False\n i = i + 1\n j = j - 1\n return ok","user":"userdId_1","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":74} {"submission_id":2763,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-05 12:11:52","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < j and ok:\n if mot[i] != mot[j]:\n ok = False\n i += 1\n j -= 1\n return ok","user":"userdId_34","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2763} {"submission_id":5575,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-05 12:16:11","correct":true,"func_code":"def motPalindrome(mot):\n res = True\n i = 0\n while i < int(len(mot) \/ 2) and res:\n if mot[i] != mot[-1 - i]:\n res = False\n i += 1\n return res","user":"userdId_4","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":5575} {"submission_id":1852,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-05 22:55:44","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < j and ok:\n if mot[i] != mot[j]:\n ok = False\n i += 1\n j -= 1\n return ok","user":"userdId_15","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":1852} {"submission_id":4419,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 01:11:06","correct":true,"func_code":"def motPalindrome(mot):\n B = True\n A = False\n flag = 0\n trouve = A\n if mot == '':\n res = B\n else:\n while flag <= len(mot) \/\/ 2 and not trouve:\n if mot[flag] == mot[-flag - 1]:\n flag += 1\n else:\n trouve = B\n res = A\n if trouve == A:\n res = B\n return res","user":"userdId_42","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4419} {"submission_id":2070,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 02:37:27","correct":false,"func_code":"def motPalindrome(mot):\n res = True\n i = 0\n while i < len(mot) \/ 2 and res == True:\n if mot[i] != mot[len(l) - i - 1]:\n res = False\n i = i + 1\n return res","user":"userdId_17","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2070} {"submission_id":2972,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 02:37:44","correct":true,"func_code":"def motPalindrome(mot):\n res = True\n i = 0\n while i < len(mot) \/ 2 and res == True:\n if mot[i] != mot[len(mot) - i - 1]:\n res = False\n i = i + 1\n return res","user":"userdId_17","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2972} {"submission_id":1814,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 03:43:03","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n while i < len(mot) \/\/ 2 and ok:\n if mot[i] != mot[-1 - i]:\n ok = False\n i += 1\n return ok","user":"userdId_6","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":1814} {"submission_id":5063,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 03:49:15","correct":false,"func_code":"def motPalindrome(mot):\n D = False\n C = 'bcdfghjklmnpqrstvxz'\n B = 'aeiouy'\n A = True\n i = 0\n if len(mot) == 0:\n res = A\n good = A\n else:\n while i < len(mot) - 1 and good == A:\n l1 = mot[i]\n l2 = mot[i + 1]\n if l1 in B and l2 in C or l1 in C and l2 in B:\n res = A\n else:\n res = D\n good = D\n return res","user":"userdId_26","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":5063} {"submission_id":2307,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 04:05:55","correct":true,"func_code":"def motPalindrome(mot):\n A = True\n i = 0\n res = A\n while i < len(mot) and res == A:\n pl = mot[i]\n dl = mot[-i - 1]\n if pl == dl:\n res = A\n else:\n res = False\n i += 1\n return res","user":"userdId_26","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2307} {"submission_id":2879,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 05:16:02","correct":true,"func_code":"def motPalindrome(mot):\n res = True\n i = 0\n j = len(mot) - 1\n while i < len(mot):\n if mot[i] != mot[j]:\n res = False\n i += 1\n j -= 1\n return res","user":"userdId_27","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2879} {"submission_id":2640,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 06:01:46","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2640} {"submission_id":3416,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 06:02:30","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3416} {"submission_id":2485,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 06:04:05","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < len(mot) and ok:\n if i != j:\n ok = False\n i = i + 1\n j = j + 1\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2485} {"submission_id":3143,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 06:04:55","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < len(mot) and ok:\n if i != j:\n ok = False\n i = i + 1\n j = j + 1\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3143} {"submission_id":3482,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 06:05:26","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < len(mot) and ok:\n if i != j:\n ok = False\n i = i + 1\n j = j + 1\n if i == j:\n ok = True\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3482} {"submission_id":3851,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 06:35:20","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < len(mot) and ok:\n if mot[i] != mot[j]:\n ok = False\n i = i + 1\n j = j + 1\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3851} {"submission_id":4947,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 06:35:53","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < j and ok:\n if mot[i] != mot[j]:\n ok = False\n i = i + 1\n j = j + 1\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4947} {"submission_id":5352,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 06:35:58","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < j and ok:\n if mot[i] != mot[j]:\n ok = False\n i = i + 1\n j = j + 1\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":5352} {"submission_id":252,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-04-06 07:18:44","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n return res","user":"userdId_16","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":252} {"submission_id":3713,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-04-06 07:50:31","correct":false,"func_code":"def maximum(liste):\n if []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_16","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3713} {"submission_id":2462,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-04-06 07:51:54","correct":true,"func_code":"def maximum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if res < liste[i]:\n res = liste[i]\n return res","user":"userdId_16","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2462} {"submission_id":1951,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-06 08:00:51","correct":true,"func_code":"def minimum(liste):\n if len(liste) == 0:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if res > liste[i]:\n res = liste[i]\n return res","user":"userdId_16","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1951} {"submission_id":1650,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-06 08:19:16","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n cpt = 0\n for i in range(len(liste)):\n res = res + liste[i]\n cpt += 1\n res = res \/ cpt\n return res","user":"userdId_16","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1650} {"submission_id":4545,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-06 08:24:24","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n for i in range(len(liste)):\n res = res + liste[i]\n res = res \/ len(liste)\n return res","user":"userdId_16","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4545} {"submission_id":319,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-04-06 08:25:18","correct":true,"func_code":"def moyenne(liste):\n if len(liste) == 0:\n res = None\n else:\n res = 0\n for i in range(len(liste)):\n res += liste[i]\n res = res \/ len(liste)\n return res","user":"userdId_16","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":319} {"submission_id":5572,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 14:46:08","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < len(mot) and ok:\n if i == j:\n ok = true\n else:\n ok = true\n i = i + 1\n j = j - 1\n return None","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":5572} {"submission_id":4002,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 14:46:13","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < len(mot) and ok:\n if i == j:\n ok = true\n else:\n ok = true\n i = i + 1\n j = j - 1\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4002} {"submission_id":1865,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 14:46:25","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < len(mot) and ok:\n if i == j:\n ok = true\n else:\n ok = true\n i = i + 1\n j = j - 1\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":1865} {"submission_id":2359,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 14:46:44","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < len(mot) and ok:\n if i == j:\n ok = True\n else:\n ok = False\n i = i + 1\n j = j - 1\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2359} {"submission_id":2338,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 14:52:35","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < j and ok:\n if i == j:\n ok = True\n else:\n ok = False\n i = i + 1\n j = j - 1\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2338} {"submission_id":4001,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 14:53:07","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < j and ok:\n if mot[i] == mot[j]:\n ok = True\n else:\n ok = False\n i = i + 1\n j = j - 1\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4001} {"submission_id":1320,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 14:53:51","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < j and ok:\n if mot[i] == mot[j]:\n ok = True\n else:\n ok = False\n i = i + 1\n j = j - 1\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":1320} {"submission_id":5473,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 16:55:01","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < j and ok:\n if mot[i] == mot[j]:\n ok = True\n else:\n ok = False\n i = i + 1\n j = j - 1\n return ok","user":"userdId_3","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":5473} {"submission_id":3600,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 20:57:04","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 1\n while i < len(mot) and ok:\n ok = mot[i] == mot[-1 - i]\n i += 1\n return ok","user":"userdId_12","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3600} {"submission_id":616,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 21:29:14","correct":true,"func_code":"def motPalindrome(mot):\n res = True\n i = 0\n j = len(mot) - 1\n while i < len(mot) and res:\n if mot[i] != mot[j]:\n res = False\n i = i + 1\n j = j - 1\n return res","user":"userdId_28","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":616} {"submission_id":5639,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 22:11:09","correct":false,"func_code":"def motPalindrome(mot):\n if len(mot) == 0:\n res = True\n else:\n ok = True\n i = 0\n while i < len(mot) and ok:\n ok = mot[i] == mot[-1]\n i += 1\n res = ok\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":5639} {"submission_id":2688,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 22:15:32","correct":false,"func_code":"def motPalindrome(mot):\n if len(mot) == 0:\n res = True\n else:\n ok = True\n i = 0\n while i < len(mot) and ok:\n ok = mot[i] == mot[-1]\n i += 1\n return ok","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2688} {"submission_id":1198,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 22:17:02","correct":false,"func_code":"def motPalindrome(mot):\n if len(mot) == 0:\n res = True\n else:\n res = True\n i = 0\n while i < len(mot) and res:\n res = mot[i] == mot[-1]\n i += 1\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":1198} {"submission_id":3038,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 22:18:06","correct":false,"func_code":"def motPalindrome(mot):\n A = True\n if len(mot) == 0:\n res = A\n else:\n res = A\n i = 0\n while i < len(mot) and res:\n if mot[i] == mot[-1]:\n res = A\n i += 1\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3038} {"submission_id":1882,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 22:18:55","correct":false,"func_code":"def motPalindrome(mot):\n A = True\n if len(mot) == 0:\n res = A\n else:\n res = A\n i = 0\n while i < len(mot) and res:\n if mot[i] == mot[-i]:\n res = A\n i += 1\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":1882} {"submission_id":3666,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 22:19:14","correct":false,"func_code":"def motPalindrome(mot):\n A = True\n if len(mot) == 0:\n res = A\n else:\n res = A\n i = 0\n while i < len(mot) and res:\n if mot[i] == mot[-i - 1]:\n res = A\n i += 1\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3666} {"submission_id":2500,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 22:23:25","correct":false,"func_code":"def motPalindrome(mot):\n A = True\n if len(mot) == 0:\n res = A\n else:\n res = A\n i = 0\n while i < len(mot) and res == A:\n if mot[i] == mot[-i]:\n res = A\n i += 1\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2500} {"submission_id":986,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 22:25:37","correct":false,"func_code":"def motPalindrome(mot):\n A = True\n if len(mot) == 0:\n res = A\n else:\n res = A\n i = 0\n while i < len(mot) and res == A:\n if mot[i] == mot[-i]:\n res = A\n i += 1\n else:\n res = False\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":986} {"submission_id":4771,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 22:27:20","correct":false,"func_code":"def motPalindrome(mot):\n A = True\n if len(mot) == 0:\n res = A\n else:\n res = A\n i = 0\n while i < len(mot) and res == A:\n if mot[i] == mot[-i]:\n res = A\n i += 1\n else:\n res = False\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4771} {"submission_id":641,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 22:39:57","correct":false,"func_code":"def motPalindrome(mot):\n A = True\n if len(mot) == 0:\n res = A\n else:\n res = A\n i = 0\n while i < len(mot) and res == A:\n if mot[i \/\/ 2] == mot[-i \/\/ 2]:\n res = A\n i += 1\n else:\n res = False\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":641} {"submission_id":3847,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 22:41:07","correct":false,"func_code":"def motPalindrome(mot):\n A = True\n if len(mot) == 0:\n res = A\n else:\n res = A\n i = 0\n while i < len(mot) and res == A:\n if mot[i \/\/ 2] == mot[-i \/\/ 2]:\n res = A\n i += 1\n if mot[i \/\/ 2] != mot[-i \/\/ 2]:\n res = False\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3847} {"submission_id":1899,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-06 22:41:31","correct":false,"func_code":"def motPalindrome(mot):\n A = True\n if len(mot) == 0:\n res = A\n else:\n res = A\n i = 0\n while i < len(mot) and res == A:\n if mot[i \/\/ 2] == mot[-i \/\/ 2]:\n res = A\n i += 1\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":1899} {"submission_id":550,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 02:56:00","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n while i < len(mot) \/\/ 2 and ok:\n if mot[i] != mot[-i - 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_9","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":550} {"submission_id":1136,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:00:18","correct":false,"func_code":"def motPalindrome(mot):\n res = 0\n ok = True\n while i < len(mot) and ok:\n if mot[i] != mot[-i - 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_50","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":1136} {"submission_id":2828,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:02:47","correct":true,"func_code":"def motPalindrome(mot):\n i = 0\n ok = True\n while i < len(mot) and ok:\n if mot[i] != mot[-i - 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_50","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2828} {"submission_id":2965,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:05:09","correct":true,"func_code":"def motPalindrome(mot):\n i = 0\n res = True\n while i < len(mot) and res == True:\n if mot[i] != mot[-i - 1]:\n res = False\n i = i + 1\n return res","user":"userdId_31","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2965} {"submission_id":4142,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:07:02","correct":false,"func_code":"def motPalindrome(mot):\n palindrome = True\n i = 0\n j = len(mot) - 1\n i = 0\n while i < j and palindrome:\n if mot[i] != mot[j]:\n palindrome = False\n i = i + 1\n j = j - 1\n return palindrome","user":"userdId_52","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4142} {"submission_id":3508,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:10:57","correct":true,"func_code":"def motPalindrome(mot):\n palindrome = True\n i = 0\n j = len(mot) - 1\n i = 0\n while i < j and palindrome:\n if mot[i] != mot[j]:\n palindrome = False\n i = i + 1\n j = j - 1\n return palindrome","user":"userdId_52","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3508} {"submission_id":828,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:20:41","correct":true,"func_code":"def motPalindrome(mot):\n res = True\n i = 0\n while i < len(mot):\n if mot[i] != mot[-i - 1]:\n res = False\n i = i + 1\n return res","user":"userdId_7","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":828} {"submission_id":5682,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:33:47","correct":false,"func_code":"def motPalindrome(mot):\n res = False\n if mot[0] == mot[-1]:\n res = True\n return res","user":"userdId_30","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":5682} {"submission_id":5205,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:35:22","correct":false,"func_code":"def motPalindrome(mot):\n A = True\n i = 0\n trouve = False\n res = A\n while i < len(mot) \/ 2 and not trouve:\n if mot[i] == mot[-i - 1]:\n i += 1\n trouve = A\n if trouve:\n res = A\n return res","user":"userdId_16","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":5205} {"submission_id":4102,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:35:48","correct":false,"func_code":"def motPalindrome(mot):\n A = True\n i = 0\n trouve = False\n res = A\n while i < len(mot) \/ 2 and not trouve:\n if mot[i] == mot[-i - 1]:\n i += 1\n trouve = A\n if trouve:\n res = A\n return res","user":"userdId_16","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4102} {"submission_id":2257,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:36:38","correct":false,"func_code":"def motPalindrome(mot):\n res = False\n if mot[0] == mot[-1]:\n res = True\n return res","user":"userdId_30","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2257} {"submission_id":23,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:37:48","correct":false,"func_code":"def motPalindrome(mot):\n A = True\n i = 0\n trouve = False\n res = A\n while i < len(mot) \/ 2 and not trouve:\n if mot[i] == mot[-i - 1]:\n i += 1\n trouve = A\n if trouve:\n res = A\n return res","user":"userdId_16","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":23} {"submission_id":4648,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:42:18","correct":false,"func_code":"def motPalindrome(mot):\n res = False\n if mot[0] == mot[-1]:\n res = True\n return res","user":"userdId_30","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4648} {"submission_id":4886,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:45:51","correct":false,"func_code":"def motPalindrome(mot):\n A = False\n res = A\n if mot[0] == mot[-1]:\n res = True\n else:\n res = A\n return res","user":"userdId_30","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4886} {"submission_id":4823,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:49:11","correct":false,"func_code":"def motPalindrome(mot):\n res = False\n if mot(0) == mot(-1):\n res = True\n return res","user":"userdId_30","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4823} {"submission_id":1346,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:49:45","correct":false,"func_code":"def motPalindrome(mot):\n res = False\n if mot[0] == mot[-1]:\n res = True\n return res","user":"userdId_30","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":1346} {"submission_id":5119,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:50:06","correct":false,"func_code":"def motPalindrome(mot):\n res = False\n if mot[0] == mot[-1]:\n res = True\n return res","user":"userdId_30","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":5119} {"submission_id":4455,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 03:57:16","correct":false,"func_code":"def motPalindrome(mot):\n res = False\n i = 0\n while i < len(mot) and not res:\n if mot[i] == mot[-1 - i]:\n res = True\n i += 1\n return res","user":"userdId_30","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4455} {"submission_id":3186,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 04:01:36","correct":true,"func_code":"def motPalindrome(mot):\n res = True\n i = 0\n while i < len(mot) and res:\n if mot[i] != mot[-1 - i]:\n res = False\n i += 1\n return res","user":"userdId_30","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3186} {"submission_id":1817,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 04:06:48","correct":false,"func_code":"def motPalindrome(mot):\n A = True\n i = 0\n trouve = False\n res = A\n while i < len(mot) \/ 2 and not trouve:\n if mot[i] == mot[-i - 1]:\n i += 1\n trouve = A\n if trouve:\n res = A\n return res","user":"userdId_16","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":1817} {"submission_id":5147,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 04:09:02","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n j = len(mot) - 1\n while i < j and ok:\n if mot[i] != mot[j]:\n ok = False\n i += 1\n j -= 1\n return ok","user":"userdId_21","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":5147} {"submission_id":113,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 04:09:12","correct":true,"func_code":"def motPalindrome(mot):\n A = False\n i = 0\n ok = True\n res = A\n while i < len(mot) \/ 2 and ok:\n if mot[i] != mot[-i - 1]:\n ok = A\n i += 1\n if ok:\n res = True\n return res","user":"userdId_32","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":113} {"submission_id":2384,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 04:10:07","correct":true,"func_code":"def motPalindrome(mot):\n A = False\n i = 0\n ok = True\n res = A\n while i < len(mot) \/ 2 and ok:\n if mot[i] != mot[-i - 1]:\n ok = A\n i += 1\n if ok:\n res = True\n return res","user":"userdId_16","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2384} {"submission_id":2263,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 23:07:46","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n while i < len(mot) \/\/ 2 and ok:\n if mot[i] != mot[-i - 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_13","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2263} {"submission_id":1758,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 23:25:51","correct":false,"func_code":"def motPalindrome(mot):\n B = False\n A = True\n c = A\n while i < len(mot) \/ 2 and c:\n if mot[i] == mot[len(mot) - i]:\n c = A\n else:\n c = B\n if c == A:\n return A\n else:\n return B","user":"userdId_19","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":1758} {"submission_id":989,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 23:26:15","correct":false,"func_code":"def motPalindrome(mot):\n B = False\n A = True\n c = A\n while i < len(mot) \/ 2 and c:\n if mot[i] == mot[len(mot) - i]:\n c = A\n else:\n c = B\n if c == A:\n return A\n else:\n return B","user":"userdId_19","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":989} {"submission_id":3559,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 23:26:25","correct":false,"func_code":"def motPalindrome(mot):\n B = False\n A = True\n i = 0\n c = A\n while i < len(mot) \/ 2 and c:\n if mot[i] == mot[len(mot) - i]:\n c = A\n else:\n c = B\n if c == A:\n return A\n else:\n return B","user":"userdId_19","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3559} {"submission_id":3325,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 23:27:01","correct":false,"func_code":"def motPalindrome(mot):\n B = False\n A = True\n i = 0\n c = A\n while i < len(mot) \/ 2 and c:\n if mot[i] == mot[len(mot) - i - 1]:\n c = A\n else:\n c = B\n if c == A:\n return A\n else:\n return B","user":"userdId_19","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3325} {"submission_id":4610,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 23:27:25","correct":true,"func_code":"def motPalindrome(mot):\n B = False\n A = True\n i = 0\n c = A\n while i < len(mot) \/ 2 and c:\n if mot[i] == mot[len(mot) - i - 1]:\n c = A\n else:\n c = B\n i = i + 1\n if c == A:\n return A\n else:\n return B","user":"userdId_19","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4610} {"submission_id":3283,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 23:42:51","correct":true,"func_code":"def motPalindrome(mot):\n palindrome = True\n i = 0\n while i < len(mot) and palindrome == True:\n if mot[i] != mot[-i - 1]:\n palindrome = False\n i = i + 1\n return palindrome","user":"userdId_5","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3283} {"submission_id":3850,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 23:49:13","correct":false,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n while i < len(mot) \/\/ 2 and ok:\n if mot[i] != mot[-i - 1]:\n ok = False\n i += 1\n return ok","user":"userdId_32","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3850} {"submission_id":3131,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 23:52:37","correct":false,"func_code":"def motPalindrome(mot):\n res = False\n if mot == '':\n res = True\n else:\n mot2 = ''\n for i in mot:\n mot2 = i + mot2\n if mot1 == mot2:\n res = True\n return res","user":"userdId_2","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":3131} {"submission_id":1306,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-07 23:52:51","correct":true,"func_code":"def motPalindrome(mot):\n res = False\n if mot == '':\n res = True\n else:\n mot2 = ''\n for i in mot:\n mot2 = i + mot2\n if mot == mot2:\n res = True\n return res","user":"userdId_2","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":1306} {"submission_id":5129,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-08 00:04:22","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n while i < len(mot) \/ 2 and ok:\n if mot[i] != mot[-1 - i]:\n ok = False\n i = i + 1\n return ok","user":"userdId_14","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":5129} {"submission_id":2024,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-08 03:54:28","correct":true,"func_code":"def motPalindrome(mot):\n if len(mot) == 0:\n res = True\n else:\n res = True\n i = 0\n while i < len(mot) \/\/ 2 and res:\n if mot[i] != mot[-(i + 1)]:\n res = False\n i += 1\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":2024} {"submission_id":36,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-11 04:03:49","correct":true,"func_code":"def motPalindrome(mot):\n res = True\n i = 0\n while i < len(mot) \/\/ 2 and res:\n if mot[i] != mot[-i - 1]:\n res = False\n i += 1\n return res","user":"userdId_8","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":36} {"submission_id":4466,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-12 10:21:02","correct":true,"func_code":"def motPalindrome(mot):\n ok = True\n i = 0\n while i < len(mot) \/\/ 2 and ok:\n if mot[i] != mot[-i - 1]:\n ok = False\n i += 1\n return ok","user":"userdId_38","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4466} {"submission_id":694,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-12 10:58:27","correct":false,"func_code":"def motPalindrome(mot):\n if len(mot) == 0:\n res = True\n else:\n res = True\n i = 0\n while i < len(mot) \/\/ 2 and res:\n if mot[i] != mot[-(i + 1)]:\n res = False\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":694} {"submission_id":4605,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-12 10:58:58","correct":true,"func_code":"def motPalindrome(mot):\n if len(mot) == 0:\n res = True\n else:\n res = True\n i = 0\n while i < len(mot) \/\/ 2 and res:\n if mot[i] != mot[-(i + 1)]:\n res = False\n i += 1\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4605} {"submission_id":4553,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-12 12:09:21","correct":true,"func_code":"def motPalindrome(mot):\n if len(mot) == 0:\n res = True\n else:\n res = True\n i = 0\n while i < len(mot) \/\/ 2 and res:\n if mot[i] != mot[-(i + 1)]:\n res = False\n i += 1\n return res","user":"userdId_11","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4553} {"submission_id":4694,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-13 20:27:05","correct":false,"func_code":"def motPalindrome(mot):\n res = True\n i = 0\n while i < len(mot) \/\/ 2 and res:\n if mot[i] != mot[-i - 1]:\n res = False\n return res","user":"userdId_8","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":4694} {"submission_id":303,"exercise_name":"e2e71241db6a4971b7f407789330fdfd","date":"2020-04-13 20:27:31","correct":true,"func_code":"def motPalindrome(mot):\n res = True\n i = 0\n while i < len(mot) \/\/ 2 and res:\n if mot[i] != mot[-1 - i]:\n res = False\n i += 1\n return res","user":"userdId_8","func_name":"motPalindrome","assignment_id":"is_palindrome","test":"assert motPalindrome('radar')==True and motPalindrome('')==True and motPalindrome('python')==False and motPalindrome('anna')==True and motPalindrome('abcdefghhgfedcba')==True and motPalindrome('abcdefghhgfedcbb')==False and motPalindrome('abcdefghigfedcba')==False","description":"Check whether a word is a palindrome.","__index_level_0__":303} {"submission_id":5103,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 21:07:25","correct":true,"func_code":"def listeDecroissante(scores):\n res = True\n for i in range(len(scores) - 1):\n if scores[i] < scores[i + 1]:\n res = False\n return res","user":"userdId_6","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":5103} {"submission_id":4329,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 21:32:34","correct":true,"func_code":"def listeDecroissante(scores):\n c = True\n i = 0\n while i < len(scores) - 1 and c:\n if scores[i] < scores[i + 1]:\n c = False\n i = i + 1\n return c","user":"userdId_19","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":4329} {"submission_id":2869,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 21:48:01","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) - 1:\n if scores[i] > scores[i + 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_1","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":2869} {"submission_id":811,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 21:49:19","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) - 1:\n if scores[i] > scores[i + 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_1","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":811} {"submission_id":3432,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 21:50:53","correct":true,"func_code":"def listeDecroissante(scores):\n ok = True\n if len(scores) == 0:\n ok = True\n i = 0\n while i < len(scores) - 1:\n if scores[i] < scores[i + 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_1","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3432} {"submission_id":2170,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 21:52:42","correct":false,"func_code":"def listeDecroissante(scores):\n i = 0\n ok = True\n while i < len(scores):\n if scores[i] < scores[i + 1]:\n ok = False\n i += 1\n return ok","user":"userdId_15","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":2170} {"submission_id":590,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 21:54:02","correct":false,"func_code":"def listeDecroissante(scores):\n i = 0\n ok = True\n while i < len(scores):\n if scores[i] < scores[i + 1]:\n ok = False\n i += 1\n return ok","user":"userdId_15","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":590} {"submission_id":1652,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 21:54:41","correct":true,"func_code":"def listeDecroissante(scores):\n i = 0\n ok = True\n while i < len(scores) - 1:\n if scores[i] < scores[i + 1]:\n ok = False\n i += 1\n return ok","user":"userdId_15","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1652} {"submission_id":1463,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 22:02:13","correct":false,"func_code":"def listeDecroissante(scores):\n res = True\n i = 0\n while i < len(scores) - 1 and res:\n if scores[i] <= scores[i + 1]:\n res = False\n return res","user":"userdId_28","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1463} {"submission_id":1210,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 22:13:45","correct":true,"func_code":"def listeDecroissante(scores):\n res = True\n i = 0\n while i < len(scores) - 1 and res:\n if scores[i] <= scores[i + 1]:\n res = False\n i = i + 1\n return res","user":"userdId_32","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1210} {"submission_id":3740,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 22:15:13","correct":true,"func_code":"def listeDecroissante(scores):\n res = True\n i = 0\n while i < len(scores) - 1 and res:\n if scores[i] <= scores[i + 1]:\n res = False\n i = i + 1\n return res","user":"userdId_32","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3740} {"submission_id":3051,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 22:16:00","correct":true,"func_code":"def listeDecroissante(scores):\n res = True\n i = 0\n while i < len(scores) - 1 and res:\n if scores[i] <= scores[i + 1]:\n res = False\n i = i + 1\n return res","user":"userdId_28","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3051} {"submission_id":4191,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 22:47:17","correct":false,"func_code":"def listeDecroissante(scores):\n res = False\n if scores == []:\n res = True\n for i in range(len(scores) - 1):\n if scores[i] > scores[1 + i]:\n res = True\n return res","user":"userdId_8","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":4191} {"submission_id":1169,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 22:51:55","correct":false,"func_code":"def listeDecroissante(scores):\n res = False\n if scores == []:\n res = True\n for i in range(len(scores)):\n if scores[i] > scores[1 + i]:\n res = True\n return res","user":"userdId_8","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1169} {"submission_id":2390,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 22:52:15","correct":false,"func_code":"def listeDecroissante(scores):\n res = False\n if scores == []:\n res = True\n for i in range(len(scores)):\n if scores[i] < scores[1 - i]:\n res = True\n return res","user":"userdId_8","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":2390} {"submission_id":1403,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 22:52:37","correct":false,"func_code":"def listeDecroissante(scores):\n res = False\n if scores == []:\n res = True\n for i in range(len(scores) - 1):\n if scores[i] > scores[1 + i]:\n res = True\n return res","user":"userdId_8","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1403} {"submission_id":1313,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 22:55:43","correct":false,"func_code":"def listeDecroissante(scores):\n A = False\n res = A\n if scores == []:\n res = True\n for i in range(len(scores) - 1):\n if scores[i] > scores[1 + i]:\n res = A\n return res","user":"userdId_8","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1313} {"submission_id":5273,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 22:56:01","correct":false,"func_code":"def listeDecroissante(scores):\n res = False\n if scores == []:\n res = True\n for i in range(len(scores) - 1):\n if scores[i] > scores[1 + i]:\n res = True\n return res","user":"userdId_8","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":5273} {"submission_id":3983,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 23:11:55","correct":false,"func_code":"def listeDecroissante(scores):\n res = False\n if scores == []:\n res = True\n for i in range(len(scores) - 1):\n if scores[i] > scores[i + 1]:\n res = True\n return res","user":"userdId_8","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3983} {"submission_id":234,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 23:16:01","correct":false,"func_code":"def listeDecroissante(scores):\n res = False\n if scores == []:\n res = True\n for i in scores:\n if scores[i] > scores[i + 1]:\n res = True\n return res","user":"userdId_8","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":234} {"submission_id":2026,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 23:17:07","correct":false,"func_code":"def listeDecroissante(scores):\n res = False\n if scores == []:\n res = True\n for i in range(len(scores) - 1):\n if scores[i] > scores[i + 1]:\n res = True\n return res","user":"userdId_8","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":2026} {"submission_id":3652,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 23:43:04","correct":true,"func_code":"def listeDecroissante(scores):\n res = True\n if scores == []:\n res = True\n for i in range(len(scores) - 1):\n if scores[i] <= scores[i + 1]:\n res = False\n return res","user":"userdId_8","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3652} {"submission_id":5385,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 23:45:08","correct":false,"func_code":"def listeDecroissante(scores):\n if scores == [] or res == True:\n res = True\n for i in range(len(scores) - 1):\n if scores[i] <= scores[i + 1]:\n res = False\n return res","user":"userdId_8","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":5385} {"submission_id":3233,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-13 23:45:18","correct":true,"func_code":"def listeDecroissante(scores):\n res = True\n if scores == []:\n res = True\n for i in range(len(scores) - 1):\n if scores[i] <= scores[i + 1]:\n res = False\n return res","user":"userdId_8","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3233} {"submission_id":3526,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:26:08","correct":false,"func_code":"def listeDecroissante(scores):\n scorePrec = scores[0]\n ok = True\n i = 1\n while i < len(scores) and ok:\n if scorePrec <= scores[i]:\n ok = False\n i += 1\n return ok","user":"userdId_18","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3526} {"submission_id":3859,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:26:54","correct":false,"func_code":"def listeDecroissante(scores):\n scorePrec = scores[0]\n ok = True\n i = 1\n while i < len(scores) and ok:\n if scorePrec <= scores[i]:\n ok = False\n i += 1\n return ok","user":"userdId_18","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3859} {"submission_id":1712,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:26:58","correct":false,"func_code":"def listeDecroissante(scores):\n scorePrec = scores[0]\n ok = True\n i = 1\n while i < len(scores) and ok:\n if scorePrec <= scores[i]:\n ok = False\n i += 1\n return ok","user":"userdId_18","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1712} {"submission_id":1338,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:27:41","correct":true,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) - 1 and ok:\n ok = scores[i] > scores[i + 1]\n i += 1\n return ok","user":"userdId_12","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1338} {"submission_id":229,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:27:43","correct":false,"func_code":"def listeDecroissante(scores):\n if scores == []:\n ok = True\n else:\n scorePrec = scores[0]\n ok = True\n i = 1\n while i < len(scores) and ok:\n if scorePrec <= scores[i]:\n ok = False\n i += 1\n return ok","user":"userdId_18","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":229} {"submission_id":4732,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:29:15","correct":true,"func_code":"def listeDecroissante(scores):\n if scores == []:\n ok = True\n else:\n scorePrec = scores[0]\n ok = True\n i = 1\n while i < len(scores) and ok:\n if scorePrec <= scores[i]:\n ok = False\n scorePrec = scores[i]\n i += 1\n return ok","user":"userdId_18","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":4732} {"submission_id":3979,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:30:34","correct":true,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) - 1 and ok:\n if scores[i] < scores[i + 1]:\n ok = False\n i += 1\n return ok","user":"userdId_27","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3979} {"submission_id":2829,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:31:50","correct":false,"func_code":"def listeDecroissante(scores):\n res = []\n for i in range(len(scores) - 1):\n if scores[i] > scores[i + 1]:\n res = True\n else:\n res = False\n return res","user":"userdId_7","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":2829} {"submission_id":272,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:38:07","correct":false,"func_code":"def listeDecroissante(scores):\n i = 0\n while i < len(scores) - 1:\n if scores[i] > scores[i + 1]:\n return True\n else:\n return False\n i = i + 1","user":"userdId_31","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":272} {"submission_id":3570,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:39:14","correct":true,"func_code":"def listeDecroissante(scores):\n res = True\n for i in range(len(scores) - 1):\n if scores[i] > scores[i + 1]:\n res = True\n else:\n res = False\n return res","user":"userdId_7","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3570} {"submission_id":2785,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:42:41","correct":false,"func_code":"def listeDecroissante(scores):\n i = 0\n res = True\n while i < len(scores) - 1:\n if scores[i] < scores[i + 1]:\n res = False\n i = i + 1\n return res","user":"userdId_31","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":2785} {"submission_id":98,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:50:24","correct":false,"func_code":"def listeDecroissante(scores):\n for i in range(len(scores)):\n if scores[i] < scores[i + 1]:\n return False\n else:\n return True","user":"userdId_31","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":98} {"submission_id":254,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:52:59","correct":false,"func_code":"def listeDecroissante(scores):\n if scores == []:\n return True\n else:\n for i in range(len(scores)):\n if scores[i] < scores[i + 1]:\n return False\n else:\n return True","user":"userdId_31","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":254} {"submission_id":1743,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:54:52","correct":false,"func_code":"def listeDecroissante(scores):\n if scores == []:\n return True\n else:\n for i in range(len(scores)):\n if scores[i] < scores[i + 1]:\n return False\n else:\n return True","user":"userdId_31","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1743} {"submission_id":3149,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:57:20","correct":false,"func_code":"def listeDecroissante(scores):\n ok = False\n while i < len(liste) and not ok:\n if liste[i] > liste[i + 1]:\n res = True\n else:\n res = ok\n return ok","user":"userdId_21","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3149} {"submission_id":3017,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:57:45","correct":false,"func_code":"def listeDecroissante(scores):\n ok = False\n while i < len(liste) and not ok:\n if liste[i] > liste[i + 1]:\n res = True\n else:\n res = ok\n return ok","user":"userdId_21","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3017} {"submission_id":3373,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:58:01","correct":false,"func_code":"def listeDecroissante(scores):\n ok = False\n while i < len(scores) and not ok:\n if liste[i] > liste[i + 1]:\n res = True\n else:\n res = ok\n return ok","user":"userdId_21","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3373} {"submission_id":134,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 03:59:27","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n while i < len(scores) and ok:\n if liste[i] > liste[i + 1]:\n res = ok\n else:\n res = Faux\n return res","user":"userdId_21","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":134} {"submission_id":3838,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 04:00:54","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n while i < len(scores) and ok:\n if liste[i] > liste[i + 1]:\n res = ok\n else:\n res = False\n return res","user":"userdId_21","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3838} {"submission_id":4661,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 04:01:32","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n while i < len(scores) and ok:\n if liste[i] >= liste[i + 1]:\n res = ok\n else:\n res = False\n return res","user":"userdId_21","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":4661} {"submission_id":5642,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 04:02:19","correct":false,"func_code":"def listeDecroissante(scores):\n res = True\n i = 0\n while i < len(score) - 1:\n if score[i] < score[i + 1]:\n return False\n i = i + 1\n return res","user":"userdId_50","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":5642} {"submission_id":5402,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 04:03:03","correct":true,"func_code":"def listeDecroissante(scores):\n res = True\n i = 0\n while i < len(scores) - 1:\n if scores[i] < scores[i + 1]:\n return False\n i = i + 1\n return res","user":"userdId_50","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":5402} {"submission_id":3704,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 04:03:22","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n while i < len(scores) and ok:\n if scores[i] >= scores[i + 1]:\n res = ok\n else:\n res = False\n return res","user":"userdId_21","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3704} {"submission_id":4902,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 04:05:24","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n while i < len(scores) and ok:\n if scores[i] >= scores[i + 1]:\n res = ok\n return res","user":"userdId_21","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":4902} {"submission_id":1255,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 04:06:02","correct":true,"func_code":"def listeDecroissante(scores):\n res = True\n for i in range(len(scores) - 1):\n if scores[i] < scores[i + 1]:\n res = False\n return res","user":"userdId_31","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1255} {"submission_id":5387,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 04:08:32","correct":true,"func_code":"def listeDecroissante(scores):\n for i in range(len(scores) - 1):\n if scores[i] < scores[i + 1]:\n return False\n return True","user":"userdId_31","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":5387} {"submission_id":4956,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 04:10:35","correct":false,"func_code":"def listeDecroissante(scores):\n i = 0\n ok = True\n while i < len(scores) - 1 and ok:\n if scores[i] < scores[i + 1]:\n ok = False\n i += 1\n return res","user":"userdId_21","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":4956} {"submission_id":915,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 04:11:01","correct":true,"func_code":"def listeDecroissante(scores):\n i = 0\n ok = True\n while i < len(scores) - 1 and ok:\n if scores[i] < scores[i + 1]:\n ok = False\n i += 1\n return ok","user":"userdId_21","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":915} {"submission_id":5478,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 04:26:06","correct":false,"func_code":"def listeDecroissante(scores):\n c = True\n i = 0\n while i < len(score) - 1 and c:\n if score[i] < score[i + 1]:\n c = False\n i = i + 1\n return c","user":"userdId_39","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":5478} {"submission_id":245,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-14 04:26:21","correct":true,"func_code":"def listeDecroissante(score):\n c = True\n i = 0\n while i < len(score) - 1 and c:\n if score[i] < score[i + 1]:\n c = False\n i = i + 1\n return c","user":"userdId_39","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":245} {"submission_id":2731,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-16 23:09:24","correct":true,"func_code":"def listeDecroissante(scores):\n res = True\n i = 0\n while i < len(scores) - 1 and res:\n if scores[i] < scores[i + 1]:\n res = False\n i = i + 1\n return res","user":"userdId_17","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":2731} {"submission_id":4174,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-16 23:53:23","correct":false,"func_code":"def listeDecroissante(scores):\n res = True\n x = score[0]\n for elem in score:\n if x < elem:\n res = False\n x = elem\n return res","user":"userdId_14","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":4174} {"submission_id":1470,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-16 23:53:47","correct":false,"func_code":"def listeDecroissante(scores):\n res = True\n x = scores[0]\n for elem in scores:\n if x < elem:\n res = False\n x = elem\n return res","user":"userdId_14","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1470} {"submission_id":5334,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-16 23:53:58","correct":true,"func_code":"def listeDecroissante(scores):\n i = 0\n while i < len(scores) - 1:\n if scores[i] < scores[i + 1]:\n return False\n i += 1\n return True","user":"userdId_34","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":5334} {"submission_id":327,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-17 00:05:34","correct":true,"func_code":"def listeDecroissante(scores):\n res = True\n if len(scores) == 0:\n return res\n else:\n x = scores[0]\n for elem in scores:\n if x < elem:\n res = False\n x = elem\n return res","user":"userdId_14","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":327} {"submission_id":4981,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-17 00:28:37","correct":false,"func_code":"def listeDecroissante(scores):\n res = True\n if len(scores) == 0:\n return res\n else:\n x = True\n i = 0\n while i < len(scores) and x:\n if scores[i] < scores[i + 1]:\n x = False\n i = i + 1\n return x","user":"userdId_14","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":4981} {"submission_id":906,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-17 00:32:31","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(lscore) - 1 and ok:\n if lscore[i] <= lscore[i + 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_43","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":906} {"submission_id":4914,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-17 00:39:47","correct":true,"func_code":"def listeDecroissante(scores):\n i = 0\n while i < len(scores) - 1:\n if scores[i] < scores[i + 1]:\n return False\n i = i + 1\n return True","user":"userdId_14","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":4914} {"submission_id":2594,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-04-17 02:58:21","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in liste:\n res = res + res[i]\n return res","user":"userdId_21","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":2594} {"submission_id":749,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-04-17 03:02:51","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in liste:\n res = res + i\n return res","user":"userdId_21","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":749} {"submission_id":3738,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-04-17 03:03:54","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in liste:\n res = res + i\n return res","user":"userdId_21","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":3738} {"submission_id":5463,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:12:04","correct":false,"func_code":"def minimum(liste):\n min = 0\n for i in liste:\n if l[i] < l[i + 1]:\n min = l[i]\n else:\n min = None\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5463} {"submission_id":4338,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:12:20","correct":false,"func_code":"def minimum(liste):\n min = 0\n for i in liste:\n if liste[i] < liste[i + 1]:\n min = l[i]\n else:\n min = None\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4338} {"submission_id":2130,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:12:24","correct":false,"func_code":"def minimum(liste):\n min = 0\n for i in liste:\n if liste[i] < liste[i + 1]:\n min = liste[i]\n else:\n min = None\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2130} {"submission_id":5600,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:13:59","correct":false,"func_code":"def minimum(liste):\n min = liste[0]\n for i in range(1, len(liste), 1):\n if liste[i] < liste[i + 1]:\n min = liste[i]\n else:\n min = None\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5600} {"submission_id":4968,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:14:06","correct":false,"func_code":"def minimum(liste):\n min = liste[0]\n for i in range(1, len(liste), -1):\n if liste[i] < liste[i + 1]:\n min = liste[i]\n else:\n min = None\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4968} {"submission_id":3435,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:15:24","correct":false,"func_code":"def minimum(liste):\n min = liste[0]\n for i in liste:\n if liste[i] < liste[i + 1]:\n min = liste[i]\n else:\n min = None\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":3435} {"submission_id":5394,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:17:00","correct":false,"func_code":"def minimum(liste):\n min = liste[0]\n for i in liste:\n if i < min:\n min = i\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5394} {"submission_id":5084,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:17:32","correct":false,"func_code":"def minimum(liste):\n min = liste[1]\n for i in liste:\n if i < min:\n min = i\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5084} {"submission_id":4990,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:17:41","correct":false,"func_code":"def minimum(liste):\n min = liste[0]\n for i in liste:\n if i < min:\n min = i\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4990} {"submission_id":5392,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:18:29","correct":false,"func_code":"def minimum(liste):\n res = liste[0]\n for n in liste:\n if n < res:\n res = n\n return res","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5392} {"submission_id":992,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:20:25","correct":false,"func_code":"def minimum(liste):\n min = liste[0]\n for i in liste:\n if i < min:\n min = i\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":992} {"submission_id":1716,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:20:37","correct":false,"func_code":"def minimum(liste):\n for i in liste:\n if i < min:\n min = i\n return min","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1716} {"submission_id":3616,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:20:58","correct":false,"func_code":"def minimum(liste):\n for i in liste:\n if i < res:\n res = i\n return res","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":3616} {"submission_id":3906,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-04-17 03:24:11","correct":false,"func_code":"def minimum(liste):\n res = liste[0]\n for i in liste:\n if i < res:\n res = i\n else:\n res = None\n return res","user":"userdId_21","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":3906} {"submission_id":5106,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-20 22:35:25","correct":true,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) - 1 and ok:\n if scores[i] < scores[i + 1]:\n ok = False\n i += 1\n else:\n if len(scores) == []:\n ok = True\n return ok","user":"userdId_9","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":5106} {"submission_id":4733,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-21 02:31:38","correct":false,"func_code":"def listeDecroissante(scores):\n if len(scores) == 0:\n ok = True\n else:\n ok = True\n i = 0\n while i < len(scores) and ok:\n if scores[i] < scores[i + 1]:\n ok = False\n return ok","user":"userdId_11","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":4733} {"submission_id":3834,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-21 02:33:47","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) and ok:\n if scores[i] < scores[i + 1]:\n ok = False\n return ok","user":"userdId_11","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3834} {"submission_id":487,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-21 02:34:06","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) and ok:\n if scores[i] < scores[i + 1]:\n ok = False\n i += 1\n return ok","user":"userdId_11","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":487} {"submission_id":2474,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-21 02:34:21","correct":true,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) - 1 and ok:\n if scores[i] < scores[i + 1]:\n ok = False\n i += 1\n return ok","user":"userdId_11","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":2474} {"submission_id":1373,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-04-21 02:34:37","correct":true,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) - 1 and ok:\n if scores[i] < scores[i + 1]:\n ok = False\n i += 1\n return ok","user":"userdId_11","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1373} {"submission_id":1673,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-05-04 21:34:00","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in range(liste):\n res += elem\n return res","user":"userdId_8","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1673} {"submission_id":1112,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-05-04 21:34:26","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res += elem\n return res","user":"userdId_8","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":1112} {"submission_id":870,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-05-04 21:34:57","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res += elem\n return res","user":"userdId_26","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":870} {"submission_id":2981,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-05-04 21:41:57","correct":true,"func_code":"def maximum(liste):\n if liste == []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste) - 1):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_26","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2981} {"submission_id":3633,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-05-04 21:42:20","correct":true,"func_code":"def maximum(liste):\n if liste == []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste) - 1):\n if liste[i] > liste[i + 1]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":3633} {"submission_id":4520,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-05-04 21:46:55","correct":false,"func_code":"def minimum(liste):\n if liste == []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste) - 1):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_26","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4520} {"submission_id":5367,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-05-04 21:47:09","correct":false,"func_code":"def minimum(liste):\n if liste == []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste) - 1):\n if liste[i] < liste[i + 1]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":5367} {"submission_id":4891,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-05-04 21:48:32","correct":false,"func_code":"def minimum(liste):\n if liste == []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste) - 1):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_26","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4891} {"submission_id":4248,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-05-04 21:50:46","correct":false,"func_code":"def minimum(liste):\n if liste == []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste) - 1):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_26","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4248} {"submission_id":728,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-05-04 21:51:19","correct":true,"func_code":"def minimum(liste):\n if liste == []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_26","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":728} {"submission_id":2516,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-05-04 21:51:34","correct":false,"func_code":"def minimum(liste):\n if liste == []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < liste[i + 1]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":2516} {"submission_id":1096,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-05-04 21:51:43","correct":false,"func_code":"def minimum(liste):\n if liste == []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > liste[i + 1]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":1096} {"submission_id":4167,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-05-04 21:51:43","correct":true,"func_code":"def maximum(liste):\n if liste == []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_26","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":4167} {"submission_id":4588,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-05-04 21:51:53","correct":false,"func_code":"def minimum(liste):\n if liste == []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < liste[i + 1]:\n res = liste[i]\n return res","user":"userdId_8","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4588} {"submission_id":4100,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-05-04 21:54:00","correct":true,"func_code":"def minimum(liste):\n if liste == []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] < res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":4100} {"submission_id":128,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-05-04 21:54:13","correct":true,"func_code":"def maximum(liste):\n if liste == []:\n res = None\n else:\n res = liste[0]\n for i in range(1, len(liste)):\n if liste[i] > res:\n res = liste[i]\n return res","user":"userdId_8","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":128} {"submission_id":3447,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-05-04 21:57:17","correct":true,"func_code":"def moyenne(liste):\n if liste == []:\n res = None\n else:\n res = 0\n for elem in liste:\n res += elem\n res = res \/ len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":3447} {"submission_id":2081,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-05-04 21:58:35","correct":false,"func_code":"def moyenne(liste):\n if liste == []:\n res = None\n res = 0\n for elem in liste:\n res += elem\n res = res \/ len(liste)\n return res","user":"userdId_8","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2081} {"submission_id":211,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-05-04 21:58:47","correct":true,"func_code":"def moyenne(liste):\n if liste == []:\n res = None\n else:\n res = 0\n for elem in liste:\n res += elem\n res \/= len(liste)\n return res","user":"userdId_26","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":211} {"submission_id":295,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-05-04 22:00:00","correct":false,"func_code":"def moyenne(liste):\n if liste == []:\n res = None\n else:\n res = 0\n for elem in liste:\n res += elem\n res = len(liste)\n return res","user":"userdId_8","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":295} {"submission_id":1290,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-05-04 22:00:21","correct":true,"func_code":"def moyenne(liste):\n if liste == []:\n res = None\n else:\n res = 0\n for elem in liste:\n res += elem\n res \/= len(liste)\n return res","user":"userdId_8","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":1290} {"submission_id":359,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-05-11 00:20:04","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) - 1:\n if scores[i] > score[i + 1]:\n ok = False\n return ok","user":"userdId_12","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":359} {"submission_id":1226,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-05-11 00:25:47","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) - 1:\n if scores[i] > score[i + 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_12","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1226} {"submission_id":979,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-05-11 00:25:56","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) - 1:\n if scores[i] > scores[i + 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_12","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":979} {"submission_id":5457,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-05-11 00:27:06","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n if len(scores) > 1:\n while i < len(scores) - 1:\n if scores[i] > scores[i + 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_12","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":5457} {"submission_id":2795,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-05-11 00:27:10","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n if len(scores) > 1:\n while i < len(scores) - 1:\n if scores[i] > scores[i + 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_12","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":2795} {"submission_id":1576,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-05-11 00:27:19","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n if len(scores) > 1:\n while i < len(scores) - 1 and ok:\n if scores[i] > scores[i + 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_12","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":1576} {"submission_id":4273,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-05-11 00:28:01","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n if len(scores) > 1:\n while i < len(scores) - 1 and ok:\n if scores[i] > scores[i + 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_12","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":4273} {"submission_id":3987,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-05-11 00:29:11","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n if len(scores) > 1:\n while i < len(scores) - 1 and ok:\n if scores[i] > scores[i + 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_12","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":3987} {"submission_id":2141,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-05-11 00:30:53","correct":false,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) - 1 and ok:\n if scores[i] > scores[i + 1]:\n ok = False\n i = i + 1\n return ok","user":"userdId_12","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":2141} {"submission_id":5076,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-05-11 00:31:01","correct":true,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) - 1 and ok:\n ok = scores[i] > scores[i + 1]\n i += 1\n return ok","user":"userdId_12","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":5076} {"submission_id":4107,"exercise_name":"099575e6c079f20c94ada89cac5c78a2","date":"2020-05-11 00:31:42","correct":true,"func_code":"def listeDecroissante(scores):\n ok = True\n i = 0\n while i < len(scores) - 1 and ok:\n if scores[i] < scores[i + 1]:\n ok = False\n i += 1\n return ok","user":"userdId_12","func_name":"listeDecroissante","assignment_id":"decreasing_list","test":"assert listeDecroissante([352100, 325410, 312785, 220199, 127853])==True and listeDecroissante([352100, 325410, 312785, 127853, 220199])==False and listeDecroissante([])==True and listeDecroissante([0, 2])==False and listeDecroissante([0])==True and listeDecroissante([-100, -50, 0])==False and listeDecroissante([-100, -200, -300])==True","description":"Check whether a list is sorted in descending order.","__index_level_0__":4107} {"submission_id":776,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-06-02 22:36:32","correct":true,"func_code":"def somme(liste):\n res = 0\n for i in range(len(liste)):\n res += liste[i]\n return res","user":"userdId_12","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":776} {"submission_id":909,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-06-02 22:37:00","correct":false,"func_code":"def somme(liste):\n res = 0\n for i in liste:\n res += liste[i]\n return res","user":"userdId_12","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":909} {"submission_id":4824,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-06-02 22:37:11","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res += liste[elem]\n return res","user":"userdId_12","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4824} {"submission_id":784,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-06-02 22:37:41","correct":false,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res = res + liste[elem]\n return res","user":"userdId_12","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":784} {"submission_id":4528,"exercise_name":"0122ce71b76597453e8389b0fd99ca17","date":"2020-06-02 22:38:01","correct":true,"func_code":"def somme(liste):\n res = 0\n for elem in liste:\n res += elem\n return res","user":"userdId_12","func_name":"somme","assignment_id":"sum","test":"assert somme([12, 1, 25, 7])==45 and somme([-3, 7, 18, -12])==10 and somme([-12, -1, -25, -7])==-45 and somme([])==0","description":"Return the sum of the elements in a list.","__index_level_0__":4528} {"submission_id":1706,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-06-02 22:39:02","correct":false,"func_code":"def maximum(liste):\n res = liste[0]\n for elem in liste:\n if elem > res:\n res = elem\n return res","user":"userdId_12","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":1706} {"submission_id":2111,"exercise_name":"d85f680ac36024b0de3381b816e252ce","date":"2020-06-02 22:49:46","correct":true,"func_code":"def maximum(liste):\n if len(liste) != 0:\n max = liste[0]\n for elem in liste:\n if elem > max:\n max = elem\n return max","user":"userdId_12","func_name":"maximum","assignment_id":"maximum","test":"assert maximum([12, 1, 25, 7])==25 and maximum([-3, 7, 18, -12])==18 and maximum([-12, -1, -25, -7])==-1 and maximum([])==None and maximum([])==None","description":"Return the maximum element in a list of numbers.","__index_level_0__":2111} {"submission_id":856,"exercise_name":"582dcbc047b264a41a011f56f86574ba","date":"2020-06-02 22:53:20","correct":true,"func_code":"def minimum(liste):\n if len(liste) != 0:\n min = liste[0]\n for elem in liste:\n if elem < min:\n min = elem\n return min","user":"userdId_12","func_name":"minimum","assignment_id":"minimum","test":"assert minimum([12, 1, 25, 7])==1 and minimum([-3, 7, 18, -12])==-12 and minimum([-12, -1, -25, -7])==-25 and minimum([])==None and minimum([])==None","description":"Return the minimum element in a list of numbers.","__index_level_0__":856} {"submission_id":4492,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-06-02 22:55:58","correct":false,"func_code":"def moyenne(liste):\n if len(liste) != 0:\n for elem in liste:\n num += elem\n res = num \/ len(liste)\n return res","user":"userdId_12","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":4492} {"submission_id":2710,"exercise_name":"6fc4a139f72ee6e245b9f97fcc15712e","date":"2020-06-02 22:56:16","correct":true,"func_code":"def moyenne(liste):\n if len(liste) != 0:\n num = 0\n for elem in liste:\n num += elem\n res = num \/ len(liste)\n return res","user":"userdId_12","func_name":"moyenne","assignment_id":"mean","test":"assert moyenne([5, 15])==10.0 and moyenne([-6, -4, -2, 0])==-3.0 and moyenne([])==None and moyenne([])==None and moyenne([12, 1, 25, 7])==11.25 and moyenne([-3, 7, 18, -12])==2.5 and moyenne([-12, -1, -25, -7])==-11.25","description":"Return the mean of a list of numbers.","__index_level_0__":2710}