Data Structures in Go An implementation of data structures in golang and solutions to common problems. To run tests go test -v -count=1 ./... To run a specific test go test -v -count=1 -run <name of the test> <path to package> Array | Tests Stack Array based stack | Tests Linked list based stack | Tests Queue Ring buffer | Tests Linked List Singly | Tests Doubly | Tests Singly Circular | Tests