Fast code 1

Sign in to test your solution.
import datetime def compute_norms(matrix): start = datetime.datetime.now().timestamp() # Jouw code hier!!!! end = datetime.datetime.now().timestamp() total_time = end - start fast = total_time < 0.01 return norms, fast