|
| 1 | +{ |
| 2 | + "requirements": [ |
| 3 | + { |
| 4 | + "identifier": "test_validar_melhor_horario_com_sucesso", |
| 5 | + "description": "1.1 - Retorne, para uma entrada específica, a quantidade de estudantes presentes", |
| 6 | + "bonus": false |
| 7 | + }, |
| 8 | + { |
| 9 | + "identifier": "test_validar_permanence_periods_com_entradas_invalidas", |
| 10 | + "description": "1.2 - Retorne `None` se em `permanence_period` houver alguma entrada inválida", |
| 11 | + "bonus": false |
| 12 | + }, |
| 13 | + { |
| 14 | + "identifier": "test_validar_target_time_com_vazio", |
| 15 | + "description": "1.3 - Retorne `None` se `target_time` recebe um valor vazio", |
| 16 | + "bonus": false |
| 17 | + }, |
| 18 | + { |
| 19 | + "identifier": "test_validar_tempo_schedule", |
| 20 | + "description": "1.4 - A função poderá, em menos que 0.02s, ser executada 10.000 vezes para uma entrada pequena (tempo da execução do avaliador no Pull Request)", |
| 21 | + "bonus": false |
| 22 | + }, |
| 23 | + { |
| 24 | + "identifier": "test_validar_se_a_palavra_e_um_palindromo_retorna_true", |
| 25 | + "description": "2.1 - Retorne `true` se a palavra passada por parâmetro for um palíndromo", |
| 26 | + "bonus": false |
| 27 | + }, |
| 28 | + { |
| 29 | + "identifier": "test_validar_se_a_palavra_nao_e_um_palindromo_retorna_false", |
| 30 | + "description": "2.2 - Retorne `false` se a palavra passada por parâmetro não for um palíndromo", |
| 31 | + "bonus": false |
| 32 | + }, |
| 33 | + { |
| 34 | + "identifier": "test_validar_se_nao_passar_palavra_retorna_false", |
| 35 | + "description": "2.3 - Retorne `false` se nenhuma palavra for passada por parâmetro", |
| 36 | + "bonus": false |
| 37 | + }, |
| 38 | + { |
| 39 | + "identifier": "test_validar_se_as_palavras_sao_um_anagrama", |
| 40 | + "description": "3.1 - Retorne `true` se as palavras passadas forem anagramas", |
| 41 | + "bonus": false |
| 42 | + }, |
| 43 | + { |
| 44 | + "identifier": "test_validar_se_as_palavras_nao_sao_um_anagrama", |
| 45 | + "description": "3.2 - Retorne `false` se as palavras passadas por parâmetro não forem anagramas", |
| 46 | + "bonus": false |
| 47 | + }, |
| 48 | + { |
| 49 | + "identifier": "test_valida_palavra_em_branco_retorna_false", |
| 50 | + "description": "3.3 - Retorne `false` se alguma das palavras passadas por parâmetro for uma string vazia", |
| 51 | + "bonus": false |
| 52 | + }, |
| 53 | + { |
| 54 | + "identifier": "test_validar_tempo_anagrama", |
| 55 | + "description": "3.4 - Execute a função, somando 10.000 execuções para uma entrada pequena, em menos que 8.2s (tempo da execução do avaliador no Pull Request)", |
| 56 | + "bonus": false |
| 57 | + }, |
| 58 | + { |
| 59 | + "identifier": "test_validar_se_encontra_numeros_repetidos", |
| 60 | + "description": "4.1 - Retorne o número repetivo se a função receber, como parâmetro, uma lista com números repetidos", |
| 61 | + "bonus": true |
| 62 | + }, |
| 63 | + { |
| 64 | + "identifier": "test_validar_se_retorna_false_quando_nao_envia_valores", |
| 65 | + "description": "4.2 - Retorne `false` se a função não receber nenhum parâmetro", |
| 66 | + "bonus": true |
| 67 | + }, |
| 68 | + { |
| 69 | + "identifier": "test_validar_se_retorna_false_quando_envia_string", |
| 70 | + "description": "4.3 - Retorne `false` se a função receber, como parâmetro, uma string", |
| 71 | + "bonus": true |
| 72 | + }, |
| 73 | + { |
| 74 | + "identifier": "test_validar_se_retorna_false_quando_nao_ha_repeticao", |
| 75 | + "description": "4.4 - Retorne `false` se a função receber, como parâmetro, uma lista sem números repetidos", |
| 76 | + "bonus": true |
| 77 | + }, |
| 78 | + { |
| 79 | + "identifier": "test_validar_se_retorna_false_quando_passa_um_valor_apenas", |
| 80 | + "description": "4.5 - Retorne `false` se a função receber, como parâmetro, apenas um valor", |
| 81 | + "bonus": true |
| 82 | + }, |
| 83 | + { |
| 84 | + "identifier": "test_validar_se_retorna_false_quando_passa_numero_negativo", |
| 85 | + "description": "4.6 - Retorne `false` se a função receber, como parâmetro, um número negativo", |
| 86 | + "bonus": true |
| 87 | + }, |
| 88 | + { |
| 89 | + "identifier": "test_validar_tempo_duplicate", |
| 90 | + "description": "4.7 - Execute a função, somando 10.000 execuções para uma entrada pequena, em menos que 0.01s (tempo da execução do avaliador no Pull Request)", |
| 91 | + "bonus": true |
| 92 | + }, |
| 93 | + { |
| 94 | + "identifier": "test_validar_se_a_palavra_e_um_palindromo_iterativo_retorna_true", |
| 95 | + "description": "5.1 - Retorne `true` se a palavra passada como parâmetro for um palíndromo, executando uma função iterativa", |
| 96 | + "bonus": true |
| 97 | + }, |
| 98 | + { |
| 99 | + "identifier": "test_validar_se_a_palavra_nao_e_um_palindromo_iterativo_retorna_false", |
| 100 | + "description": "5.2 - Retorne true se a palavra passada como parâmetro for um palíndromo, executando uma função iterativa", |
| 101 | + "bonus": true |
| 102 | + }, |
| 103 | + { |
| 104 | + "identifier": "test_validar_se_nao_passar_palavra_iterativa_retorna_false", |
| 105 | + "description": "5.3 - Retorne `false` se nenhuma palavra for passada como parâmetro, executando uma função iterativa", |
| 106 | + "bonus": true |
| 107 | + }, |
| 108 | + { |
| 109 | + "identifier": "test_validar_tempo_iterative", |
| 110 | + "description": "5.4 - Execute a função, somando 10.000 execuções para uma entrada pequena, em menos que 0.005s (tempo da execução do avaliador no Pull Request)", |
| 111 | + "bonus": true |
| 112 | + } |
| 113 | + ] |
| 114 | +} |
0 commit comments