#!/bin/python3

from grading import graders

problem_id = '1'
test_cases = [('calculate norm', 'q00', 6)]
options = {'treat_non_zero_as_runtime_error': True, 'filename': 'notebook', 'time_limit': 5, 'hard_time_limit': 15, 'custom_feedback': {}, 'dataset': {'url': '', 'filename': ''}, 'show_debug_info_for': [0], 'memory_limit': 100}
weights = [1.0]

graders.handle_problem_action(problem_id, test_cases, options=options, weights=weights)
