Skip to content

Instantly share code, notes, and snippets.

View iFurySt's full-sized avatar
:shipit:
fuzz

Leo iFurySt

:shipit:
fuzz
View GitHub Profile
@iFurySt
iFurySt / example_test.go
Last active February 4, 2021 06:25
Go - Stack(LIFO)
/**
* Package stack
* @Author iFurySt <[email protected]>
* @Date 2021/2/4
*/
package stack
import "fmt"
func Example() {
@iFurySt
iFurySt / slice.go
Created July 26, 2023 13:00
Sort a slice with generic type in Go.
package main
import (
"fmt"
"github.com/ifuryst/lol"
"golang.org/x/exp/slices"
"math"
)
func main() {