CodingBat Java Functional-1 NoX

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

  • Java
  • Python
Functional-1 > noX prev | next | chance

Given a list of strings, return a list where each string has all its "x" removed.noX(["ax", "bb", "cx"]) → ["a", "bb", "c"]noX(["xxax", "xbxbx", "xxcx"]) → ["a", "bb", "c"]noX(["x"]) → [""]

Go...Save, Compile, Run (ctrl-enter)Functional APIpublic List<String> noX(List<String> strings) { }

Go

Editor font size %:75100125150Shorter 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

  • Java Example Solution Code
  • Java String Introduction (video)
  • Java Substring v2 (video)
  • Java String Equals and Loops
  • Java String indexOf and Parsing
  • Java If and Boolean Logic
  • If Boolean Logic Example Solution Code 1 (video)
  • If Boolean Logic Example Solution Code 2 (video)
  • Java For and While Loops
  • Java Arrays and Loops
  • Java Map Introduction
  • Java Map WordCount
  • Java Functional Mapping
  • Java Functional Filtering

Misc Code Practice

  • Code Badges
  • Introduction to Mod (video)
  • MakeBricks problem and solution (video x 2)
  • FizzBuzz the famous code interview question (video)

Difficulty: 223

Copyright Nick Parlante 2017 - privacy

Tag » Codingbat Nox Solution