-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsquareNumPattern.cpp
74 lines (50 loc) · 948 Bytes
/
squareNumPattern.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include<bits/stdc++.h>
using namespace std;
vector<vector<int>> prettyPrint(int A) {
int n = 2*A-1;
vector<vector<int>> vect(n);
int val = A;
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
vect[i].push_back(0);
}
}
for(int i=0;i<n;i++){
// top and right of the matrix
for(int j=i;j<n-i;j++){
vect[i][j]=A;
vect[j][i]=A;
vect[n-i-1][n-j-1]=A;
vect[n-j-1][n-i-1]=A;
}
A--;
}
return vect;
}
int main(){
int n = 4;
vector<vector<int>> ans = prettyPrint(n);
for(int i=0;i<ans.size();i++){
for(int j=0;j<ans[i].size();j++){
cout<<ans[i][j]<<" ";
}
cout<<endl;
}
return 0;
}
/*
# 4
4 4 4 4 4 4 4
4 3 3 3 3 3 4
4 3 2 2 2 3 4
4 3 2 1 2 3 4
4 3 2 2 2 3 4
4 3 3 3 3 3 4
4 4 4 4 4 4 4
# 3
3 3 3 3 3
3 2 2 2 3
3 2 1 2 3
3 2 2 2 3
3 3 3 3 3
*/