Skip to content

Instantly share code, notes, and snippets.

View AleksandarBoev's full-sized avatar

Aleksandar Boev AleksandarBoev

View GitHub Profile
package PastCourse.StacksAndQueues;
import java.util.ArrayDeque;
import java.util.Scanner;
public class BrowserHistoryUpgrade {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
ArrayDeque<String> browserHistory = new ArrayDeque<>();