Skip to content

Commit 3268f14

Browse files
committedOct 23, 2022
Remove unnecessary comments
1 parent 92c0b54 commit 3268f14

File tree

3 files changed

+5
-16
lines changed

3 files changed

+5
-16
lines changed
 

‎structure/stack/array.go

-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
// Stack implementation using Array
2-
// Stack is a linear data structure in which the push and pop operations occur only at one end of the structure, referred to as the top of the stack.
3-
// The order in which an element added to or removed from a stack is described as last in, first out (LIFO).
4-
// Details:
5-
// Stack Data Structure : https://www.geeksforgeeks.org/stack-data-structure-introduction-program/
6-
// Stack (abstract data type) : https://en.wikipedia.org/wiki/Stack_(abstract_data_type)
7-
81
package stack
92

103
import "errors"

‎structure/stack/doubly_linked_list_test.go

-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
// Stack Test
2-
// description: based on `geeksforgeeks` description Stack is a linear data structure which follows a particular order in which the operations are performed.
3-
// The order may be LIFO(Last In First Out) or FILO(First In Last Out).
4-
// details:
5-
// Stack Data Structure : https://www.geeksforgeeks.org/stack-data-structure-introduction-program/
6-
// Stack (abstract data type) : https://en.wikipedia.org/wiki/Stack_(abstract_data_type)
7-
// author [Milad](https://github.com/miraddo)
8-
// see stackarray.go, stacklinkedlist.go, stacklinkedlistwithlist.go
9-
101
package stack
112

123
import (

‎structure/stack/stack.go

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Stack is a linear data structure in which the push and pop operations occur only at one end of the structure, referred to as the top of the stack.
2+
// The order in which an element added to or removed from a stack is described as last in, first out (LIFO).
3+
//
4+
// Stack Data Structure : https://www.geeksforgeeks.org/stack-data-structure-introduction-program/
5+
// Stack (abstract data type) : https://en.wikipedia.org/wiki/Stack_(abstract_data_type)
16
package stack
27

38
// Interface defines the specifications for a stack implementation.

0 commit comments

Comments
 (0)