fix(podiumposition): re-format golang codeblock

This commit is contained in:
Harry 2022-10-20 18:11:07 +01:00 committed by GitHub
parent 943ce127ce
commit d2b3bdbd2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 4 deletions

View File

@ -28,7 +28,13 @@ import (
) )
func main() { func main() {
position := [][]string{{"4th Place"}, {"3rd Place"}, {"2nd Place"}, {"1st Place"}}
p4 := []string{"4th Place"}
p3 := []string{"3rd Place"}
p2 := []string{"2nd Place"}
p1 := []string{"1st Place"}
position := [][]string{p4, p3, p2, p1}
fmt.Println(piscine.PodiumPosition(position)) fmt.Println(piscine.PodiumPosition(position))
} }
``` ```