-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe1252.c
48 lines (40 loc) · 1.04 KB
/
e1252.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Lot of loops but eh ill swap it around with bools
int oddCells(int m, int n, int** indices, int indicesSize, int* indicesColSize) {
// reference matrix setup
int** refren = (int**) malloc(sizeof(int*) * m);
for (int i = 0; i < m; i++) {
refren[i] = (int*) malloc(sizeof(int) * n);
for (int j = 0; j < n; j++) {
refren[i][j] = 0;
}
}
// calculations
for (int i = 0; i < indicesSize; i++) {
// rows
int row = indices[i][0];
for (int j = 0; j < n; j++) {
refren[row][j]++;
}
// cols
int col = indices[i][1];
for (int j = 0; j < m; j++) {
refren[j][col]++;
}
}
// counting odds
int output = 0;
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (refren[i][j] % 2 == 1) {
output++;
}
}
}
// freeing
for (int i = 0; i < m; i++) {
free(refren[i]);
}
free(refren);
// output
return output;
}