chore: add package level comments

This commit is contained in:
Yiyang Kang 2026-02-27 12:55:48 +09:00
parent cc87c4b30c
commit ee1868a10e
Signed by: kkyy
SSH key fingerprint: SHA256:lJSbAzC3MvrSORdvIVK6h/3g+rVKJNzM7zq0MgA9WKY
303 changed files with 303 additions and 0 deletions

View file

@ -1,3 +1,4 @@
// Package q1925 implements a solution for https://leetcode.com/problems/count-square-sum-triples/
package q1925
import "math"

View file

@ -1,3 +1,4 @@
// Package q1926 implements a solution for https://leetcode.com/problems/nearest-exit-from-entrance-in-maze/
package q1926
const (

View file

@ -1,3 +1,4 @@
// Package q1929 implements a solution for https://leetcode.com/problems/concatenation-of-array/
package q1929
func getConcatenation(nums []int) []int {

View file

@ -1,3 +1,4 @@
// Package q1935 implements a solution for https://leetcode.com/problems/maximum-number-of-words-you-can-type/
package q1935
import "strings"

View file

@ -1,3 +1,4 @@
// Package q1970 implements a solution for https://leetcode.com/problems/last-day-where-you-can-still-cross/
package q1970
var dirs = [4][2]int{{0, 1}, {0, -1}, {1, 0}, {-1, 0}}

View file

@ -1,3 +1,4 @@
// Package q1975 implements a solution for https://leetcode.com/problems/maximum-matrix-sum/
package q1975
import "math"

View file

@ -1,3 +1,4 @@
// Package q1984 implements a solution for https://leetcode.com/problems/minimum-difference-between-highest-and-lowest-of-k-scores/
package q1984
import (