From f48e6c51d65e19a05c2da8b311e091ba8a7ed8d2 Mon Sep 17 00:00:00 2001 From: Paul Mabileau Date: Fri, 20 Nov 2020 11:39:58 +0100 Subject: [PATCH] Small adjustment to rust/difference-of-squares Include something to copy-paste for the benchmark results of the student's solution. Signed-off-by: Paul Mabileau --- notes/rust/difference-of-squares.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/notes/rust/difference-of-squares.md b/notes/rust/difference-of-squares.md index b8be610..3af9888 100644 --- a/notes/rust/difference-of-squares.md +++ b/notes/rust/difference-of-squares.md @@ -17,3 +17,9 @@ test test_difference_range ... bench: 21,937 ns/iter (+/- 826) test test_square_of_sum_range ... bench: 13,693 ns/iter (+/- 957) test test_sum_of_squares_range ... bench: 16,999 ns/iter (+/- 625) ``` + +Your solution: + +```rust + +```