# File lib/quiz1/t/solutions/Florian Gross/solitaire.rb, line 24
    def self.deck
      Types.map do |type|
        if type == :special
          SpecialFaces.map do |face|
            new(face, type)
          end
        else
          Faces.map do |face|
            new(face, type)
          end
        end
      end.flatten
    end