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 q1200 implements a solution for https://leetcode.com/problems/minimum-absolute-difference/
|
||||
package q1200
|
||||
|
||||
import (
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q1207 implements a solution for https://leetcode.com/problems/unique-number-of-occurrences/
|
||||
package q1207
|
||||
|
||||
import "slices"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q1226 implements a solution for https://leetcode.com/problems/the-dining-philosophers/
|
||||
package q1226
|
||||
|
||||
import "sync"
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q1268 implements a solution for https://leetcode.com/problems/search-suggestions-system/
|
||||
package q1268
|
||||
|
||||
import "slices"
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue