0
Can somebody help me with Match Results the course is go
5 Answers
+ 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