Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
EndlessCheng committed Feb 21, 2024
1 parent 78743a9 commit f910414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/500-599/598D.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func CF598D(_r io.Reader, _w io.Writer) {
out := bufio.NewWriter(_w)
defer out.Flush()
type pair struct{ x, y int }
dir4 := [...]pair{{-1, 0}, {1, 0}, {0, -1}, {0, 1}}
dir4 := []pair{{-1, 0}, {1, 0}, {0, -1}, {0, 1}}

var n, m, q, x, y int
Fscan(in, &n, &m, &q)
Expand Down

0 comments on commit f910414

Please sign in to comment.