Below you will find pages that utilize the taxonomy term “lesson 13”
April 7, 2025
Learn to Code In 5 Minutes A Day: Lesson 13
Lesson 12 Solution So yesterday you worked on converting 6, 7, and 8 to VI, VII, and VIII.
Does your solution look like this?
romans_test.go:
func TestRoman6(t *testing.T) { result := roman(6) expected := "VI" if result != expected { t.Errorf("result was incorrect, got: %v, want: %v.", result, expected) } } func TestRoman7(t *testing.T) { result := roman(7) expected := "VII" if result != expected { t.Errorf("result was incorrect, got: %v, want: %v.
read more