mirror of
https://gitee.com/NorthCityChen/stl-go.git
synced 2025-05-25 20:11:08 +00:00
BUGFIX: maybe
This commit is contained in:
parent
856132dd71
commit
41fd17517f
5
app.go
5
app.go
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: NorthCity1984
|
* @Author: NorthCity1984
|
||||||
* @LastEditTime: 2022-04-02 12:42:40
|
* @LastEditTime: 2022-04-02 13:19:42
|
||||||
* @Description:
|
* @Description:
|
||||||
* @Website: https://grimoire.cn
|
* @Website: https://grimoire.cn
|
||||||
* Copyright (c) NorthCity1984 All rights reserved.
|
* Copyright (c) NorthCity1984 All rights reserved.
|
||||||
@ -9,7 +9,8 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"stl-go/dequeue"
|
|
||||||
|
"gitee.com/NorthCityChen/stl-go/dequeue"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
2
go.mod
2
go.mod
@ -1,3 +1,3 @@
|
|||||||
module stl-go
|
module gitee.com/NorthCityChen/stl-go
|
||||||
|
|
||||||
go 1.18
|
go 1.18
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: NorthCity1984
|
* @Author: NorthCity1984
|
||||||
* @LastEditTime: 2022-04-01 20:54:04
|
* @LastEditTime: 2022-04-02 13:19:50
|
||||||
* @Description:
|
* @Description:
|
||||||
* @Website: https://grimoire.cn
|
* @Website: https://grimoire.cn
|
||||||
* Copyright (c) NorthCity1984 All rights reserved.
|
* Copyright (c) NorthCity1984 All rights reserved.
|
||||||
@ -8,8 +8,9 @@
|
|||||||
package math_test
|
package math_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"stl-go/math"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"gitee.com/NorthCityChen/stl-go/math"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestMin(t *testing.T) {
|
func TestMin(t *testing.T) {
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: NorthCity1984
|
* @Author: NorthCity1984
|
||||||
* @LastEditTime: 2022-04-02 12:40:51
|
* @LastEditTime: 2022-04-02 13:19:37
|
||||||
* @Description:
|
* @Description:
|
||||||
* @Website: https://grimoire.cn
|
* @Website: https://grimoire.cn
|
||||||
* Copyright (c) NorthCity1984 All rights reserved.
|
* Copyright (c) NorthCity1984 All rights reserved.
|
||||||
*/
|
*/
|
||||||
package queue
|
package queue
|
||||||
|
|
||||||
import "stl-go/dequeue"
|
import "gitee.com/NorthCityChen/stl-go/dequeue"
|
||||||
|
|
||||||
type Number interface {
|
type Number interface {
|
||||||
int | int64 | float32 | float64
|
int | int64 | float32 | float64
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: NorthCity1984
|
* @Author: NorthCity1984
|
||||||
* @LastEditTime: 2022-04-02 12:39:53
|
* @LastEditTime: 2022-04-02 13:19:33
|
||||||
* @Description:
|
* @Description:
|
||||||
* @Website: https://grimoire.cn
|
* @Website: https://grimoire.cn
|
||||||
* Copyright (c) NorthCity1984 All rights reserved.
|
* Copyright (c) NorthCity1984 All rights reserved.
|
||||||
*/
|
*/
|
||||||
package stack
|
package stack
|
||||||
|
|
||||||
import "stl-go/dequeue"
|
import "gitee.com/NorthCityChen/stl-go/dequeue"
|
||||||
|
|
||||||
type Number interface {
|
type Number interface {
|
||||||
int | int64 | float32 | float64
|
int | int64 | float32 | float64
|
||||||
|
Loading…
x
Reference in New Issue
Block a user