Skip to content

Instantly share code, notes, and snippets.

View boniface's full-sized avatar
🏠
Working from home

Boniface Kabaso boniface

🏠
Working from home
  • Hashcode (Z) Limited
  • Lusaka, Zambia
View GitHub Profile
@boniface
boniface / add_node_at_position.go
Created October 26, 2020 16:27
Add at Position
package main
import "fmt"
type Node struct {
ipAddress string
ports int
name string
next *Node
}
package main
import "fmt"
type Node struct {
ipAddress string
ports int
name string
next *Node
}