Skip to content

Commit 77e798d

Browse files
Added 110A - Nearly Lucky Number.cpp
1 parent 1dc8ff2 commit 77e798d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

110A - Nearly Lucky Number.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ main ()
99
string s;
1010
cin >> s;
1111
int ans = 0;
12-
for (auto i:s)
12+
for (auto i : s)
1313
{
1414
if (i == '4' || i == '7')
1515
ans++;
@@ -18,4 +18,4 @@ for (auto i:s)
1818
cout << "YES" << endl;
1919
else
2020
cout << "NO" << endl;
21-
}
21+
}

0 commit comments

Comments
 (0)