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 q3314 implements a solution for https://leetcode.com/problems/construct-the-minimum-bitwise-array-i/
|
||||
package q3314
|
||||
|
||||
func minBitwiseArray(nums []int) []int {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3315 implements a solution for https://leetcode.com/problems/construct-the-minimum-bitwise-array-ii/
|
||||
package q3315
|
||||
|
||||
func minBitwiseArray(nums []int) []int {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3318 implements a solution for https://leetcode.com/problems/find-x-sum-of-all-k-long-subarrays-i/
|
||||
package q3318
|
||||
|
||||
import "slices"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3349 implements a solution for https://leetcode.com/problems/adjacent-increasing-subarrays-detection-i/
|
||||
package q3349
|
||||
|
||||
func hasIncreasingSubarrays(nums []int, k int) bool {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3354 implements a solution for https://leetcode.com/problems/make-array-elements-equal-to-zero/
|
||||
package q3354
|
||||
|
||||
func countValidSelections(nums []int) int {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3370 implements a solution for https://leetcode.com/problems/smallest-number-with-all-set-bits/
|
||||
package q3370
|
||||
|
||||
func smallestNumber(n int) int {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q3379 implements a solution for https://leetcode.com/problems/transformed-array/
|
||||
package q3379
|
||||
|
||||
func constructTransformedArray(nums []int) []int {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue