Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 261 Bytes

ex-1.2.md

File metadata and controls

12 lines (11 loc) · 261 Bytes

Exercise 1.2. Translate the following expression into prefix form

5 + 4 + (2 - (3 - (6 + (4 / 5))))
---------------------------------
        3 (6 - 2) (2 - 7)
(/ (+ 5 4 (- 2 (- 3 (+ 6 (/ 4 5)))))
   (* 3 (- 6 2) (- 2 7)))