We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1743b16 commit 5a6736dCopy full SHA for 5a6736d
001_bubble_sort/practice_problems/003_first_and_last_name/main.go
@@ -41,6 +41,10 @@ func main() {
41
FirstName: "Shane",
42
LastName: "Calhoun",
43
},
44
+ User{
45
+ FirstName: "Alice",
46
+ LastName: "Calhoun",
47
+ },
48
}
49
50
fmt.Println("Unsorted:", users)
001_bubble_sort/practice_problems/003_first_and_last_name_solution/main.go
0 commit comments