From 1fa89efe132d6985dce892665734658bca237748 Mon Sep 17 00:00:00 2001 From: davidrobert99 Date: Mon, 23 May 2022 09:51:48 +0100 Subject: [PATCH] update format --- subjects/rpn/README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/subjects/rpn/README.md b/subjects/rpn/README.md index 92c7b25ff..dc1612055 100644 --- a/subjects/rpn/README.md +++ b/subjects/rpn/README.md @@ -7,12 +7,10 @@ Write a **program** which takes a `string` that contains an equation written in - If the `string` is not valid or if there is not exactly one argument, `Error` must be printed on the standard output followed by a newline. - If the `string` has extra spaces it is still considered valid. - `Reverse Polish Notation` is a mathematical notation in which every operator follows all of its operands. In RPN, every operator encountered evaluates the previous 2 operands, and the result of this operation then becomes the first of the two operands for the subsequent operator. Operands and operators must be spaced by at least one space. The following operators must be implemented : `+`, `-`, `*`, `/`, and `%`. - All the given operands must fit in a `i64`. Examples of formulas converted in RPN: