0
Can somebody help me with Match Results the course is go
5 Respostas
+ 5
Michael smith ,
if you really have a problem, we need some more details from you:
▪︎give a clear and complete description about your task
▪︎if there are error messages please post them here
▪︎give at least one sample with input data and the expected output
▪︎to be able to find out the issues you have, we need to see your code
=> please put your code in playground, save it there and post a link to it here.
thanks for your understanding!
+ 1
Please delete your other duplicate posts. If you respond to Lothar's question, you may get an answer.
+ 1
i rlly need the answer]
0
my code: func main() {
results := []string{"w", "l", "w", "d", "w", "l", "l", "l", "d", "d", "w", "l", "w", "d"}
int a,b;
int w,l,d;
if(a>b){
fmt.Println("w")
}
else if(a<b){
fmt.Println("l")
}
else{
fmt.Println("d")
}
}
0
can i get the solution