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

 

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

Return the lowest even number from a 2D array of positive integers. If there are no even numbers, return -1.

Important Note: Copy the following two methods into the window and don't change 
array2DLowestEvenNumber.  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 nums that you will be using. Enter your code into 
method array2DLowestEvenNumberB:

public int array2DLowestEvenNumber(int rows, int cols, int[] array)
{
	int[][] array2D = new int[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 array2DLowestEvenNumberB(array2D);
}

public int array2DLowestEvenNumberB(int[][] nums) {

}

array2DLowestEvenNumber(2, 3, [4, 6, 7, 1, 50, 102]) → 4
array2DLowestEvenNumber(3, 3, [3, 5, 7, 1, 51, 99, 11, 23, 5]) → -1
array2DLowestEvenNumber(2, 2, [8, 2, 2, 4]) → 2

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

public int array2DLowestEvenNumber(int rows, int cols, int[] 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