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 q2011 implements a solution for https://leetcode.com/problems/final-value-of-variable-after-performing-operations/
|
||||
package q2011
|
||||
|
||||
func finalValueAfterOperations(operations []string) int {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q2073 implements a solution for https://leetcode.com/problems/time-needed-to-buy-tickets/
|
||||
package q2073
|
||||
|
||||
func timeRequiredToBuy(tickets []int, k int) int {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
// Package q2095 implements a solution for https://leetcode.com/problems/delete-the-middle-node-of-a-linked-list/
|
||||
package q2095
|
||||
|
||||
type ListNode struct {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue