Skip to content

Commit faba1a8

Browse files
author
Philip Guo
committed
more stuff
1 parent 205625e commit faba1a8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

question.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
<textarea id="submittedCodeRO" cols="60" rows="12" wrap="off" readonly="readonly">
146146
</textarea>
147147

148-
<div id="gradeSummary">Your solution passed 3/5 tests. Try to debug the incorrect outputs!</div>
148+
<div id="gradeSummary">Your solution passed 1/5 tests. Try to debug the incorrect outputs!</div>
149149

150150
<table id="gradeMatrix">
151151
<thead>

questions/inplace-reverse.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Skeleton:
1616

1717
def reverse(lst):
1818
# write your solution code here
19-
N = len(lst) - 1
19+
N = len(lst)
2020
for i in range(N/2):
2121
tmp = lst[i]
2222
lst[i] = lst[N-i]

0 commit comments

Comments
 (0)