Fix Code Formatting
This commit is contained in:
parent
933ccb74ba
commit
b38f5ffc8e
Binary file not shown.
|
@ -20,8 +20,8 @@ public class RecursiveExercise {
|
|||
return null;
|
||||
if (ht.length == 1)
|
||||
return ht.clone();
|
||||
return append(new int[] { ht[ht.length - 1] },
|
||||
append(reverse(MyArrayUtil.tail(removeLast(ht.clone(), new int[ht.length - 1], 0))), new int[] { ht[0] }));
|
||||
return append(new int[] { ht[ht.length - 1] }, append(
|
||||
reverse(MyArrayUtil.tail(removeLast(ht.clone(), new int[ht.length - 1], 0))), new int[] { ht[0] }));
|
||||
}
|
||||
|
||||
// Remove the last element
|
||||
|
|
Loading…
Reference in New Issue