150. Evaluate Reverse Polish Notation

This commit is contained in:
Пытков Роман
2024-01-31 00:49:39 +03:00
parent 1e43adf29e
commit 9d50f345d1
5 changed files with 84 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>_150._Evaluate_Reverse_Polish_Notation</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>