Skip to main content

Posts

Featured

Queue using Two Stacks

Hacker Rank Problem Solution 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 import java.util.Scanner; import java.util.Stack; public class Solution { public static void main(String[] args) { MyQueue<Integer> queue = new MyQueue<Integer>(); Scanner scan = new Scanner(System.in); int n = scan.nextInt(); for ( int i = 0; i < n; i++) { int operation = scan.nextInt(); if (operation == 1) { // enqueue queue.enqueue(scan.nextInt()); } else if (operation == 2) { // dequeue queue.dequeue(); } else if (operation == 3) { // print/peek System.out.println(queue.peek()); } } scan.close(); } public static class MyQueue <Integer> {

Latest Posts

What is the different between a Defect and a Bug ?

What is Smoke Testing?

What are the test cases for a login page?

Hacker Rank Linux Shell (Bash)

What are the Regression Testing techniques?

What is Regression Testing?

What is a Test plan?

Project Euler #93: Arithmetic expressions

Project Euler #94: Almost equilateral triangles

Project Euler #95: Amicable chains