-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CHEFSUM (SEPT17) [C] #257
CHEFSUM (SEPT17) [C] #257
Conversation
Hi! Thanks for contributing to this repository. |
2017/SEPT/SEPT17/CHEFSUM/CHEFSUM.c
Outdated
} | ||
} | ||
printf("%d\n",index + 1); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line contains following spacing inconsistencies:
- Trailing whitespaces.
Origin: SpaceConsistencyBear, Section: c/cpp spacing
.
The issue can be fixed by applying the following patch:
--- a/tmp/tmptb9luzvn/2017/SEPT/SEPT17/CHEFSUM/CHEFSUM.c
+++ b/tmp/tmptb9luzvn/2017/SEPT/SEPT17/CHEFSUM/CHEFSUM.c
@@ -14,5 +14,5 @@
}
}
printf("%d\n",index + 1);
- }
+ }
}```
2017/SEPT/SEPT17/CHEFSUM/CHEFSUM.c
Outdated
} | ||
printf("%d\n",index + 1); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line contains following spacing inconsistencies:
- No newline at EOF.
Origin: SpaceConsistencyBear, Section: c/cpp spacing
.
The issue can be fixed by applying the following patch:
--- a/tmp/tmptb9luzvn/2017/SEPT/SEPT17/CHEFSUM/CHEFSUM.c
+++ b/tmp/tmptb9luzvn/2017/SEPT/SEPT17/CHEFSUM/CHEFSUM.c
@@ -15,4 +15,4 @@
}
printf("%d\n",index + 1);
}
-}+}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
Fixes #187
Problem Code (Contest Code) [Language]
.