We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aec28f commit 1915b02Copy full SHA for 1915b02
1 file changed
test_module/hello.py
@@ -1,10 +1,6 @@
1
# Hello.py: A sample python script used for testing reviews
2
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 []
+def helloWorld():
+ print("Hello World")
9
10
-twoSum([2,7,11,15], 9)
+helloWorld()
0 commit comments