package
0.0.0-20230710210237-5ce2504b62fa
Repository: https://github.com/shomali11/go-interview.git
Documentation: pkg.go.dev

# README

Description

Implement a Queue. A queue is a linear structure which follows a particular order in which the operations are performed. The order is First In First Out (FIFO)

Example:

Input: Enqueue "value1", Enqueue "value2", Enqueue "value3", Dequeue 
Output: ["value2", "value3"]

# Functions

New factory to generate new Queues.

# Structs

Queue Queue structure.