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 q1114 implements a solution for https://leetcode.com/problems/print-in-order/
package q1114
type Foo struct {

View file

@ -1,3 +1,4 @@
// Package q1115 implements a solution for https://leetcode.com/problems/print-foobar-alternately/
package q1115
type FooBar struct {

View file

@ -1,3 +1,4 @@
// Package q1116 implements a solution for https://leetcode.com/problems/print-zero-even-odd/
package q1116
type void struct{}

View file

@ -1,3 +1,4 @@
// Package q1117 implements a solution for https://leetcode.com/problems/building-h2o/
package q1117
type void struct{}

View file

@ -1,3 +1,4 @@
// Package q1137 implements a solution for https://leetcode.com/problems/n-th-tribonacci-number/
package q1137
func tribonacci(n int) int {

View file

@ -1,3 +1,4 @@
// Package q1143 implements a solution for https://leetcode.com/problems/longest-common-subsequence/
package q1143
// Note: Can be compressed to only len(text1) extra space.

View file

@ -1,3 +1,4 @@
// Package q1161 implements a solution for https://leetcode.com/problems/maximum-level-sum-of-a-binary-tree/
package q1161
import "math"