Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. string S1;
  2. string S2;
  3. cin >> S1;
  4. cin >> S2;
  5.  
  6.  
  7. vector<vector<int>> D(S1.size()+1);
  8. for (size_t i = 0; i<D.size(); i++){
  9. D[i].resize(S2.size()+1, 0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement