From 71a1ccd2ca0410fb1a1bb28cc1c86cc46e9a7794 Mon Sep 17 00:00:00 2001 From: daviddoji Date: Mon, 25 Oct 2021 21:24:41 +0200 Subject: [PATCH] Fix loading macro --- src/Julia/Problems001-050/Problem005.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Julia/Problems001-050/Problem005.jl b/src/Julia/Problems001-050/Problem005.jl index ff27fa7..e120b3d 100644 --- a/src/Julia/Problems001-050/Problem005.jl +++ b/src/Julia/Problems001-050/Problem005.jl @@ -17,6 +17,7 @@ It is possible to compute the LCM of more than two numbers by iteratively computing the LCM of two numbers, i.e. LCM(a, b, c) = LCM(a, LCM(b, c)) =# +using BenchmarkTools function Problem5() #=