Files
Leetcode/232. Implement Queue using Stacks/Program.cs
Пытков Роман 8b40248caf Optimize
2024-01-30 23:19:36 +03:00

15 lines
305 B
C#

namespace _232._Implement_Queue_using_Stacks;
internal class Program
{
static void Main(string[] args)
{
int x = 5;
MyQueue obj = new MyQueue();
obj.Push(x);
int param_2 = obj.Pop();
int param_3 = obj.Peek();
bool param_4 = obj.Empty();
}
}