增加新题目

This commit is contained in:
JACKYMYPERSON
2025-08-24 04:20:11 +08:00
parent b2e4a26c09
commit e1546166a3
4 changed files with 246 additions and 38 deletions

View File

@@ -0,0 +1,14 @@
package main
type Node struct {
Val int
Next *Node
Random *Node
}
func main() {
}
func copyRandomList(head *Node) *Node {
return nil
}