Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Dec 26, 2023
1 parent e8a403b commit 6ef7cbc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .docker/lint/dart-lint.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM google/dart
FROM dart:3.0.5

RUN mkdir /code
WORKDIR /code
Expand Down
2 changes: 1 addition & 1 deletion .docker/lint/js-lint.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:12.18.3
FROM node:12.22.0

RUN npm install -g standard

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ endif

__run-lint-build:
@for language_lint in $(SUPPORTED_LINTS); do \
$(DOCKER_BUILD) .docker/lint/$${language_lint}-lint.Dockerfile -t $${language_lint}-lint .; \
$(DOCKER_BUILD) .docker/lint/$${language_lint}-lint.Dockerfile --platform linux/arm64 -t $${language_lint}-lint .; \
done

check-tags:
Expand Down
1 change: 0 additions & 1 deletion solutions/beecrowd/1029/1029.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ int main() {
std::int32_t fib_result = fib(n);

printf("fib(%d) = %d calls = %d\n", n, r[n], fib_result);

}

return 0;
Expand Down

0 comments on commit 6ef7cbc

Please sign in to comment.