Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Nov 20, 2024
1 parent e14cd7f commit a6c887e
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions solutions/beecrowd/1052/1052.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,19 @@
#include <string>

int main() {
std::string m[12] = {
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
};
std::string m[12]
= {"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"};
std::int16_t n;

while (scanf("%d", &n) != EOF) {
Expand Down

0 comments on commit a6c887e

Please sign in to comment.