Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    1089 - Duplicate Zeros\.

    Easy

    Given a fixed-length integer array arr, duplicate each occurrence of zero, shifting the remaining elements to the right.

    Note that elements beyond the length of the original array are not written. Do the above modifications to the input array in place and do not return anything.

    Example 1:

    Input: arr = 1,0,2,3,0,4,5,0

    Output: 1,0,0,2,3,0,0,4

    Explanation: After calling your function, the input array is modified to: 1,0,0,2,3,0,0,4

    Example 2:

    Input: arr = 1,2,3

    Output: 1,2,3

    Explanation: After calling your function, the input array is modified to: 1,2,3

    Constraints:

    • <code>1 <= arr.length <= 10<sup>4</sup></code>

    • 0 &lt;= arr[i] &lt;= 9

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Solution()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final Unit duplicateZeros(IntArray arr)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait