118. Safe Lookup with a Default

Easy

Return the value of s at label if that label exists in the index, otherwise return the string "Not found" (without raising an error).

Sample data: s:

a    1
b    2
c    3
Implement solve(...)