Commit ac399a3e authored by daidekun's avatar daidekun

fixbugs

parent c09802ad
...@@ -24,6 +24,6 @@ def partList(al, fromIndex, size) { ...@@ -24,6 +24,6 @@ def partList(al, fromIndex, size) {
partOne = al.subList(0, fromIndex) partOne = al.subList(0, fromIndex)
print "SubList stored in partOne: "+partOne print "SubList stored in partOne: "+partOne
partTwo = al.subList(fromIndex + 1, size) partTwo = al.subList(fromIndex, size)
print "SubList stored in partTwo: "+partTwo print "SubList stored in partTwo: "+partTwo
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment