package
0.0.0-20211003111303-bf095942a6eb
Repository: https://github.com/tlboright/golang-interview.git
Documentation: pkg.go.dev

# README

deleteLLNode

Problem Statement

Implement an delete LLNode operation in a pointed language which does not use conditionals This was mentioned in a talk on code taste linus torvalds did that was highlighted in this article: https://grisha.org/blog/2013/04/02/linus-on-understanding-pointers/

Analysis

  • This algorithm runs in O(n) time complexity where n is the length of the linked list