File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 107
107
* [ Doubly Linked List] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/doubly_linked_list.py )
108
108
* [ From Sequence] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/from_sequence.py )
109
109
* [ Is Palindrome] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/is_palindrome.py )
110
+ * [ Middle Element Of Linked List] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/middle_element_of_linked_list.py )
110
111
* [ Print Reverse] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/print_reverse.py )
111
112
* [ Singly Linked List] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/singly_linked_list.py )
112
113
* [ Skip List] ( https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/skip_list.py )
271
272
* [ Abs] ( https://github.com/TheAlgorithms/Python/blob/master/maths/abs.py )
272
273
* [ Abs Max] ( https://github.com/TheAlgorithms/Python/blob/master/maths/abs_max.py )
273
274
* [ Abs Min] ( https://github.com/TheAlgorithms/Python/blob/master/maths/abs_min.py )
275
+ * [ Add] ( https://github.com/TheAlgorithms/Python/blob/master/maths/add.py )
274
276
* [ Allocation Number] ( https://github.com/TheAlgorithms/Python/blob/master/maths/allocation_number.py )
275
277
* [ Area Under Curve] ( https://github.com/TheAlgorithms/Python/blob/master/maths/area_under_curve.py )
276
278
* [ Armstrong Numbers] ( https://github.com/TheAlgorithms/Python/blob/master/maths/armstrong_numbers.py )
Original file line number Diff line number Diff line change 1
1
"""
2
2
Just to check
3
3
"""
4
+
5
+
4
6
def add (a , b ):
5
7
"""
6
8
>>> add(2, 2)
@@ -14,4 +16,4 @@ def add(a, b):
14
16
if __name__ == "__main__" :
15
17
a = 5
16
18
b = 6
17
- print (f"The sum of { a } + { b } is { sum (a , b )} " )
19
+ print (f"The sum of { a } + { b } is { add (a , b )} " )
You can’t perform that action at this time.
0 commit comments