Skip to content

Instantly share code, notes, and snippets.

@PEZ
Last active September 6, 2021 16:42
Show Gist options
  • Select an option

  • Save PEZ/0431a32b7520fbb82264004059a32d90 to your computer and use it in GitHub Desktop.

Select an option

Save PEZ/0431a32b7520fbb82264004059a32d90 to your computer and use it in GitHub Desktop.
Simple Math – Rich 4Clojure Problem 2 – See: https://github.com/PEZ/rich4clojure
(ns rich4clojure.elementary.problem-002
(:require [hyperfiddle.rcf :refer [tests]]))
;; = Simple Math =
;; By 4Clojure user: dbyrne
;; Difficulty: Elementary
;;
;; If you are not familiar with polish (prefix) notation,
;; simple arithmetic might seem confusing.
;;
;; Note: Enter only enough to fill in the blank (in this
;; case, a single number) - do not retype the whole
;; problem.
(def __ :tests-will-fail)
(comment
)
(tests
(- 10 (* 2 3)) := __)
;; To participate, fork:
;; https://github.com/PEZ/rich4clojure
;; Post your solution below, please!
@evedes
Copy link

evedes commented Sep 6, 2021

Solution: 4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment