how to initialized a 2d vector
To be used in DP problems:
vector<vector<int>>dp; //global init
dp = vector<vector<int>>(n,vector<int>(m,0)); // local init for test cases
where,
n, m = dimensions of matrix
how to initialized a 2d vector
To be used in DP problems:
vector<vector<int>>dp; //global init
dp = vector<vector<int>>(n,vector<int>(m,0)); // local init for test cases
where,
n, m = dimensions of matrix
initialzing a 2d vector in cpp
// Create a vector containing n row and m columns
vector<vector<int> > vec( n , vector<int> (m, 0));
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us