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

 

tmhscs@gmail.com welcomeback > welcomeback_lists_removePrimes
prev  |  next  |  chance

welcomeback_lists_removePrimes--Given a List of Integers, remove all prime numbers from the list; then return the list.


welcomeback_lists_removePrimes([1]) → [1]
welcomeback_lists_removePrimes([6, 12, 15, 18, 24]) → [6, 12, 15, 18, 24]
welcomeback_lists_removePrimes([2, 4, 6, 8]) → [4, 6, 8]

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

public List<Integer> welcomeback_lists_removePrimes(List<Integer> nums){ }

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

Java Help

Misc Code Practice

Post-solution available

Copyright Nick Parlante 2017 - privacy