We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
int n;
scanf("%d", &n);
// Complete the code to print the pattern.
int L = 2 * n - 1;
for (int i = 1; i <= L; i++) {
for (int j = 1; j <= L; j++) {
int dr = abs(i - n);
int dc = abs(j - n);
int d = dr > dc ? dr : dc;
printf("%d ", d + 1);
}
printf("\n");
}
return 0;
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Printing Pattern Using Loops
You are viewing a single comment's thread. Return to all comments →
include
include
include
include
int main() {
}