Skip to content

Add First

Sar Champagne Bielert edited this page Apr 20, 2024 · 2 revisions

**⚠️ Common Mistakes**

- 

## I-mplement

```python
def add_first(head, new_node):
  new_node.next = head
  return new_node 
Clone this wiki locally