Skip to content

Commit 29b4ba9

Browse files
committed
fixed header
1 parent 290a350 commit 29b4ba9

File tree

7 files changed

+13
-3
lines changed

7 files changed

+13
-3
lines changed

go/alg/is_prime.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* Is Prime */
2+
13
package main
24

35
import (

python/structs/Bounded_Queue.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Bounded Queues, by: Zeyu Li """
1+
""" Bounded Queues """
22

33

44
class Queue:

python/structs/Circular_Queues.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Circlar Queues, by: Zeyu Li """
1+
""" Circlar Queues """
22

33

44
class CircularQueue:

python/structs/Doubly_Linked_List.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
""" Doubly Linked List """
2+
3+
14
class DLinkedListNode:
25
# An instance of this class represents a node in Doubly-Linked List
36
def __init__(self,initData,initNext,initPrevious):

python/structs/Singly_Linked_List.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
""" Singly Linked List """
2+
3+
14
class SLinkedListNode:
25
# an instance of this class is a node in a Single Linked List
36
# a node has a reference to data and reference to next

python/structs/Stack.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Stacks by: Zeyu Li """
1+
""" Stack """
22

33
class Stack:
44
""" implementation of of a stack """

typescript/alg/is_prime.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* Is Prime */
2+
13
// chose any number
24
let number: number = 146192364271;
35

0 commit comments

Comments
 (0)