# File lib/quiz1/t/solutions/Glen M. Lewis/solitaire.rb, line 80
  def find_joker(j)
    self.each_index do |i|
      if (self[i].face_value == j)
        return i
      end
    end
    puts "ERROR: Could not find joker '#{j}' in deck."
  end