package
0.0.0-20241126132414-a6474f9c9b52
Repository: https://github.com/talgat-ruby/exercises-go.git
Documentation: pkg.go.dev
# README
Problem 4
Create a linked list data structure.
Methods:
- Add
Add a new element to the end of the linked list.
- Insert
Insert a new element into a specific position within the linked list.
- Delete
Remove a specific element from the linked list.
- Find
Find and return an element from the linked list.
- List
Get the slice out of the linked list.
- Size
Get the size of the linked list.
- IsEmpty
Check if the linked list is empty.
! Please check the tests for signature and more examples.