Showing 0-0 of 0 results
| # | Exercise Title | Features | Description | Platform | Keywords |
|---|---|---|---|---|---|
| 1 | Imprimir Tabla de Conteo de Medallas con Totales por Fila | Supongamos que tenemos una matriz de 7x4 que almacena el número de medallas que siete países ganaron en las competencias... | PCEX | 2d list | |
| 2 | Imprimir Tabla de Conteo de Medallas con Totales por Fila y por Columna | Supongamos que tenemos una matriz de 7x4 que almacena el número de medallas que siete países ganaron en las competencias... | PCEX | 2d list | |
| 3 | q_py_2d_arrays1_es | Python PredictingFinalResult for demonstrating q_py_2d_arrays1_es | QuizPET | 2d list | |
| 4 | q_py_2d_arrays2_es | Python PredictingFinalResult for demonstrating q_py_2d_arrays2_es | QuizPET | 2d list | |
| 5 | q_py_2d_arrays3_es | Python PredictingFinalResult for demonstrating q_py_2d_arrays3_es | QuizPET | 2d list | |
| 6 | q_py_2d_arrays4_es | Python PredictingFinalResult for demonstrating q_py_2d_arrays4_es | QuizPET | 2d list | |
| 7 | q_py_nested_for_while_es | Python PredictingFinalResult for demonstrating q_py_nested_for_while_es | QuizPET | 2d list | |
| 8 | Processing the Results of a Soda Survey (Case 2) | Suppose a soda manufacturer held a taste test for four new flavors to determine if people liked them. The manufacturer... | PCEX | 2d list | |
| 9 | Processing the Results of a Soda Survey (Case 3) | Suppose a soda manufacturer held a taste test for four new flavors to determine if people liked them. The manufacturer... | PCEX | 2d list | |
| 10 | Two-dimensional List | Construct a program that prints out [[0, 1, 2], [3, 4, 5], [6, 7, 99]] | jsParsons | 2d list, classes, data structures, list, stacks | |
| 11 | Practicar indexación de listas | Construye un programa que primero imprima [[1, 2, 3], [4, 5, 6]], luego [4, 5, 6], y finalmente 6. | jsParsons | 2d list, list | |
| 12 | Age Checking | Python CodeVisualization for demonstrating Age Checking | JSVEE | 2d list, list | |
| 13 | Two-dimensional List 1 | Python PredictingFinalResult for demonstrating Two-dimensional List 1 | QuizPET | 2d list, list | |
| 14 | Two-dimensional List 2 | Python PredictingFinalResult for demonstrating Two-dimensional List 2 | QuizPET | 2d list, algorithm analysis, list | |
| 15 | Two-dimensional List 3 | Python PredictingFinalResult for demonstrating Two-dimensional List 3 | QuizPET | 2d list, list | |
| 16 | Two-dimensional List 4 | Python PredictingFinalResult for demonstrating Two-dimensional List 4 | QuizPET | 2d list, algorithm analysis, classes, data structures, list, stacks | |
| 17 | Updating Two-Dimensional List | Construct a program that initializes a 3x4 two-dimensional matrix that has the numbers 1 through 12 for entries, updates the... | PCEX | 2d list, classes, data structures, list, stacks, value vs reference | |
| 18 | Printing Table of Medal Counts with Row/Column Total | Assume that we have a 7x4 matrix that stores the number of medals that seven countries won in the skating... | PCEX | 2d list, for loop, list | |
| 19 | Processing the Results of a Soda Survey | Suppose a soda manufacturer held a taste test for four new flavors to determine if people liked them. The manufacturer... | PCEX | 2d list, classes, data structures, for loop, list, stacks | |
| 20 | Updating Two-Dimensional List (Case 2) | Construct a program that initializes a 3x3 two-dimensional matrix that has the numbers 1 through 9 for entries, updates the... | PCEX | 2d list, list, value vs reference | |
| 21 | Updating Two-Dimensional List (Case 3) | Construct a program that initializes a 2x4 two-dimensional matrix that has multiples of 10 from 10 to 80 for entries,... | PCEX | 2d list, value vs reference | |
| 22 | Printing Table of Medal Counts with Row/Column Total | Assume that we have a 7x4 matrix that stores the number of medals that seven countries won in the skating... | PCEX | 2d list, for loop | |
| 23 | Given a two-dimensional array a, return a list whose [i][j] element is the average of the neighbors of a[i][j] in the N, E, S, W direction. | Code Completion | Given a two-dimensional array a, return a list whose [i][j] element is the average of the neighbors of a[i][j] in... | CodeCheck | Two-Dimensional Arrays, Producing 2D Arrays |
| 24 | Given two two-dimensional arrays with the same number of rows, return a list that places them side by side. | Code Completion | Given two two-dimensional arrays with the same number of rows, return a list that places them side by side. | CodeCheck | Two-Dimensional Arrays, Producing 2D Arrays |
| 25 | Given two two-dimensional arrays a and b of integers with the same number of rows and columns, return a list of the same size where each element is the greater of the corresponding elements in the two arrays. | Code Completion | Given two two-dimensional arrays a and b of integers with the same number of rows and columns, return a list... | CodeCheck | Two-Dimensional Arrays, Producing 2D Arrays |
| 26 | Given two two-dimensional arrays of integers with the same number of rows and columns, return the first position where they do not match, as a list of length 2. | Code Completion | Given two two-dimensional arrays of integers with the same number of rows and columns, return the first position where they... | CodeCheck | Two-Dimensional Arrays, Producing 2D Arrays |