Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RLGGHC/248929 to your computer and use it in GitHub Desktop.
Save RLGGHC/248929 to your computer and use it in GitHub Desktop.
class Polynomial
def initialize(coeffs)
raise ArgumentError.new("Need at least 2 coefficients.") if coeffs.size < 2
@coeffs = coeffs
end
def to_s
output = []
coeffs = @coeffs.dup
coeffs.size.times do |index|
coeff = coeffs.pop
if coeff != 0
output << "^#{index}" if index > 1
output << 'x' if index > 0
output << coeff
output << '+' if coeff > 0 and
coeffs.select { |c| c != 0 }.size > 0
end
end
output.reverse.join
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment