MCPcopy Create free account
hub / github.com/Tiwarishashwat/InterviewCodes / print

Method print

RearrangeArrayInAlternatingPositions.java:12–18  ·  view source on GitHub ↗
(int output[])

Source from the content-addressed store, hash-verified

10
11 }
12 public static void print(int output[])
13 {
14 for(int i=0;i<output.length;i++)
15 {
16 System.out.print(output[i]+" ");
17 }
18 }
19 public static void rotate(int nums[],int start, int end)
20 {
21 int temp=nums[end];

Callers 4

mainMethod · 0.95
commonElementsMethod · 0.80
printArrayMethod · 0.80
subSequenceMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected