1089. Duplicate Zeros

1089. Duplicate Zeros

class Solution {
	public void duplicateZeros(int[] arr) {
		ArrayList rem = new ArrayList();
		for (int i = 0; i < arr.length; i++) {
			
				if (arr[i] == 0) {
					rem.add(0);
					rem.add(0);
					arr[i] = rem.get(0);
					rem.remove(0);
				
			}else {
				rem.add(arr[i]);
				arr[i] = rem.get(0);
				rem.remove(0);
			}
		}

	}

	
}

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s