-
Notifications
You must be signed in to change notification settings - Fork 1
/
two_dimension_mnc_challenges.cpp
121 lines (113 loc) · 2.21 KB
/
two_dimension_mnc_challenges.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#include <iostream>
using namespace std;
void swap(int *a,int *b){
int temp=*a;
*a=*b;
*b=temp;
}
int main(){
// int n,m;
// cin>>n>>m;
// int arr[n][m];
// for(int i=0;i<n;i++){
// for(int j=0;j<m;j++){
// cin>>arr[i][j];
// }
// }
// int rstart=0,rend=n-1,cstart=0,cend=m-1;
// while (rstart<=rend && cstart<=cend)
// {
// for(int i=cstart;i<=cend;i++){
// cout<<arr[rstart][i]<<" ";
// }
// rstart++;
// for(int i=rstart;i<=rend;i++){
// cout<<arr[i][cend]<<" ";
// }
// cend--;
// for(int i=cend;i>=cstart;i--){
// cout<<arr[rend][i]<<" ";
// }
// rend--;
// for(int i=rend;i>=rstart;i--){
// cout<<arr[i][cstart]<<" ";
// }
// cstart++;
// cout<<endl;
// }
// int n,m;
// cin>>n>>m;
// int arr[n][m];
// for(int i=0;i<n;i++){
// for(int j=0;j<m;j++){
// cin>>arr[i][j];
// }
// }
// for(int i=0;i<n;i++){
// for(int j=0;j<i;j++){
// swap(arr[i][j],arr[j][i]);
// }
// }
// for(int i=0;i<n;i++){
// for(int j=0;j<m;j++){
// cout<<arr[i][j]<<" ";
// }
// cout<<endl;
// }
// int n,m,p;
// cin>>n>>m;
// cin>>p;
// int arr[n][m];
// for(int i=0;i<n;i++){
// for(int j=0;j<m;j++){
// cin>>arr[i][j];
// }
// }
// int arr2[m][p];
// for(int i=0;i<m;i++){
// for(int j=0;j<p;j++){
// cin>>arr[i][j];
// }
// }
// int mularr[n][p];
// for(int i=0;i<n;i++){
// for(int j=0;j<p;j++){
// mularr[i][j]=0;
// }
// }
// for(int i=0;i<n;i++){
// for(int j=0;j<p;j++){
// for(int k=0;k<m;k++){
// mularr[i][j] += (arr[i][k]*arr2[k][j]);
// cout<<mularr[i][j]<<" ";
// }
// }
// }
// cout<<endl;
// for(int i=0;i<n;i++){
// for(int j=0;j<p;j++){
// cout<<mularr[i][j]<<" ";
// }
// cout<<endl;
// }
// int n,m;
// cin>>n>>m;
// int arr[n][m];
// for(int i=0;i<n;i++){
// for(int j=0;j<m;j++){
// cin>>arr[i][j];
// }
// }
// int key;cin>>key;
// int r=0,c=m-1;
// while (r<n && c>=0)
// {
// if(arr[r][c]==key){
// cout<<"element found";
// break;
// }
// else if(arr[r][c]>key)c--;
// else if(arr[r][c]<key)r++;
// }
return 0;
}