Samples · lm_eval_harness.humaneval
KI-Auswertung
Generiert 2026-05-10 17:12 · claude-sonnet-4-6Zusammenfassung
Das Modell qwen3.6-35b-a3b-tq3 erreicht eine Pass-Rate von 56,7 % auf HumanEval, was für ein quantisiertes Modell dieser Größe ein mittelmäßiges Ergebnis darstellt — rund 44 % der 164 Aufgaben werden nicht korrekt gelöst.
Stärken
- Einfache algorithmische Aufgaben (Bitoperationen, Palindrom-Zählung, Sortierung nach Binärdarstellung) werden zuverlässig gelöst.
- Keine Laufzeitfehler (0 Errors), das Modell liefert stets syntaktisch validen Python-Code.
- Kurze, prägnante Implementierungen ohne unnötigen Overhead.
Schwächen
- Logikfehler bei Teilaufgaben: `largest_divisor` iteriert von 1 aufwärts statt von n-1 abwärts und gibt damit den kleinsten statt den größten Teiler zurück.
- Fehlende Hilfsfunktionen: `sum_product` ruft `product()` auf, das nicht definiert ist.
- Algorithmusverständnis: `fizz_buzz` zählt Zahlen statt Ziffern; `how_many_times` enthält einen Off-by-one-Fehler beim Substring-Suchen.
- `decode_cyclic` gibt denselben Code wie `encode_cyclic` zurück, ohne die inverse Operation zu implementieren.
Auffälligkeiten
Ein klares Muster in den Failures: Das Modell missversteht die Aufgabenspezifikation auf konzeptioneller Ebene (Zählung von Ziffern vs. Zahlen, kleinster vs. größter Teiler, Inverse einer Funktion). Zusätzlich fehlt bei einfachen Utility-Funktionen die Eigenimplementierung zugunsten nicht-existierender Built-ins. Die `parse_nested_parens`-Fehler deuten auf Schwächen bei zustandsbehafteter String-Verarbeitung hin.
Empfehlung
Den Sub-Bereich "algorithmische Korrektheit bei invertierten oder gespiegelten Operationen" sowie "Spezifikationsverständnis (Ziffer vs. Zahl, Min vs. Max)" gezielt mit Few-Shot-Prompting oder Chain-of-Thought-Anleitung untersuchen; alternativ Sampling-Temperatur leicht erhöhen (z. B. 0.2–0.4) und pass@k > 1 evaluieren.
Übersicht
164 Samples| Frage-ID | Status | Score | Prompt | Latenz | Tokens/s | TTFT | |
|---|---|---|---|---|---|---|---|
| 0 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef has_close_elements(numb… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 1 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef separate_paren_groups(p… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 2 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef truncate_number(number: float) -> float:\n \"… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 3 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef below_zero(operations: … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 4 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef mean_absolute_deviation… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 5 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef intersperse(numbers: Li… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 6 | failed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef parse_nested_parens(par… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 7 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef filter_by_substring(str… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 8 | failed | {…} {"gen_args_0":{"arg_0":"from typing import List, Tuple\n\n\ndef sum_product(numb… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 9 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List, Tuple\n\n\ndef rolling_max(numb… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 10 | failed | {…} {"gen_args_0":{"arg_0":"\n\ndef is_palindrome(string: str) -> bool:\n \"\"\" … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 11 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef string_xor(a: str, b: s… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 12 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List, Optional\n\n\ndef longest(strin… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 13 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef greatest_common_divisor(a: int, b: int) -> int:\… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 14 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef all_prefixes(string: st… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 15 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef string_sequence(n: int) -> str:\n \"\"\" Retu… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 16 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef count_distinct_characters(string: str) -> int:\n… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 17 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef parse_music(music_strin… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 18 | failed | {…} {"gen_args_0":{"arg_0":"\n\ndef how_many_times(string: str, substring: str) -> i… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 19 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef sort_numbers(numbers: s… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 20 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List, Tuple\n\n\ndef find_closest_ele… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 21 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef rescale_to_unit(numbers… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 22 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List, Any\n\n\ndef filter_integers(va… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 23 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef strlen(string: str) -> int:\n \"\"\" Return l… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 24 | failed | {…} {"gen_args_0":{"arg_0":"\n\ndef largest_divisor(n: int) -> int:\n \"\"\" For … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 25 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef factorize(n: int) -> Li… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 26 | failed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef remove_duplicates(numbe… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 27 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef flip_case(string: str) -> str:\n \"\"\" For a… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 28 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef concatenate(strings: Li… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 29 | passed | {…} {"gen_args_0":{"arg_0":"from typing import List\n\n\ndef filter_by_prefix(string… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 30 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef get_positive(l: list):\n \"\"\"Return only po… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 31 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef is_prime(n):\n \"\"\"Return true if a given n… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 32 | failed | {…} {"gen_args_0":{"arg_0":"import math\n\n\ndef poly(xs: list, x: float):\n \"\"… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 33 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef sort_third(l: list):\n \"\"\"This function ta… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 34 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef unique(l: list):\n \"\"\"Return sorted unique… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 35 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef max_element(l: list):\n \"\"\"Return maximum … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 36 | failed | {…} {"gen_args_0":{"arg_0":"\n\ndef fizz_buzz(n: int):\n \"\"\"Return the number … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 37 | failed | {…} {"gen_args_0":{"arg_0":"\n\ndef sort_even(l: list):\n \"\"\"This function tak… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 38 | failed | {…} {"gen_args_0":{"arg_0":"\n\ndef encode_cyclic(s: str):\n \"\"\"\n returns … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 39 | failed | {…} {"gen_args_0":{"arg_0":"\n\ndef prime_fib(n: int):\n \"\"\"\n prime_fib re… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 40 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef triples_sum_to_zero(l: list):\n \"\"\"\n t… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 41 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef car_race_collision(n: int):\n \"\"\"\n Ima… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 42 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef incr_list(l: list):\n \"\"\"Return list with … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 43 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef pairs_sum_to_zero(l):\n \"\"\"\n pairs_sum… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 44 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef change_base(x: int, base: int):\n \"\"\"Chang… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 45 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef triangle_area(a, h):\n \"\"\"Given length of … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 46 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef fib4(n: int):\n \"\"\"The Fib4 number sequenc… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 47 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef median(l: list):\n \"\"\"Return median of ele… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 48 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef is_palindrome(text: str):\n \"\"\"\n Check… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 49 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef modp(n: int, p: int):\n \"\"\"Return 2^n modu… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 50 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef encode_shift(s: str):\n \"\"\"\n returns e… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 51 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef remove_vowels(text):\n \"\"\"\n remove_vow… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 52 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef below_threshold(l: list, t: int):\n \"\"\"Ret… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 53 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef add(x: int, y: int):\n \"\"\"Add two numbers … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 54 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef same_chars(s0: str, s1: str):\n \"\"\"\n C… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 55 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef fib(n: int):\n \"\"\"Return n-th Fibonacci nu… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 56 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef correct_bracketing(brackets: str):\n \"\"\" b… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 57 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef monotonic(l: list):\n \"\"\"Return True is li… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 58 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef common(l1: list, l2: list):\n \"\"\"Return so… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 59 | failed | {…} {"gen_args_0":{"arg_0":"\n\ndef largest_prime_factor(n: int):\n \"\"\"Return … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 60 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef sum_to_n(n: int):\n \"\"\"sum_to_n is a funct… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 61 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef correct_bracketing(brackets: str):\n \"\"\" b… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 62 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef derivative(xs: list):\n \"\"\" xs represent c… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 63 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef fibfib(n: int):\n \"\"\"The FibFib number seq… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 64 | passed | {…} {"gen_args_0":{"arg_0":"\nFIX = \"\"\"\nAdd more test cases.\n\"\"\"\n\ndef vowe… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 65 | failed | {…} {"gen_args_0":{"arg_0":"\ndef circular_shift(x, shift):\n \"\"\"Circular shif… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 66 | passed | {…} {"gen_args_0":{"arg_0":"\ndef digitSum(s):\n \"\"\"Task\n Write a function… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 67 | failed | {…} {"gen_args_0":{"arg_0":"\ndef fruit_distribution(s,n):\n \"\"\"\n In this … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 68 | passed | {…} {"gen_args_0":{"arg_0":"\ndef pluck(arr):\n \"\"\"\n \"Given an array repr… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 69 | failed | {…} {"gen_args_0":{"arg_0":"\ndef search(lst):\n '''\n You are given a non-emp… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 70 | passed | {…} {"gen_args_0":{"arg_0":"\ndef strange_sort_list(lst):\n '''\n Given list o… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 71 | passed | {…} {"gen_args_0":{"arg_0":"\ndef triangle_area(a, b, c):\n '''\n Given the le… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 72 | passed | {…} {"gen_args_0":{"arg_0":"\ndef will_it_fly(q,w):\n '''\n Write a function t… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 73 | failed | {…} {"gen_args_0":{"arg_0":"\ndef smallest_change(arr):\n \"\"\"\n Given an ar… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 74 | passed | {…} {"gen_args_0":{"arg_0":"\ndef total_match(lst1, lst2):\n '''\n Write a fun… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 75 | failed | {…} {"gen_args_0":{"arg_0":"\ndef is_multiply_prime(a):\n \"\"\"Write a function … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 76 | failed | {…} {"gen_args_0":{"arg_0":"\ndef is_simple_power(x, n):\n \"\"\"Your task is to … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 77 | failed | {…} {"gen_args_0":{"arg_0":"\ndef iscube(a):\n '''\n Write a function that tak… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 78 | passed | {…} {"gen_args_0":{"arg_0":"\ndef hex_key(num):\n \"\"\"You have been tasked to w… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 79 | passed | {…} {"gen_args_0":{"arg_0":"\ndef decimal_to_binary(decimal):\n \"\"\"You will be… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 80 | passed | {…} {"gen_args_0":{"arg_0":"\ndef is_happy(s):\n \"\"\"You are given a string s.\… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 81 | failed | {…} {"gen_args_0":{"arg_0":"\ndef numerical_letter_grade(grades):\n \"\"\"It is t… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 82 | passed | {…} {"gen_args_0":{"arg_0":"\ndef prime_length(string):\n \"\"\"Write a function … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 83 | failed | {…} {"gen_args_0":{"arg_0":"\ndef starts_one_ends(n):\n \"\"\"\n Given a posit… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 84 | failed | {…} {"gen_args_0":{"arg_0":"\ndef solve(N):\n \"\"\"Given a positive integer N, r… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 85 | passed | {…} {"gen_args_0":{"arg_0":"\ndef add(lst):\n \"\"\"Given a non-empty list of int… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 86 | failed | {…} {"gen_args_0":{"arg_0":"\ndef anti_shuffle(s):\n \"\"\"\n Write a function… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 87 | failed | {…} {"gen_args_0":{"arg_0":"\ndef get_row(lst, x):\n \"\"\"\n You are given a … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 88 | passed | {…} {"gen_args_0":{"arg_0":"\ndef sort_array(array):\n \"\"\"\n Given an array… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 89 | failed | {…} {"gen_args_0":{"arg_0":"\ndef encrypt(s):\n \"\"\"Create a function encrypt t… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 90 | passed | {…} {"gen_args_0":{"arg_0":"\ndef next_smallest(lst):\n \"\"\"\n You are given… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 91 | failed | {…} {"gen_args_0":{"arg_0":"\ndef is_bored(S):\n \"\"\"\n You'll be given a st… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 92 | failed | {…} {"gen_args_0":{"arg_0":"\ndef any_int(x, y, z):\n '''\n Create a function … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 93 | failed | {…} {"gen_args_0":{"arg_0":"\ndef encode(message):\n \"\"\"\n Write a function… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 94 | failed | {…} {"gen_args_0":{"arg_0":"\n\ndef skjkasdkd(lst):\n \"\"\"You are given a list … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 95 | failed | {…} {"gen_args_0":{"arg_0":"\ndef check_dict_case(dict):\n \"\"\"\n Given a di… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 96 | failed | {…} {"gen_args_0":{"arg_0":"\ndef count_up_to(n):\n \"\"\"Implement a function th… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 97 | passed | {…} {"gen_args_0":{"arg_0":"\ndef multiply(a, b):\n \"\"\"Complete the function t… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 98 | failed | {…} {"gen_args_0":{"arg_0":"\ndef count_upper(s):\n \"\"\"\n Given a string s,… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 99 | failed | {…} {"gen_args_0":{"arg_0":"\ndef closest_integer(value):\n '''\n Create a fun… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 100 | passed | {…} {"gen_args_0":{"arg_0":"\ndef make_a_pile(n):\n \"\"\"\n Given a positive … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 101 | failed | {…} {"gen_args_0":{"arg_0":"\ndef words_string(s):\n \"\"\"\n You will be give… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 102 | passed | {…} {"gen_args_0":{"arg_0":"\ndef choose_num(x, y):\n \"\"\"This function takes t… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 103 | passed | {…} {"gen_args_0":{"arg_0":"\ndef rounded_avg(n, m):\n \"\"\"You are given two po… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 104 | passed | {…} {"gen_args_0":{"arg_0":"\ndef unique_digits(x):\n \"\"\"Given a list of posit… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 105 | failed | {…} {"gen_args_0":{"arg_0":"\ndef by_length(arr):\n \"\"\"\n Given an array of… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 106 | failed | {…} {"gen_args_0":{"arg_0":"\ndef f(n):\n \"\"\" Implement the function f that ta… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 107 | passed | {…} {"gen_args_0":{"arg_0":"\ndef even_odd_palindrome(n):\n \"\"\"\n Given a p… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 108 | failed | {…} {"gen_args_0":{"arg_0":"\ndef count_nums(arr):\n \"\"\"\n Write a function… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 109 | failed | {…} {"gen_args_0":{"arg_0":"\ndef move_one_ball(arr):\n \"\"\"We have an array 'a… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 110 | failed | {…} {"gen_args_0":{"arg_0":"\ndef exchange(lst1, lst2):\n \"\"\"In this problem, … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 111 | failed | {…} {"gen_args_0":{"arg_0":"\ndef histogram(test):\n \"\"\"Given a string represe… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 112 | failed | {…} {"gen_args_0":{"arg_0":"\ndef reverse_delete(s,c):\n \"\"\"Task\n We are g… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 113 | failed | {…} {"gen_args_0":{"arg_0":"\ndef odd_count(lst):\n \"\"\"Given a list of strings… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 114 | failed | {…} {"gen_args_0":{"arg_0":"\ndef minSubArraySum(nums):\n \"\"\"\n Given an ar… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 115 | failed | {…} {"gen_args_0":{"arg_0":"\ndef max_fill(grid, capacity):\n import math\n \"… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 116 | passed | {…} {"gen_args_0":{"arg_0":"\ndef sort_array(arr):\n \"\"\"\n In this Kata, yo… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 117 | failed | {…} {"gen_args_0":{"arg_0":"\ndef select_words(s, n):\n \"\"\"Given a string s an… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 118 | passed | {…} {"gen_args_0":{"arg_0":"\ndef get_closest_vowel(word):\n \"\"\"You are given … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 119 | failed | {…} {"gen_args_0":{"arg_0":"\ndef match_parens(lst):\n '''\n You are given a l… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 120 | failed | {…} {"gen_args_0":{"arg_0":"\ndef maximum(arr, k):\n \"\"\"\n Given an array a… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 121 | passed | {…} {"gen_args_0":{"arg_0":"\ndef solution(lst):\n \"\"\"Given a non-empty list o… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 122 | passed | {…} {"gen_args_0":{"arg_0":"\ndef add_elements(arr, k):\n \"\"\"\n Given a non… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 123 | failed | {…} {"gen_args_0":{"arg_0":"\ndef get_odd_collatz(n):\n \"\"\"\n Given a posit… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 124 | passed | {…} {"gen_args_0":{"arg_0":"\ndef valid_date(date):\n \"\"\"You have to write a f… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 125 | failed | {…} {"gen_args_0":{"arg_0":"\ndef split_words(txt):\n '''\n Given a string of … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 126 | failed | {…} {"gen_args_0":{"arg_0":"\ndef is_sorted(lst):\n '''\n Given a list of numb… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 127 | failed | {…} {"gen_args_0":{"arg_0":"\ndef intersection(interval1, interval2):\n \"\"\"You… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 128 | failed | {…} {"gen_args_0":{"arg_0":"\ndef prod_signs(arr):\n \"\"\"\n You are given an… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 129 | passed | {…} {"gen_args_0":{"arg_0":"\ndef minPath(grid, k):\n \"\"\"\n Given a grid wi… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 130 | failed | {…} {"gen_args_0":{"arg_0":"\ndef tri(n):\n \"\"\"Everyone knows Fibonacci sequen… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 131 | failed | {…} {"gen_args_0":{"arg_0":"\ndef digits(n):\n \"\"\"Given a positive integer n, … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 132 | failed | {…} {"gen_args_0":{"arg_0":"\ndef is_nested(string):\n '''\n Create a function… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 133 | passed | {…} {"gen_args_0":{"arg_0":"\n\ndef sum_squares(lst):\n \"\"\"You are given a lis… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 134 | failed | {…} {"gen_args_0":{"arg_0":"\ndef check_if_last_char_is_a_letter(txt):\n '''\n … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 135 | passed | {…} {"gen_args_0":{"arg_0":"\ndef can_arrange(arr):\n \"\"\"Create a function whi… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 136 | failed | {…} {"gen_args_0":{"arg_0":"\ndef largest_smallest_integers(lst):\n '''\n Crea… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 137 | failed | {…} {"gen_args_0":{"arg_0":"\ndef compare_one(a, b):\n \"\"\"\n Create a funct… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 138 | passed | {…} {"gen_args_0":{"arg_0":"\ndef is_equal_to_sum_even(n):\n \"\"\"Evaluate wheth… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 139 | failed | {…} {"gen_args_0":{"arg_0":"\ndef special_factorial(n):\n \"\"\"The Brazilian fac… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 140 | failed | {…} {"gen_args_0":{"arg_0":"\ndef fix_spaces(text):\n \"\"\"\n Given a string … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 141 | failed | {…} {"gen_args_0":{"arg_0":"\ndef file_name_check(file_name):\n \"\"\"Create a fu… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 142 | passed | {…} {"gen_args_0":{"arg_0":"\n\n\ndef sum_squares(lst):\n \"\"\"\"\n This func… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 143 | passed | {…} {"gen_args_0":{"arg_0":"\ndef words_in_sentence(sentence):\n \"\"\"\n You … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 144 | passed | {…} {"gen_args_0":{"arg_0":"\ndef simplify(x, n):\n \"\"\"Your task is to impleme… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 145 | failed | {…} {"gen_args_0":{"arg_0":"\ndef order_by_points(nums):\n \"\"\"\n Write a fu… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 146 | passed | {…} {"gen_args_0":{"arg_0":"\ndef specialFilter(nums):\n \"\"\"Write a function t… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 147 | passed | {…} {"gen_args_0":{"arg_0":"\ndef get_max_triples(n):\n \"\"\"\n You are given… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 148 | failed | {…} {"gen_args_0":{"arg_0":"\ndef bf(planet1, planet2):\n '''\n There are eigh… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 149 | failed | {…} {"gen_args_0":{"arg_0":"\ndef sorted_list_sum(lst):\n \"\"\"Write a function … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 150 | failed | {…} {"gen_args_0":{"arg_0":"\ndef x_or_y(n, x, y):\n \"\"\"A simple program which… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 151 | failed | {…} {"gen_args_0":{"arg_0":"\ndef double_the_difference(lst):\n '''\n Given a … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 152 | passed | {…} {"gen_args_0":{"arg_0":"\ndef compare(game,guess):\n \"\"\"I think we all rem… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 153 | passed | {…} {"gen_args_0":{"arg_0":"\ndef Strongest_Extension(class_name, extensions):\n … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 154 | passed | {…} {"gen_args_0":{"arg_0":"\ndef cycpattern_check(a , b):\n \"\"\"You are given … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 155 | failed | {…} {"gen_args_0":{"arg_0":"\ndef even_odd_count(num):\n \"\"\"Given an integer. … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 156 | passed | {…} {"gen_args_0":{"arg_0":"\ndef int_to_mini_roman(number):\n \"\"\"\n Given … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 157 | passed | {…} {"gen_args_0":{"arg_0":"\ndef right_angle_triangle(a, b, c):\n '''\n Given… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 158 | failed | {…} {"gen_args_0":{"arg_0":"\ndef find_max(words):\n \"\"\"Write a function that … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 159 | passed | {…} {"gen_args_0":{"arg_0":"\ndef eat(number, need, remaining):\n \"\"\"\n You… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 160 | failed | {…} {"gen_args_0":{"arg_0":"\ndef do_algebra(operator, operand):\n \"\"\"\n Gi… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 161 | passed | {…} {"gen_args_0":{"arg_0":"\ndef solve(s):\n \"\"\"You are given a string s.\n … | — | — | — | ||
|
Lade Detail …
|
|||||||
| 162 | failed | {…} {"gen_args_0":{"arg_0":"\ndef string_to_md5(text):\n \"\"\"\n Given a stri… | — | — | — | ||
|
Lade Detail …
|
|||||||
| 163 | failed | {…} {"gen_args_0":{"arg_0":"\ndef generate_integers(a, b):\n \"\"\"\n Given tw… | — | — | — | ||
|
Lade Detail …
|
|||||||