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

# README

Description

Implement a Singly Linked List. A singly linked list is a type of linked list that is unidirectional, that is, it can be traversed in only one direction from head to the last node (tail).

Example:

Input: Insert "value1", Insert "value2", Insert "value3", Remove Last 
Output: ["value1", "value2"]

# Functions

New factory to generate new singly linked lists.

# Structs

SinglyLinkedList singly linked list structure.
SLLNode singly linked list node.