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

 

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

Return true if all elements in the 2D array named words are the same word. Return false otherwise.

Important Note: Copy the following two methods into the window and don't change 
array2DOneWord.  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 array2DOneWordB:

public boolean array2DOneWord(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 array2DOneWordB(array2D);
}

public boolean array2DOneWordB(String[][] words) { 
	
}

array2DOneWord(2, 2, ["help", "assist", "help", "help"]) → false
array2DOneWord(2, 2, ["help", "help", "help", "help"]) → true
array2DOneWord(3, 2, ["dog", "cat", "cat", "cat", "dog", "dog"]) → false

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

public boolean array2DOneWord(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