You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{Stack}from"@anorcle/dsa";conststack=newStack<number>();stack.push(3);stack.push(1);stack.push(100);console.log(stack.top)// 100// Remove Top Element from stackstack.pop()console.log(stack.top)// 1
Add Generic Examples to demonstrate how to use following data structures.
Example (Stack)
For more examples see README.md
The text was updated successfully, but these errors were encountered: