diff --git a/Daily/Queue_Revarsal.cpp b/Daily/Queue_Revarsal.cpp index ff93e80..a0a495c 100644 --- a/Daily/Queue_Revarsal.cpp +++ b/Daily/Queue_Revarsal.cpp @@ -2,7 +2,6 @@ Given a Queue Q containing N elements. The task is to reverse the Queue. Your task is to complete the function rev(), that reverses the N elements of the queue. Input: 6 - 4 3 1 10 2 6 Output: 6 2 10 1 3 4