Skip to content

Instantly share code, notes, and snippets.

@Vaib215
Last active September 25, 2022 23:05
Show Gist options
  • Save Vaib215/d01f22a0da7059e0e2e27fe3602260ab to your computer and use it in GitHub Desktop.
Save Vaib215/d01f22a0da7059e0e2e27fe3602260ab to your computer and use it in GitHub Desktop.
TC - O(N^3)
public static void printSubArr(int a[]){
int n = a.length;
for (int i = 0; i < n; i++) {
for (int j = i; j < n; j++) {
System.out.print("[");
for (int k = i; k <= j; k++) {
System.out.print(a[k]+",");
}
System.out.print("], ");
}
System.out.println();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment