drzel/another_toy_robot

View on GitHub
lib/another_toy_robot/arena.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Arena
  def initialize(width: 5, height: 5)
    @columns = 0...width
    @rows    = 0...height
  end

  def inbounds?(position)
    @columns.cover?(position.x_coord) && @rows.cover?(position.y_coord)
  end
end