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

 

tlsmith2@wsfcs.k12.nc.us > array2DFirstChars
prev  |  next  |  chance

Return a string that is composed of the first character of every element on odd-numbered rows in the 2D array words. If there are no odd-numbered rows, then return "?".

Important Note: Copy the following two methods into the window and don't change 
array2DFirstChars.  CodingBat does not allow 2D array parameters, so this method is accepting 
the number of rows, number of columns, and a 1D array.  The first method takes this 
information and creates a 2D array named words that you will be using. Enter your code into 
method array2DFirstCharsB:

public String array2DFirstChars(int rows, int cols, String[] array)
{
	String[][] array2D = new String[rows][cols];
	int idx = 0;
	for (int r=0; r<rows; r++)
	{
		for (int c=0; c<cols; c++)
		{
			array2D[r][c] = array[idx];
			idx++;
		}
	}
	return array2DFirstCharsB(array2D);
}

public String array2DFirstCharsB(String[][] words) { 

}

array2DFirstChars(4, 2, ["dog", "goat", "cat", "pig", "bear", "tiger", "lion", "snake"]) → "cpls"
array2DFirstChars(1, 3, ["dog", "goat", "cat"]) → "?"
array2DFirstChars(4, 1, ["dog", "goat", "cat", "cow"]) → "gc"

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

public String array2DFirstChars(int rows, int cols, String[] array) }

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

Difficulty: 10 Post-solution available

Copyright Nick Parlante 2017 - privacy