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 q1200 implements a solution for https://leetcode.com/problems/minimum-absolute-difference/
package q1200
import (

View file

@ -1,3 +1,4 @@
// Package q1207 implements a solution for https://leetcode.com/problems/unique-number-of-occurrences/
package q1207
import "slices"

View file

@ -1,3 +1,4 @@
// Package q1226 implements a solution for https://leetcode.com/problems/the-dining-philosophers/
package q1226
import "sync"

View file

@ -1,3 +1,4 @@
// Package q1266 implements a solution for https://leetcode.com/problems/minimum-time-visiting-all-points/
package q1266
func abs(i int) int {

View file

@ -1,3 +1,4 @@
// Package q1268 implements a solution for https://leetcode.com/problems/search-suggestions-system/
package q1268
import "slices"

View file

@ -1,3 +1,4 @@
// Package q1292 implements a solution for https://leetcode.com/problems/maximum-side-length-of-a-square-with-sum-less-than-or-equal-to-threshold/
package q1292
func pfSum(mat [][]int) [][]int {