Skip to content

Commit 1915b02

Browse files
committed
Hello world
1 parent 6aec28f commit 1915b02

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

test_module/hello.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
# Hello.py: A sample python script used for testing reviews
22

3-
def twoSum(array, targetSum):
4-
for i in range(0, len(array)):
5-
for j in range(i+1, len(array)):
6-
if array[i] + array[j] == targetSum:
7-
return ([array[i], array[j]])
8-
return []
3+
def helloWorld():
4+
print("Hello World")
95

10-
twoSum([2,7,11,15], 9)
6+
helloWorld()

0 commit comments

Comments
 (0)