Tran Phong Phu

Results 2 comments of Tran Phong Phu

Version 2, để code nhìn rõ ràng hơn. ```go package convert import ( "bufio" "errors" "os" "strconv" "strings" ) type City struct { ID int Name string Districts []*District }...

Version 3, phiên bản tổ chức tốt hơn ```go package convert import ( "bufio" "fmt" "os" "strconv" "strings" ) type City struct { ID int Name string Districts []*District }...