Skip to content

Instantly share code, notes, and snippets.

@nikolaydubina
nikolaydubina / reverse_infinite_single_linked_list.go
Created November 26, 2021 14:35
reverse_infinite_single_linked_list.go
// Go Playground: https://go.dev/play/p/DMiZPwRUGWD
// time: O(N)
// space: O(1)
// why: Just For Fun! 🤪
package main
import "fmt"
type Node struct {
V string