Stack has jost top of node and with length
| 17 | |
| 18 | // Stack has jost top of node and with length |
| 19 | type Stack struct { |
| 20 | top *Node |
| 21 | length int |
| 22 | } |
| 23 | |
| 24 | // push add value to last index |
| 25 | func (ll *Stack) Push(n any) { |
nothing calls this directly
no outgoing calls
no test coverage detected