0_0_39394474_28212.cpp: In function 'int main()':
0_0_39394474_28212.cpp:14:16: error: 'vector' was not declared in this scope
14 | vector<vector<int>> ans(len1 + 1, vector<int>(len2 + 1, 0));
| ^~~~~~
0_0_39394474_28212.cpp:2:1: note: 'std::vector' is defined in header '<vector>'; did you forget to '#include <vector>'?
1 | #include <iostream>
+++ |+#include <vector>
2 | #include <string>
0_0_39394474_28212.cpp:14:23: error: expected primary-expression before 'int'
14 | vector<vector<int>> ans(len1 + 1, vector<int>(len2 + 1, 0));
| ^~~
0_0_39394474_28212.cpp:19:21: error: 'ans' was not declared in this scope; did you mean 'abs'?
19 | ans[i][j] = ans[i - 1][j - 1] + 1;
| ^~~
| abs
0_0_39394474_28212.cpp:21:21: error: 'ans' was not declared in this scope; did you mean 'abs'?
21 | ans[i][j] = max(ans[i - 1][j], ans[i][j - 1]);
| ^~~
| abs
0_0_39394474_28212.cpp:25:17: error: 'ans' was not declared in this scope; did you mean 'abs'?
25 | cout << ans[len1][len2] << endl;
| ^~~
| abs
|