MCPcopy Create free account
hub / github.com/careercup/ctci / nullifyColumn

Method nullifyColumn

java/Chapter 1/Question1_7/Question.java:12–16  ·  view source on GitHub ↗
(int[][] matrix, int col)

Source from the content-addressed store, hash-verified

10 }
11
12 public static void nullifyColumn(int[][] matrix, int col) {
13 for (int i = 0; i < matrix.length; i++) {
14 matrix[i][col] = 0;
15 }
16 }
17
18 public static void setZeros2(int[][] matrix) {
19 boolean rowHasZero = false;

Callers 2

setZeros2Method · 0.95
setZerosMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected