Optimize
This commit is contained in:
@@ -4,6 +4,11 @@ internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello, World!");
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user