Skip to content

Instantly share code, notes, and snippets.

@cuiweixie
cuiweixie / group.go
Last active July 1, 2023 17:15
problem of solving polynomial equations of quintic and higher degree
package main
import (
"fmt"
"strconv"
"strings"
)
func permute(nums []int) [][]int {
if len(nums) == 0 {