| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| [missing student identity] | failed | 0.0 |
Student notebook missing personalized name/roll_number.
Please define:
name = 'Your Name' roll_number = 'Your Roll Number' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
NameError: name 'numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| [missing student identity] | failed | 0.0 |
Student notebook missing personalized name/roll_number.
Please define:
name = 'Your Name' roll_number = 'Your Roll Number' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | failed | 0.0 |
NameError: name 'check_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_number(-3) == 'Negative' | failed | 0.0 |
NameError: name 'check_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_number(0) == 'Zero' | failed | 0.0 |
NameError: name 'check_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| [missing student identity] | failed | 0.0 |
Student notebook missing personalized name/roll_number.
Please define:
name = 'Your Name' roll_number = 'Your Roll Number' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | failed | 0.0 |
NameError: name 'even_or_odd' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert even_or_odd(3) == 'Odd' | failed | 0.0 |
NameError: name 'even_or_odd' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
Assertion failed.
Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] Expected: [1, 2, 3, 4, 5] Actual: 5 Diff: --- Expected +++ Actual @@ -1 +1 @@ -[1, 2, 3, 4, 5] +5 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
Assertion failed.
Assertion: assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('python') == 'Access Granted' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert check_password('PYTHON') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('PYTHON') == 'Access Denied' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert check_password('java') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('java') == 'Access Denied' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | failed | 0.0 |
Assertion failed.
Assertion: assert larger_number(4, 9) == 9 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert larger_number(10, 3) == 10 | failed | 0.0 |
Assertion failed.
Assertion: assert larger_number(10, 3) == 10 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert larger_number(5, 5) == 5 | failed | 0.0 |
Assertion failed.
Assertion: assert larger_number(5, 5) == 5 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | failed | 0.0 |
Assertion failed.
Assertion: assert even_or_odd(2) == 'Even' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert even_or_odd(3) == 'Odd' | failed | 0.0 |
Assertion failed.
Assertion: assert even_or_odd(3) == 'Odd' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | failed | 0.0 |
Assertion failed.
Assertion: assert sum_1_to_n(5) == 15 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert sum_1_to_n(10) == 55 | failed | 0.0 |
Assertion failed.
Assertion: assert sum_1_to_n(10) == 55 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| [missing student identity] | failed | 0.0 |
Student notebook missing personalized name/roll_number.
Please define:
name = 'Your Name' roll_number = 'Your Roll Number' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
Assertion failed.
Assertion: assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] Expected: [2, 4, 6, 8, 10] Actual: (1, False) Diff: --- Expected +++ Actual @@ -1 +1 @@ -[2, 4, 6, 8, 10] +(1, False) |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert larger_number(10, 3) == 10 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert larger_number(5, 5) == 5 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | failed | 0.0 |
Assertion failed.
Assertion: assert even_or_odd(2) == 'Even' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert even_or_odd(3) == 'Odd' | failed | 0.0 |
Assertion failed.
Assertion: assert even_or_odd(3) == 'Odd' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| [missing student identity] | failed | 0.0 |
Student notebook missing personalized name/roll_number.
Please define:
name = 'Your Name' roll_number = 'Your Roll Number' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | failed | 0.0 |
Assertion failed.
Assertion: assert even_or_odd(2) == 'Even' Expected: 'Even' Actual: 'even' Diff: --- Expected +++ Actual @@ -1 +1 @@ -'Even' +'even' |
| assert even_or_odd(3) == 'Odd' | failed | 0.0 |
Assertion failed.
Assertion: assert even_or_odd(3) == 'Odd' Expected: 'Odd' Actual: 'odd' Diff: --- Expected +++ Actual @@ -1 +1 @@ -'Odd' +'odd' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
NameError: name 'numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| [missing student identity] | failed | 0.0 |
Student notebook missing personalized name/roll_number.
Please define:
name = 'Your Name' roll_number = 'Your Roll Number' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| [missing student identity] | failed | 0.0 |
Student notebook missing personalized name/roll_number.
Please define:
name = 'Your Name' roll_number = 'Your Roll Number' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| [missing student identity] | failed | 0.0 |
Student notebook missing personalized name/roll_number.
Please define:
name = 'Your Name' roll_number = 'Your Roll Number' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| [missing student identity] | failed | 0.0 |
Student notebook missing personalized name/roll_number.
Please define:
name = 'Your Name' roll_number = 'Your Roll Number' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('python') == 'Access Granted' Expected: 'Access Granted' Actual: 'Access granted' Diff: --- Expected +++ Actual @@ -1 +1 @@ -'Access Granted' +'Access granted' |
| assert check_password('PYTHON') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('PYTHON') == 'Access Denied' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert check_password('java') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('java') == 'Access Denied' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | failed | 0.0 |
NameError: name 'even_or_odd' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert even_or_odd(3) == 'Odd' | failed | 0.0 |
NameError: name 'even_or_odd' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
NameError: name 'numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | failed | 0.0 |
NameError: name 'square_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert square_number(0) == 0 | failed | 0.0 |
NameError: name 'square_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert larger_number(10, 3) == 10 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert larger_number(5, 5) == 5 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | failed | 0.0 |
NameError: name 'sum_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert sum_1_to_n(10) == 55 | failed | 0.0 |
NameError: name 'sum_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | failed | 0.0 |
NameError: name 'squares_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| [missing student identity] | failed | 0.0 |
Student notebook missing personalized name/roll_number.
Please define:
name = 'Your Name' roll_number = 'Your Roll Number' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | failed | 0.0 |
Assertion failed.
Assertion: assert squares_1_to_n(5) == [1, 4, 9, 16, 25] Expected: [1, 4, 9, 16, 25] Actual: [2, 4, 6, 8, 10] Diff: --- Expected +++ Actual @@ -1 +1 @@ -[1, 4, 9, 16, 25] +[2, 4, 6, 8, 10] |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('PYTHON') == 'Access Denied' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert check_password('java') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('java') == 'Access Denied' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | failed | 0.0 |
Assertion failed.
Assertion: assert squares_1_to_n(5) == [1, 4, 9, 16, 25] Expected: [1, 4, 9, 16, 25] Actual: [2, 4, 6, 8, 10] Diff: --- Expected +++ Actual @@ -1 +1 @@ -[1, 4, 9, 16, 25] +[2, 4, 6, 8, 10] |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_password('PYTHON') == 'Access Denied' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_password('java') == 'Access Denied' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | failed | 0.0 |
Assertion failed.
Assertion: assert squares_1_to_n(5) == [1, 4, 9, 16, 25] Expected: [1, 4, 9, 16, 25] Actual: [2, 4, 6, 8, 10] Diff: --- Expected +++ Actual @@ -1 +1 @@ -[1, 4, 9, 16, 25] +[2, 4, 6, 8, 10] |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
Assertion failed.
Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
Assertion failed.
Assertion: assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | failed | 0.0 |
Assertion failed.
Assertion: assert square_number(4) == 16 Expected: 16 Actual: 256 Diff: --- Expected +++ Actual @@ -1 +1 @@ -16 +256 |
| assert square_number(0) == 0 | failed | 0.0 |
Assertion failed.
Assertion: assert square_number(0) == 0 Expected: 0 Actual: 1 Diff: --- Expected +++ Actual @@ -1 +1 @@ -0 +1 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('python') == 'Access Granted' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert check_password('PYTHON') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('PYTHON') == 'Access Denied' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert check_password('java') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('java') == 'Access Denied' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | failed | 0.0 |
Assertion failed.
Assertion: assert larger_number(4, 9) == 9 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert larger_number(10, 3) == 10 | failed | 0.0 |
Assertion failed.
Assertion: assert larger_number(10, 3) == 10 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert larger_number(5, 5) == 5 | failed | 0.0 |
Assertion failed.
Assertion: assert larger_number(5, 5) == 5 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | failed | 0.0 |
Assertion failed.
Assertion: assert even_or_odd(2) == 'Even' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert even_or_odd(3) == 'Odd' | failed | 0.0 |
Assertion failed.
Assertion: assert even_or_odd(3) == 'Odd' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | failed | 0.0 |
Assertion failed.
Assertion: assert sum_1_to_n(5) == 15 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert sum_1_to_n(10) == 55 | failed | 0.0 |
Assertion failed.
Assertion: assert sum_1_to_n(10) == 55 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | failed | 0.0 |
TypeError: type NoneType doesn't define __round__
method
This often means the function returned the wrong data type. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> TypeError: type NoneType doesn't define __round__ method |
| assert average_of_three(3, 3, 3) == 3 | failed | 0.0 |
Assertion failed.
Assertion: assert average_of_three(3, 3, 3) == 3 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert average_of_three(10, 0, 5) == 5 | failed | 0.0 |
Assertion failed.
Assertion: assert average_of_three(10, 0, 5) == 5 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
Assertion failed.
Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] Expected: [1, 2, 3, 4, 5] Actual: 5 Diff: --- Expected +++ Actual @@ -1 +1 @@ -[1, 2, 3, 4, 5] +5 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
Assertion failed.
Assertion: assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('python') == 'Access Granted' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert check_password('PYTHON') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('PYTHON') == 'Access Denied' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert check_password('java') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('java') == 'Access Denied' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | failed | 0.0 |
Assertion failed.
Assertion: assert larger_number(4, 9) == 9 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert larger_number(10, 3) == 10 | failed | 0.0 |
Assertion failed.
Assertion: assert larger_number(10, 3) == 10 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert larger_number(5, 5) == 5 | failed | 0.0 |
Assertion failed.
Assertion: assert larger_number(5, 5) == 5 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | failed | 0.0 |
Assertion failed.
Assertion: assert even_or_odd(2) == 'Even' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert even_or_odd(3) == 'Odd' | failed | 0.0 |
Assertion failed.
Assertion: assert even_or_odd(3) == 'Odd' Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | failed | 0.0 |
Assertion failed.
Assertion: assert sum_1_to_n(5) == 15 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| assert sum_1_to_n(10) == 55 | failed | 0.0 |
Assertion failed.
Assertion: assert sum_1_to_n(10) == 55 Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
NameError: name 'numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_password('PYTHON') == 'Access Denied' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_password('java') == 'Access Denied' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert larger_number(10, 3) == 10 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert larger_number(5, 5) == 5 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | failed | 0.0 |
NameError: name 'even_or_odd' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert even_or_odd(3) == 'Odd' | failed | 0.0 |
NameError: name 'even_or_odd' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | failed | 0.0 |
NameError: name 'sum_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert sum_1_to_n(10) == 55 | failed | 0.0 |
NameError: name 'sum_1_to_n' is not defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | failed | 0.0 |
NameError: name 'squares_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | failed | 0.0 |
NameError: name 'average_of_three' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert average_of_three(3, 3, 3) == 3 | failed | 0.0 |
NameError: name 'average_of_three' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert average_of_three(10, 0, 5) == 5 | failed | 0.0 |
NameError: name 'average_of_three' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
NameError: name 'numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | failed | 0.0 |
NameError: name 'even_or_odd' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert even_or_odd(3) == 'Odd' | failed | 0.0 |
NameError: name 'even_or_odd' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | failed | 0.0 |
NameError: name 'squares_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
NameError: name 'numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('python') == 'Access Granted' Expected: 'Access Granted' Actual: False Diff: --- Expected +++ Actual @@ -1 +1 @@ -'Access Granted' +False |
| assert check_password('PYTHON') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('PYTHON') == 'Access Denied' Expected: 'Access Denied' Actual: False Diff: --- Expected +++ Actual @@ -1 +1 @@ -'Access Denied' +False |
| assert check_password('java') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('java') == 'Access Denied' Expected: 'Access Denied' Actual: False Diff: --- Expected +++ Actual @@ -1 +1 @@ -'Access Denied' +False |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('python') == 'Access Granted' Expected: 'Access Granted' Actual: False Diff: --- Expected +++ Actual @@ -1 +1 @@ -'Access Granted' +False |
| assert check_password('PYTHON') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('PYTHON') == 'Access Denied' Expected: 'Access Denied' Actual: False Diff: --- Expected +++ Actual @@ -1 +1 @@ -'Access Denied' +False |
| assert check_password('java') == 'Access Denied' | failed | 0.0 |
Assertion failed.
Assertion: assert check_password('java') == 'Access Denied' Expected: 'Access Denied' Actual: False Diff: --- Expected +++ Actual @@ -1 +1 @@ -'Access Denied' +False |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | failed | 0.0 |
Assertion failed.
Assertion: assert even_or_odd(2) == 'Even' Expected: 'Even' Actual: 'even' Diff: --- Expected +++ Actual @@ -1 +1 @@ -'Even' +'even' |
| assert even_or_odd(3) == 'Odd' | failed | 0.0 |
Assertion failed.
Assertion: assert even_or_odd(3) == 'Odd' Expected: 'Odd' Actual: 'odd' Diff: --- Expected +++ Actual @@ -1 +1 @@ -'Odd' +'odd' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
Assertion failed.
Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_password('PYTHON') == 'Access Denied' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_password('java') == 'Access Denied' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
Assertion failed.
Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] Expected: [1, 2, 3, 4, 5] Actual: [2, 4] Diff: --- Expected +++ Actual @@ -1 +1 @@ -[1, 2, 3, 4, 5] +[2, 4] |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
Assertion failed.
Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_password('PYTHON') == 'Access Denied' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_password('java') == 'Access Denied' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
Assertion failed.
Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_password('PYTHON') == 'Access Denied' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_password('java') == 'Access Denied' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
NameError: name 'numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | failed | 0.0 |
NameError: name 'even_or_odd' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert even_or_odd(3) == 'Odd' | failed | 0.0 |
NameError: name 'even_or_odd' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| [missing student identity] | failed | 0.0 |
Student notebook missing personalized name/roll_number.
Please define:
name = 'Your Name' roll_number = 'Your Roll Number' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| [missing student identity] | failed | 0.0 |
Student notebook missing personalized name/roll_number.
Please define:
name = 'Your Name' roll_number = 'Your Roll Number' |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
NameError: name 'numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | failed | 0.0 |
NameError: name 'square_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert square_number(0) == 0 | failed | 0.0 |
NameError: name 'square_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | failed | 0.0 |
NameError: name 'squares_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
NameError: name 'numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | failed | 0.0 |
NameError: name 'square_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert square_number(0) == 0 | failed | 0.0 |
NameError: name 'square_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert larger_number(10, 3) == 10 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert larger_number(5, 5) == 5 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | failed | 0.0 |
NameError: name 'average_of_three' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert average_of_three(3, 3, 3) == 3 | failed | 0.0 |
NameError: name 'average_of_three' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert average_of_three(10, 0, 5) == 5 | failed | 0.0 |
NameError: name 'average_of_three' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
Assertion failed.
Assertion: assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] Could not extract Expected/Actual automatically. Traceback: Traceback (most recent call last): File "/app/src/instantgrade/evaluators/python/comparison/comparison_service.py", line 135, in run_assertions exec(compile(code, "<assertion>", "exec"), namespace) File "<assertion>", line 1, in <module> AssertionError |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | passed | 1.0 | |
| assert square_number(0) == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_password('PYTHON') == 'Access Denied' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert check_password('java') == 'Access Denied' | failed | 0.0 |
NameError: name 'check_password' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
NameError: name 'numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | failed | 0.0 |
NameError: name 'square_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert square_number(0) == 0 | failed | 0.0 |
NameError: name 'square_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | passed | 1.0 | |
| assert larger_number(10, 3) == 10 | passed | 1.0 | |
| assert larger_number(5, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | failed | 0.0 |
NameError: name 'squares_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | passed | 1.0 | |
| assert average_of_three(3, 3, 3) == 3 | passed | 1.0 | |
| assert average_of_three(10, 0, 5) == 5 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_number(5) == 'Positive' | passed | 1.0 | |
| assert check_number(-3) == 'Negative' | passed | 1.0 | |
| assert check_number(0) == 'Zero' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert numbers_1_to_n(5) == [1, 2, 3, 4, 5] | failed | 0.0 |
NameError: name 'numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_numbers_1_to_n(11) == [2, 4, 6, 8, 10] | failed | 0.0 |
NameError: name 'even_numbers_1_to_n' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert square_number(4) == 16 | failed | 0.0 |
NameError: name 'square_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert square_number(0) == 0 | failed | 0.0 |
NameError: name 'square_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert check_password('python') == 'Access Granted' | passed | 1.0 | |
| assert check_password('PYTHON') == 'Access Denied' | passed | 1.0 | |
| assert check_password('java') == 'Access Denied' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert larger_number(4, 9) == 9 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert larger_number(10, 3) == 10 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert larger_number(5, 5) == 5 | failed | 0.0 |
NameError: name 'larger_number' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert even_or_odd(2) == 'Even' | passed | 1.0 | |
| assert even_or_odd(3) == 'Odd' | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert sum_1_to_n(5) == 15 | passed | 1.0 | |
| assert sum_1_to_n(10) == 55 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert squares_1_to_n(5) == [1, 4, 9, 16, 25] | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert count_letter('banana', 'a') == 3 | passed | 1.0 | |
| assert count_letter('apple', 'p') == 2 | passed | 1.0 | |
| assert count_letter('python', 'z') == 0 | passed | 1.0 |
| Assertion | Status | Score | Error |
|---|---|---|---|
| assert round(average_of_three(4, 8, 10), 2) == 7.33 | failed | 0.0 |
NameError: name 'average_of_three' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert average_of_three(3, 3, 3) == 3 | failed | 0.0 |
NameError: name 'average_of_three' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| assert average_of_three(10, 0, 5) == 5 | failed | 0.0 |
NameError: name 'average_of_three' is not
defined
This means the required function was NOT defined, or is spelled incorrectly. |
| Assertion | Status | Score | Error |
|---|---|---|---|
| [missing student identity] | failed | 0.0 |
Student notebook missing personalized name/roll_number.
Please define:
name = 'Your Name' roll_number = 'Your Roll Number' |
| Student | Roll Number | Marks Obtained | Out of |
|---|---|---|---|
| Anushri | 2423509 | 24.0 | 24 |
| shreya mehta | 2423558 | 24.0 | 24 |
| nandini maheshwari | 2423538 | 24.0 | 24 |
| Prerak | 2423545 | 24.0 | 24 |
| savi kasliwal | 2423584 | 24.0 | 24 |
| vasu jindal | 2423571 | 24.0 | 24 |
| Surya Madhavan | 2423563 | 24.0 | 24 |
| Samanvitha P | 2423552 | 24.0 | 24 |
| Vishnu Tunga | 2423573 | 24.0 | 24 |
| shreya burli | 2423557 | 24.0 | 24 |
| Prarthana SB | 2423543 | 24.0 | 24 |
| Subaaishwariya BL | 2423562 | 24.0 | 24 |
| Kunal Gaur | 2423530 | 24.0 | 24 |
| RESHU JAIN | 2423548 | 24.0 | 24 |
| Pranav V | 2423542 | 24.0 | 24 |
| Kabeer | 2423577 | 24.0 | 24 |
| Aryan Chhabra | 2523512 | 23.0 | 24 |
| Mukund Khetan | 2423537 | 23.0 | 24 |
| Teresa George | 2423568 | 23.0 | 24 |
| Isha Ivy | 2423521 | 22.0 | 24 |
| Yuktha Jain SB | 2423576 | 22.0 | 24 |
| Tamanna Gupta | 2423565 | 22.0 | 24 |
| Akshat Mishra | 2423504 | 22.0 | 24 |
| Sesha Sai Sriya.K | 2423527 | 22.0 | 24 |
| Ishika Khandelwal | 2423522 | 21.0 | 24 |
| Jiya Kadate | 2423524 | 21.0 | 24 |
| Rintu Thomas | 2423549 | 21.0 | 24 |
| SRISHTI | 2423561 | 21.0 | 24 |
| Hrisikesh Mondal | 2423520 | 21.0 | 24 |
| ISHITA | 2423523 | 21.0 | 24 |
| Anshala Sinha | 2423508 | 20.0 | 24 |
| Daksh Pakkal | 2423515 | 20.0 | 24 |
| Tanishq Bhojwani | 2423567 | 19.0 | 24 |
| Arnav Jain | 2423511 | 19.0 | 24 |
| Manan Jain | 2423533 | 19.0 | 24 |
| Chinmay kataria | 2423514 | 19.0 | 24 |
| Garvit Khatri | 2423518 | 19.0 | 24 |
| RASHIMA MALHOTRA | 2423036 | 18.0 | 24 |
| Parikshit Saraf | 2423541 | 14.0 | 24 |
| Yug Khandelwal | 2423575 | 14.0 | 24 |
| Sharan Sunil Krishnaa | 2423554 | 14.0 | 24 |
| Trishikha Vijay | 2423570 | 12.0 | 24 |
| Harsh Raj | 2423579 | 8.0 | 24 |
| Pranav Kumar | 2423525 | 7.0 | 24 |