36 lines
926 B
Java
36 lines
926 B
Java
|
package o;
|
||
|
|
||
|
import java.lang.reflect.Array;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public final class mUk {
|
||
|
public final int c;
|
||
|
public final int d;
|
||
|
public final byte[][] e;
|
||
|
|
||
|
public mUk(int i, int i2) {
|
||
|
this.e = (byte[][]) Array.newInstance((Class<?>) Byte.TYPE, i2, i);
|
||
|
this.c = i;
|
||
|
this.d = i2;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
StringBuilder sb = new StringBuilder(((this.c << 1) * this.d) + 2);
|
||
|
for (int i = 0; i < this.d; i++) {
|
||
|
byte[] bArr = this.e[i];
|
||
|
for (int i2 = 0; i2 < this.c; i2++) {
|
||
|
byte b = bArr[i2];
|
||
|
if (b == 0) {
|
||
|
sb.append(" 0");
|
||
|
} else if (b == 1) {
|
||
|
sb.append(" 1");
|
||
|
} else {
|
||
|
sb.append(" ");
|
||
|
}
|
||
|
}
|
||
|
sb.append('\n');
|
||
|
}
|
||
|
return sb.toString();
|
||
|
}
|
||
|
}
|