Problem | lis_easy |
---|---|
User | AppleOnAstick |
Submission Time | 2023-11-10 10:24:34 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
lis_easy.cpp: In function ‘int32_t main()’:
lis_easy.cpp:13:10: error: ‘j’ was not declared in this scope
13 | int arr[j];
| ^
lis_easy.cpp:14:19: error: ‘i’ was not declared in this scope
14 | for (int j=0; j<i; j++){
| ^
lis_easy.cpp:16:4: error: ‘LIS’ was not declared in this scope
16 | LIS[i]= max(LIS[i], LIS[j]+1);//choose the best
| ^~~
lis_easy.cpp:25:2: error: ‘ans’ was not declared in this scope; did you mean ‘abs’?
25 | ans = max(ans, LIS[i]);
| ^~~
| abs
lis_easy.cpp:25:17: error: ‘LIS’ was not declared in this scope
25 | ans = max(ans, LIS[i]);
| ^~~
lis_easy.cpp:27:10: error: ‘ans’ was not declared in this scope; did you mean ‘abs’?
27 | cout << ans;
| ^~~
| abs