about | help | code help+videos | done | prefs |
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) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 10 Post-solution available
Copyright Nick Parlante 2017 - privacy