forked from grantrostig/cpp_by_example
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.cpp
More file actions
27 lines (21 loc) · 440 Bytes
/
main.cpp
File metadata and controls
27 lines (21 loc) · 440 Bytes
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
#include <iostream>
#include <vector>
#include <array>
#include <functional>
#include <algorithm>
#include <utility>
using namespace std;
int diversity(int numRows, int numCols, int ** lot)
{
int distance {};
return distance;
}
int main()
{
vector<int> songs {1,10,25,35,60}; // todo: convert these to enum values
int * lot[];
diversity( 3, 3, );
// return: {2,3};
cout << "###" << endl;
return 0;
}