Skip to content

Commit

Permalink
Update usaco-1277.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
SansPapyrus683 authored Nov 9, 2024
1 parent ac00bce commit 6dbe63d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions solutions/bronze/usaco-1277.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,11 @@ int main() {
```
</CPPSection>
<PySection>
```py
str_num = int(input())
for _ in range(str_num):
word = input().strip()
for _ in range(int(input())):
word = input()
# `char_diff` characters have to be removed regardless of the string
char_diff = len(word) - 3
Expand All @@ -106,7 +104,6 @@ for _ in range(str_num):
```

</PySection>

</LanguageSection>

</Spoiler>

0 comments on commit 6dbe63d

Please sign in to comment.