chore: add package level comments
This commit is contained in:
parent
cc87c4b30c
commit
ee1868a10e
303 changed files with 303 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
|||
// Package q1114 implements a solution for https://leetcode.com/problems/print-in-order/
|
||||
package q1114
|
||||
|
||||
type Foo struct {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q1115 implements a solution for https://leetcode.com/problems/print-foobar-alternately/
|
||||
package q1115
|
||||
|
||||
type FooBar struct {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q1116 implements a solution for https://leetcode.com/problems/print-zero-even-odd/
|
||||
package q1116
|
||||
|
||||
type void struct{}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q1117 implements a solution for https://leetcode.com/problems/building-h2o/
|
||||
package q1117
|
||||
|
||||
type void struct{}
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue