def self.foo
[
["a","aa"],
["b","bb"],
]
end
Given "a", I should be able to retrieve "aa" Given "bb", I should be able to retrieve "b"
How do I do this?
def self.foo
[
["a","aa"],
["b","bb"],
]
end
Given "a", I should be able to retrieve "aa" Given "bb", I should be able to retrieve "b"
How do I do this?