Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Aug 21, 2024
1 parent bfd4975 commit 3d3755e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions solutions/beecrowd/1024/1024.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <stdio.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>

#define MAX_M 1000
Expand Down Expand Up @@ -38,8 +38,8 @@ int main() {
reverse_string(line);

for (uint16_t j = 0; j < line_length; j++) {
if ((line[j] >= 65 && line[j] <= 90) // between A and Z
|| (line[j] >= 97 && line[j] <= 122)) { // between a and z
if ((line[j] >= 65 && line[j] <= 90) // between A and Z
|| (line[j] >= 97 && line[j] <= 122)) { // between a and z
line[j] = line[j] + 3;
}
if (j >= line_length / 2) {
Expand Down

0 comments on commit 3d3755e

Please sign in to comment.