Giter Site home page Giter Site logo

rpn-evaluator's Introduction

RPN Evaluator README

Problem

Implement a RPN evaluator in Ruby. It should be able to evaluate the following strings and answer with the corresponding numbers:

  • "1 2 +" = 3
  • "4 2 /" = 2
  • "2 3 4 + *" = 14
  • "3 4 + 5 6 + *" = 77
  • "13 4 - " = 9

And should provide an error message for the following types of errors

  • "1 +" (not enough arguments)
  • "a b +" (invalid number)

We should be able to evaluate a string from the command line in the following way:

ruby rpn.rb "1 2 +"

Summary

This my solution to the Indiegogo coding assignment. I created a stack to obfusciate the additional functionality of an Array. In additon, I created my own atoi and atof. The program evaluates an RPN expression and prints the solution to stdout. It is ran from rpn.rb.

Usage

ruby rpn.rb "1 2 +"

Version of ruby

ruby 2.0.0p481 (2014-05-08 revision 45883)

rpn-evaluator's People

Contributors

eduardoramirez avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.