We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05a9720 commit bf7923aCopy full SHA for bf7923a
contents/forward_euler_method/code/coconut/euler.coco
@@ -22,6 +22,6 @@ if __name__ == '__main__':
22
n = 100
23
threshold = 0.01
24
25
- result = list(forward_euler(time_step, n))
+ result = forward_euler(time_step, n)
26
approx = check(result, threshold, time_step)
27
print("All values within threshold") if approx else print("Value(s) not in threshold")
0 commit comments