We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 205625e commit faba1a8Copy full SHA for faba1a8
2 files changed
question.html
@@ -145,7 +145,7 @@
145
<textarea id="submittedCodeRO" cols="60" rows="12" wrap="off" readonly="readonly">
146
</textarea>
147
148
-<div id="gradeSummary">Your solution passed 3/5 tests. Try to debug the incorrect outputs!</div>
+<div id="gradeSummary">Your solution passed 1/5 tests. Try to debug the incorrect outputs!</div>
149
150
<table id="gradeMatrix">
151
<thead>
questions/inplace-reverse.txt
@@ -16,7 +16,7 @@ Skeleton:
16
17
def reverse(lst):
18
# write your solution code here
19
- N = len(lst) - 1
+ N = len(lst)
20
for i in range(N/2):
21
tmp = lst[i]
22
lst[i] = lst[N-i]
0 commit comments