Kotlinlearncs.online LogoJava
Return to List

Solve: String Bits

Imported By: Geoffrey Challen
/ Version: 2021.4.0

Given a String, return a new String made of every other char starting with the first, so "Hello" yields "Hlo".

String stringBits(String input) {
return ""; // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: