Updated definition of a stack - grammar issue (#18895)

'Stacks is a First In Last Out' changed to 'A stack is a First In Last Out'.
pull/18874/merge
Yusuf | @yusufcodes 2018-10-14 00:29:56 +01:00 committed by Jonathan Grah
parent e6402d3d6f
commit 9e0b0f05e3
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ title: Stacks
---
## Stacks
Stacks is a First In Last Out (FILO) Data Structure. It is a linear data structure.
A stack is a First In Last Out (FILO) Data Structure. It is a linear data structure.
You can imagine a stack as the way plates were organized in buffet restaurant. You can only pick the plate at the top otherwise the stack will collapse. Generally, the last item to be inserted will be removed first.