Java: Create a new array that is left shifted from a given array of integers
Left Shift Array
Write a Java program to create an array left shifted from a given array of integers.
Pictorial Presentation:
Sample Solution:
Java Code:
Sample Output:
Original Array: [11, 15, 13, 10, 45, 20] New Array: [15, 13, 10, 45, 20, 11]
Flowchart:
For more Practice: Solve these Related Problems:
- Modify the program to right shift the array instead.
- Write a program to shift the array k times to the left.
- Modify the program to rotate elements instead of shifting with zeros.
- Write a program to reverse shift elements to their original position.
Go to:
PREV : Group Match Start and End.
NEXT : Three Increasing Adjacent Numbers.
Java Code Editor:
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.