You are given a 2D grid represented as an m x n matrix of integers where each cell contains either a 0 or a 1. In this grid:
Your goal is to find the minimum number of steps required to move from the top-left cell (0, 0) to the bottom-right cell (m-1, n-1). You are allowed to remove at most one obstacle (change one 1 to a 0) in order to create a valid path.
Rules and constraints:
Implement a function or method that takes the grid as input and returns the minimum number of steps required to reach the destination, or -1 if it is not possible.
Consider edge cases such as a grid with no obstacles, a grid where the start or end position is blocked, and grids of varying sizes.
Good luck!