go-by-test/dictionary/dictionary.go

10 lines
158 B
Go
Raw Normal View History

2024-09-11 11:48:59 +00:00
package dictionary
func Search(dictionary map[string]string, word string) string {
result, ok := dictionary[word]
if !ok {
return ""
}
return result
}