First commit

This commit is contained in:
vale 2016-05-11 17:53:26 +02:00
parent 7c07ad2416
commit aae8344958

View File

@ -0,0 +1,34 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.rpn;
import java.math.BigDecimal;
import java.util.Arrays;
import java.util.List;
/**
*
* @author me
*/
public class ReversePolishNotation
{
public static BigDecimal evalRPN(String[] params)
{
return evalRPN(Arrays.asList(params));
}
public static BigDecimal evalRPN(List<String> params)
{
BigDecimal result = null;
if (null != params && !params.isEmpty())
{
}
return result;
}
}