id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

konstans@stuy.edu all > testMoveNegatives
prev  |  next  |  chance

Write a function moveNegativeToEnd(L) that returns a copy of L such that all negative values are moved to the end of the new list in the same relative order. (note codingbat does not detect if you destroy the original list, but in general, you should be careful and not do that.)


testMoveNegatives([]) → []
testMoveNegatives([1]) → [1]
testMoveNegatives([-1]) → [-1]

...Save, Compile, Run (ctrl-enter)

def testMoveNegatives(L):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Copyright Nick Parlante 2017 - privacy