**Problem Statement:**
You are given a large integer represented as an integer array `digits`, where each `digits[i]` is the `i`th digit of the integer. The digits are ordered from most significant to least significant in left-to-right order. Increment the large integer by one and return the resulting array of digits.
**Hint / Expected Approach:**
Carry propagation from end
**Edge Cases to Consider:**
- (1) All nines [9,9,9]
- (2) Single digit 9
- (3) No carry needed