Skip to content

SummerOfCode2020/week-06-haziest-extra-credit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hazy Calculator

Instructions

This is the most challenging version of the hazy calculator which accepts an array of combined operators and operands.

Instructions

In the initial commit to this project, you have been provided with a basic project setup as well as a set of tests which currently fail. Your task is to create a calculate function which will properly calculate the answer given the array of values given the rules outlined below.

Calculation Rules

The calculate function runs an arithmetic calculation based upon an array of inputs (eg. [2, '*', 10])

Each input should be either a number or an operand (+, -, *, /)

Our upstream data is inconsistent, so we intentionally accept it and deal with it in the following ways:

  • Stringified numbers (eg. '2') should be treated as numbers
  • NULL should be treated as zero
  • undefined values should be ignored
  • Empty string values (eg. '') should be ignored
  • Non-numeric values (eg. 'foo') should be ignored

About

A hazier calculator that is more challenging than the homework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published