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 q3606 implements a solution for https://leetcode.com/problems/coupon-code-validator/
package q3606
import (

View file

@ -1,3 +1,4 @@
// Package q3634 implements a solution for https://leetcode.com/problems/minimum-removals-to-balance-array/
package q3634
import "slices"

View file

@ -1,3 +1,4 @@
// Package q3637 implements a solution for https://leetcode.com/problems/trionic-array-i/
package q3637
func isTrionic(nums []int) bool {

View file

@ -1,3 +1,4 @@
// Package q3640 implements a solution for https://leetcode.com/problems/trionic-array-ii/
package q3640
import "math"

View file

@ -1,3 +1,4 @@
// Package q3650 implements a solution for https://leetcode.com/problems/minimum-cost-path-with-edge-reversals/
package q3650
func minCost(n int, edges [][]int) int {

View file

@ -1,3 +1,4 @@
// Package q3651 implements a solution for https://leetcode.com/problems/minimum-cost-path-with-teleportations/
package q3651
import (