CHAPTER 4. CONTAINERS, BLOCKS, AND ITERATORS
PAGE 49
def with_title(title)
@songs.find {|song| title == song.name }
end
Software is about people, not code.
CHAPTER 4. CONTAINERS, BLOCKS, AND ITERATORS
PAGE 49
def with_title(title)
@songs.find {|song| title == song.name }
end
CHAPTER 4. CONTAINERS, BLOCKS, AND ITERATORS
PAGE 44
a = [ 1, 3, 5, 7, 9]
a[-1] -> 9
a[-2] -> 7
a[-99] -> nil
My name is Matt Blodgett, and I believe the most important problems in software development are non-technical.
I write from Chicago, Illinois.
Copyright © 2022 Matt Blodgett