Skip to content

Commit 5a6736d

Browse files
committed
Add an A name
1 parent 1743b16 commit 5a6736d

File tree

2 files changed

+8
-0
lines changed
  • 001_bubble_sort/practice_problems

2 files changed

+8
-0
lines changed

001_bubble_sort/practice_problems/003_first_and_last_name/main.go

+4
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ func main() {
4141
FirstName: "Shane",
4242
LastName: "Calhoun",
4343
},
44+
User{
45+
FirstName: "Alice",
46+
LastName: "Calhoun",
47+
},
4448
}
4549

4650
fmt.Println("Unsorted:", users)

001_bubble_sort/practice_problems/003_first_and_last_name_solution/main.go

+4
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ func main() {
4141
FirstName: "Shane",
4242
LastName: "Calhoun",
4343
},
44+
User{
45+
FirstName: "Alice",
46+
LastName: "Calhoun",
47+
},
4448
}
4549

4650
fmt.Println("Unsorted:", users)

0 commit comments

Comments
 (0)