Problem | lis_easy |
---|---|
User | AppleOnAstick |
Submission Time | 2023-11-10 10:23:52 |
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:24:2: error: ‘ans’ was not declared in this scope; did you mean ‘abs’?
24 | ans = max(ans, LIS[i]);
| ^~~
| abs
lis_easy.cpp:24:17: error: ‘LIS’ was not declared in this scope
24 | ans = max(ans, LIS[i]);
| ^~~
lis_easy.cpp:26:10: error: ‘ans’ was not declared in this scope; did you mean ‘abs’?
26 | cout << ans;
| ^~~
| abs