[#0166] feat(leetcode): init project

This commit is contained in:
2025-09-24 09:35:00 +08:00
parent 959f8a6861
commit 5189c524ef
9 changed files with 220 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
module leetcode-166
go 1.18

View File

@@ -0,0 +1,18 @@
// LeetCode 166: Fraction To Recurring Decimal
// 難度: Medium
// 日期: 2025-09-24
package main
import "fmt"
// TODO: 根據題意調整簽名
func solve(nums []int) int {
return 0
}
func main() {
fmt.Printf("Hello LeetCode 166!\n")
// TODO: 可加入簡單測試
}