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

 

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

Return the count of the number of elements in the 2D array words that have a length greater than the parameter len.

Important Note: Copy the following two methods into the window and don't change 
array2DLongWords.  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. The last parameter len
is the length that you will be checking each element against.  Enter your code into 
method array2DLongWordsB:

public int array2DLongWords(int rows, int cols, String[] array, int len)
{
	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 array2DLongWordsB(array2D, len);
}

public int array2DLongWordsB(String[][] words, int len) { 
		
}

array2DLongWords(2, 2, ["elephant", "goat", "dog", "pig"], 3) → 2
array2DLongWords(2, 2, ["elephant", "goat", "dog", "giraffe"], 7) → 1
array2DLongWords(3, 2, ["cat", "goat", "dog", "frog", "wolf", "cow"], 4) → 0

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

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

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