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 q3606 implements a solution for https://leetcode.com/problems/coupon-code-validator/
|
||||
package q3606
|
||||
|
||||
import (
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3634 implements a solution for https://leetcode.com/problems/minimum-removals-to-balance-array/
|
||||
package q3634
|
||||
|
||||
import "slices"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3637 implements a solution for https://leetcode.com/problems/trionic-array-i/
|
||||
package q3637
|
||||
|
||||
func isTrionic(nums []int) bool {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3640 implements a solution for https://leetcode.com/problems/trionic-array-ii/
|
||||
package q3640
|
||||
|
||||
import "math"
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3651 implements a solution for https://leetcode.com/problems/minimum-cost-path-with-teleportations/
|
||||
package q3651
|
||||
|
||||
import (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue