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 q1925 implements a solution for https://leetcode.com/problems/count-square-sum-triples/
|
||||
package q1925
|
||||
|
||||
import "math"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q1926 implements a solution for https://leetcode.com/problems/nearest-exit-from-entrance-in-maze/
|
||||
package q1926
|
||||
|
||||
const (
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q1929 implements a solution for https://leetcode.com/problems/concatenation-of-array/
|
||||
package q1929
|
||||
|
||||
func getConcatenation(nums []int) []int {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q1935 implements a solution for https://leetcode.com/problems/maximum-number-of-words-you-can-type/
|
||||
package q1935
|
||||
|
||||
import "strings"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q1970 implements a solution for https://leetcode.com/problems/last-day-where-you-can-still-cross/
|
||||
package q1970
|
||||
|
||||
var dirs = [4][2]int{{0, 1}, {0, -1}, {1, 0}, {-1, 0}}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q1975 implements a solution for https://leetcode.com/problems/maximum-matrix-sum/
|
||||
package q1975
|
||||
|
||||
import "math"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q1984 implements a solution for https://leetcode.com/problems/minimum-difference-between-highest-and-lowest-of-k-scores/
|
||||
package q1984
|
||||
|
||||
import (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue