Below you will find pages that utilize the taxonomy term “lesson 11”
March 30, 2025
Learn to Code In 5 Minutes A Day: Lesson 11
Lesson 10 Solution: Roman Numeral 4 Did you get a solution that looks something like this?
func roman(number int) string { result := "" if number == 4 { return "IV" } for i := 0; i < number; i++ { result += "I" } return result } or did you get a solution that looks like this?
package main func roman(number int) string { result := "" if number == 4 { result = "IV" number = number - 4 } for i := 0; i < number; i++ { result += "I" } return result } Either way works:
read more