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

 

james.shockey@austinisd.org > alternateChars
prev  |  next  |  chance

LASA_AP_ForLoop_Set01_Problem01

Problem 1: Alternate Characters
Problem: Given a non-empty string, return a new string made of every second character starting with the first character (index 0). Examples: alternateChars("hello") → "hlo" alternateChars("abcdef") → "ace" alternateChars("12345") → "135" Solution Approach: Use a for loop with a step of 2 to select every other character.


alternateChars("hello") → "hlo"
alternateChars("abcdef") → "ace"
alternateChars("12345") → "135"

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

public String alternateChars(String str) { }

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

Copyright Nick Parlante 2017 - privacy