From 0aa03e201198fd4498191926948eb6f60370ce47 Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Thu, 7 Nov 2019 07:31:35 +0000 Subject: [PATCH] Update rpncalc.en.md --- subjects/rpncalc.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/rpncalc.en.md b/subjects/rpncalc.en.md index 34db8b28..956e79c8 100644 --- a/subjects/rpncalc.en.md +++ b/subjects/rpncalc.en.md @@ -23,7 +23,7 @@ All the given operands must fit in a `int`. Examples of formulas converted in RPN: 3 + 4 >> 3 4 + -((1 _ 2) _ 3) - 4 >> 1 2 _ 3 _ 4 - ou 3 1 2 \* _ 4 - +((1 _ 2) _ 3) - 4 >> 1 2 _ 3 _ 4 - or 3 1 2 \* _ 4 - 50 _ (5 - (10 / 9)) >> 5 10 9 / - 50 \* Here is how to evaluate a formula in RPN: