From a8c470077a14338dad5a04c9fe73f5588241908b Mon Sep 17 00:00:00 2001 From: Dmitry Pavlov Date: Mon, 1 May 2023 13:35:28 +0300 Subject: [PATCH] Homework1 --- otus-01/src/otus/homework.clj | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/otus-01/src/otus/homework.clj b/otus-01/src/otus/homework.clj index 82c8e9d..ae505fb 100644 --- a/otus-01/src/otus/homework.clj +++ b/otus-01/src/otus/homework.clj @@ -1,5 +1,7 @@ (ns otus.homework) -(defn solution "Add your solution as fuction body here" []) - +(defn solution "Add your solution as fuction body here" [] + (double (/ + (+ 5 4 (- 2 (- 3 (+ 6 (/ 4 5))))) + (* 3 (- 6 2) (- 2 7))))) \ No newline at end of file