Skip to content

Commit 9ae2cc7

Browse files
authored
Merge pull request #1 from wgj/add_A_name
practice_problems/003_first_and_last_name: Add an A name for a trickier test case
2 parents 1743b16 + 5a6736d commit 9ae2cc7

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)