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 q3507 implements a solution for https://leetcode.com/problems/minimum-pair-removal-to-sort-array-i/
|
||||
package q3507
|
||||
|
||||
import "math"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3510 implements a solution for https://leetcode.com/problems/minimum-pair-removal-to-sort-array-ii/
|
||||
package q3510
|
||||
|
||||
import "container/heap"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3512 implements a solution for https://leetcode.com/problems/minimum-operations-to-make-array-sum-divisible-by-k/
|
||||
package q3512
|
||||
|
||||
func minOperations(nums []int, k int) int {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3516 implements a solution for https://leetcode.com/problems/find-closest-person/
|
||||
package q3516
|
||||
|
||||
func abs(n int) int {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3541 implements a solution for https://leetcode.com/problems/find-most-frequent-vowel-and-consonant/
|
||||
package q3541
|
||||
|
||||
func maxFreqSum(s string) int {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue