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 q3005 implements a solution for https://leetcode.com/problems/count-elements-with-maximum-frequency/
package q3005
import "slices"

View file

@ -1,3 +1,4 @@
// Package q3010 implements a solution for https://leetcode.com/problems/divide-an-array-into-subarrays-with-minimum-cost-i/
package q3010
func minimumCost(nums []int) int {

View file

@ -1,3 +1,4 @@
// Package q3013 implements a solution for https://leetcode.com/problems/divide-an-array-into-subarrays-with-minimum-cost-ii/
package q3013
import (

View file

@ -1,3 +1,4 @@
// Package q3047 implements a solution for https://leetcode.com/problems/find-the-largest-area-of-square-inside-two-rectangles/
package q3047
import "slices"

View file

@ -1,3 +1,4 @@
// Package q3074 implements a solution for https://leetcode.com/problems/apple-redistribution-into-boxes/
package q3074
import "slices"

View file

@ -1,3 +1,4 @@
// Package q3075 implements a solution for https://leetcode.com/problems/maximize-happiness-of-selected-children/
package q3075
import "slices"