Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Aug 22, 2024
1 parent bf58fac commit 3e61a7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions solutions/beecrowd/1099/generate_in.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ set -euo pipefail

TESTCASES=1000

echo "$TESTCASES"
for _ in $(seq $TESTCASES); do
echo "${TESTCASES}"
for _ in $(seq "${TESTCASES}"); do
if [[ $((RANDOM % 2)) -eq 0 ]]; then
echo "$((RANDOM % 10000 + 1)) $((RANDOM % 100 + 1))"
else
Expand Down
2 changes: 1 addition & 1 deletion solutions/beecrowd/1156/1156.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ int main() {
int16_t i;

for (i = 3; i <= 39; i += 2) {
s += (double)(i / x);
s += i / x;
x *= 2;
}

Expand Down

0 comments on commit 3e61a7f

Please sign in to comment.