mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2025-05-18 12:02:53 +02:00
feat: rewrite programming-challenges CLI (#3)
This commit is contained in:
1
challenges/reverse-polish-notation/test/1/input.txt
Normal file
1
challenges/reverse-polish-notation/test/1/input.txt
Normal file
@ -0,0 +1 @@
|
||||
3
|
1
challenges/reverse-polish-notation/test/1/output.txt
Normal file
1
challenges/reverse-polish-notation/test/1/output.txt
Normal file
@ -0,0 +1 @@
|
||||
3
|
1
challenges/reverse-polish-notation/test/2/input.txt
Normal file
1
challenges/reverse-polish-notation/test/2/input.txt
Normal file
@ -0,0 +1 @@
|
||||
3.5
|
1
challenges/reverse-polish-notation/test/2/output.txt
Normal file
1
challenges/reverse-polish-notation/test/2/output.txt
Normal file
@ -0,0 +1 @@
|
||||
3.5
|
1
challenges/reverse-polish-notation/test/3/input.txt
Normal file
1
challenges/reverse-polish-notation/test/3/input.txt
Normal file
@ -0,0 +1 @@
|
||||
1 3 +
|
1
challenges/reverse-polish-notation/test/3/output.txt
Normal file
1
challenges/reverse-polish-notation/test/3/output.txt
Normal file
@ -0,0 +1 @@
|
||||
4
|
1
challenges/reverse-polish-notation/test/4/input.txt
Normal file
1
challenges/reverse-polish-notation/test/4/input.txt
Normal file
@ -0,0 +1 @@
|
||||
1 3 *
|
1
challenges/reverse-polish-notation/test/4/output.txt
Normal file
1
challenges/reverse-polish-notation/test/4/output.txt
Normal file
@ -0,0 +1 @@
|
||||
3
|
1
challenges/reverse-polish-notation/test/5/input.txt
Normal file
1
challenges/reverse-polish-notation/test/5/input.txt
Normal file
@ -0,0 +1 @@
|
||||
1 3 -
|
1
challenges/reverse-polish-notation/test/5/output.txt
Normal file
1
challenges/reverse-polish-notation/test/5/output.txt
Normal file
@ -0,0 +1 @@
|
||||
-2
|
1
challenges/reverse-polish-notation/test/6/input.txt
Normal file
1
challenges/reverse-polish-notation/test/6/input.txt
Normal file
@ -0,0 +1 @@
|
||||
4 2 /
|
1
challenges/reverse-polish-notation/test/6/output.txt
Normal file
1
challenges/reverse-polish-notation/test/6/output.txt
Normal file
@ -0,0 +1 @@
|
||||
2
|
1
challenges/reverse-polish-notation/test/7/input.txt
Normal file
1
challenges/reverse-polish-notation/test/7/input.txt
Normal file
@ -0,0 +1 @@
|
||||
5 3 + 12 8 + * 10 /
|
1
challenges/reverse-polish-notation/test/7/output.txt
Normal file
1
challenges/reverse-polish-notation/test/7/output.txt
Normal file
@ -0,0 +1 @@
|
||||
16
|
Reference in New Issue
Block a user