dawitz28 / linked-list

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

linked-list

Challenge

Write a method which adds a new node with the given value to the end of the list. write a method which add a new node with the given newValue immediately before the first value node write a method which add a new node with the given newValue immediately after the first value node.

Approach & Efficiency

identify the start and end of the linked list

Solution

whiteBoard

About

License:MIT License


Languages

Language:JavaScript 100.0%