Skip to content

Commit

Permalink
Refactor subtraction
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Aug 21, 2024
1 parent 165dbff commit 4f0bb82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solutions/beecrowd/1024/1024.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ int main() {
line[j] = line[j] + 3;
}
if (j >= line_length / 2) {
line[j] = line[j] - 1;
line[j]--;
}
}

Expand Down

0 comments on commit 4f0bb82

Please sign in to comment.