Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
JoltedCowIceCream authored Dec 13, 2024
2 parents e56cff9 + 038c9ab commit 90e925c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions solutions/silver/cc-AMONGUS2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ for _ in range(int(input())):
n, q = map(int, input().split())

"""
adj[i][j] = {the jth adjacent node from i,
adj[i][j] = {the jth adjacent node from i,
their statement (0 = imposter, 1 = crewmate)}
"""
"""
adj = [[] for _ in range(n)]

for _ in range(q):
Expand Down
2 changes: 1 addition & 1 deletion solutions/silver/cf-1365D.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: Solve the Maze
author: Daniel Suh, Brad Ma, George Pong
---

[Official Analysis](https://codeforces.com/blog/entry/78504)
[Official Analysis (C++)](https://codeforces.com/blog/entry/78504)

## Explanation

Expand Down
2 changes: 1 addition & 1 deletion solutions/silver/usaco-380.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: Cross Country Skiing
author: Nathan Gong
---

[Official Analysis](http://www.usaco.org/current/data/sol_ccski.html)
[Official Analysis (C++)](http://www.usaco.org/current/data/sol_ccski.html)

## Implementation

Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -18382,9 +18382,9 @@ nan@^2.12.1:
integrity sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==

nanoid@^3.3.1, nanoid@^3.3.6:
version "3.3.6"
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
version "3.3.8"
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf"
integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==

nanomatch@^1.2.9:
version "1.2.13"
Expand Down

0 comments on commit 90e925c

Please sign in to comment.