int solve(vector<vector<int>> arr) {
int n = arr.size();
vector<vector<int>> dp(n, vector<int>(n));
int maxi = 0;
for(int i = 0; i < n; i++) {
for(int j = 0; j < n; j++) {
if(i == 0 || j == 0) {
dp[i][j] = arr[i][j];
} else if(arr[i][j] == 1) {
dp[i][j] = min({dp[i-1][j], dp[i][j-1], dp[i-1][j-1]}) + 1;
}
maxi = max(maxi, dp[i][j]);
}
}
return maxi;
}
IBMโ
Source : Hola
int n = arr.size();
vector<vector<int>> dp(n, vector<int>(n));
int maxi = 0;
for(int i = 0; i < n; i++) {
for(int j = 0; j < n; j++) {
if(i == 0 || j == 0) {
dp[i][j] = arr[i][j];
} else if(arr[i][j] == 1) {
dp[i][j] = min({dp[i-1][j], dp[i][j-1], dp[i-1][j-1]}) + 1;
}
maxi = max(maxi, dp[i][j]);
}
}
return maxi;
}
IBMโ
Source : Hola
โค1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐SAP is Hiring !!
Role: Support Engineer
Experience: 0-3 years
Expected CTC: 9-15 LPA
Apply here: https://jobs.sap.com/job/Bangalore-Support-Engineer-560103/1008423101/
Role: Support Engineer
Experience: 0-3 years
Expected CTC: 9-15 LPA
Apply here: https://jobs.sap.com/job/Bangalore-Support-Engineer-560103/1008423101/
Sap
Support Engineer
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐จ Job Openings Update ๐จ
Company โ Bik
Role โ Data Analyst
Exp. โ 1 yr
Apply Here โ https://www.linkedin.com/jobs/view/3783368548
Company โ Syntasa
Role โ Data Scientist
Exp. โ 2yrs
Apply Here โ https://www.linkedin.com/jobs/view/3788779191
Company โ SatSure
Role โ Data Analyst
Exp. โ 2yrs
Apply Here โ https://www.linkedin.com/jobs/view/3758178373
Company โ Equifax
Role โ Trainee - Data Scientist
Exp. โ 0-1yr
Apply Here โ https://www.linkedin.com/jobs/view/3781583165
Company โ Figr
Role โ Machine Learning Engineer Intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3784028540
Company โ Unified Mentor Live
Role โ Data Science intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3791697266
Company โ Factacy.ai
Role โ Data analyst intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3786194400
Company โ MiStay - India's Largest Hourly Hotels
Role โ Data Analyst intern
Exp. โ Proven experience as a Data analyst
Apply Here โ https://www.linkedin.com/jobs/view/3761411694
Company โ Obvious Technology Inc.
Role โ Machine Learning Engineer
Exp. โ Masters in Machine Learning, Computer Science, Statistics, or a related field is preferred, ML, Data visualization
Apply Here โ https://www.linkedin.com/jobs/view/3780086692
Company โ Deliveroo
Role โ Data Scientist
Exp. โ Exp. In BI tools, and ML pipelines
Apply Here โ https://www.linkedin.com/jobs/view/3761927968
Company โ Bik
Role โ Data Analyst
Exp. โ 1 yr
Apply Here โ https://www.linkedin.com/jobs/view/3783368548
Company โ Syntasa
Role โ Data Scientist
Exp. โ 2yrs
Apply Here โ https://www.linkedin.com/jobs/view/3788779191
Company โ SatSure
Role โ Data Analyst
Exp. โ 2yrs
Apply Here โ https://www.linkedin.com/jobs/view/3758178373
Company โ Equifax
Role โ Trainee - Data Scientist
Exp. โ 0-1yr
Apply Here โ https://www.linkedin.com/jobs/view/3781583165
Company โ Figr
Role โ Machine Learning Engineer Intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3784028540
Company โ Unified Mentor Live
Role โ Data Science intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3791697266
Company โ Factacy.ai
Role โ Data analyst intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3786194400
Company โ MiStay - India's Largest Hourly Hotels
Role โ Data Analyst intern
Exp. โ Proven experience as a Data analyst
Apply Here โ https://www.linkedin.com/jobs/view/3761411694
Company โ Obvious Technology Inc.
Role โ Machine Learning Engineer
Exp. โ Masters in Machine Learning, Computer Science, Statistics, or a related field is preferred, ML, Data visualization
Apply Here โ https://www.linkedin.com/jobs/view/3780086692
Company โ Deliveroo
Role โ Data Scientist
Exp. โ Exp. In BI tools, and ML pipelines
Apply Here โ https://www.linkedin.com/jobs/view/3761927968
def matrixbit(passwords, common_words):
result = []
regexNum = re.compile(r'^\d+$')
regexLower = re.compile(r'^[a-z]+$')
regexUpper = re.compile(r'^[A-Z]+$')
for password in passwords:
isWeak = False
if len(password) < 6:
result.append("weak")
continue
if regexNum.match(password) or regexLower.match(password) or regexUpper.match(password):
result.append("weak")
continue
for word in common_words:
if word in password:
result.append("weak")
isWeak = True
break
if not isWeak:
result.append("strong")
return result
IBMโ
result = []
regexNum = re.compile(r'^\d+$')
regexLower = re.compile(r'^[a-z]+$')
regexUpper = re.compile(r'^[A-Z]+$')
for password in passwords:
isWeak = False
if len(password) < 6:
result.append("weak")
continue
if regexNum.match(password) or regexLower.match(password) or regexUpper.match(password):
result.append("weak")
continue
for word in common_words:
if word in password:
result.append("weak")
isWeak = True
break
if not isWeak:
result.append("strong")
return result
IBMโ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Milliman
Role: Trainee Software Engineer
Batch eligible: 2022 and 2023 passouts
Apply: https://bit.ly/41Epzej
Role: Trainee Software Engineer
Batch eligible: 2022 and 2023 passouts
Apply: https://bit.ly/41Epzej
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Tower Research Capital
Role: ML Engineering Intern
Batch eligible: 2024 and 2025 grads
Apply: https://www.tower-research.com/open-positions/?gh_jid=5546199
Role: ML Engineering Intern
Batch eligible: 2024 and 2025 grads
Apply: https://www.tower-research.com/open-positions/?gh_jid=5546199
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Ascend Capital
Role: Intern and FTE (Full Stack)
Batch eligible: 2022 and 2023 passouts
Apply: https://bit.ly/47mRPDO
Role: Intern and FTE (Full Stack)
Batch eligible: 2022 and 2023 passouts
Apply: https://bit.ly/47mRPDO
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Batch :2023/2024/2025 passouts
Looking for interns with good understanding of Dockers, deployments, Kubernetes, open-source ecosystem, data structures, and coding (Java and Go) to work on the CVEs.
If you are passionate about cloud-native technology and want to work in an environment that offers excellent opportunities to learn from senior mentors, please share your resume with me at megha@nirmata.com.
Looking for interns with good understanding of Dockers, deployments, Kubernetes, open-source ecosystem, data structures, and coding (Java and Go) to work on the CVEs.
If you are passionate about cloud-native technology and want to work in an environment that offers excellent opportunities to learn from senior mentors, please share your resume with me at megha@nirmata.com.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : LG Ad Solutions
Batch : 2025 passout females
Role : SDE Internship
Stipend : 2.5 Lakh/month
Link : https://codelikeada.lgads.tv/
Last date to register is 31st December 2023.
Batch : 2025 passout females
Role : SDE Internship
Stipend : 2.5 Lakh/month
Link : https://codelikeada.lgads.tv/
Last date to register is 31st December 2023.
codelikeada.lgads.tv
Code Like Ada 2024 - LG Ad Solutions
A Women's Tech Hackathon
Batch :2023/2024/2025 passouts
Looking for interns with good understanding of Dockers, deployments, Kubernetes, open-source ecosystem, data structures, and coding (Java and Go) to work on the CVEs.
If you are passionate about cloud-native technology and want to work in an environment that offers excellent opportunities to learn from senior mentors, please share your resume with me at megha@nirmata.com.
Looking for interns with good understanding of Dockers, deployments, Kubernetes, open-source ecosystem, data structures, and coding (Java and Go) to work on the CVEs.
If you are passionate about cloud-native technology and want to work in an environment that offers excellent opportunities to learn from senior mentors, please share your resume with me at megha@nirmata.com.
๐1
Company Name : LG Ad Solutions
Batch : 2025 passout females
Role : SDE Internship
Stipend : 2.5 Lakh/month
Link : https://codelikeada.lgads.tv/
Last date to register is 31st December 2023.
Batch : 2025 passout females
Role : SDE Internship
Stipend : 2.5 Lakh/month
Link : https://codelikeada.lgads.tv/
Last date to register is 31st December 2023.
codelikeada.lgads.tv
Code Like Ada 2024 - LG Ad Solutions
A Women's Tech Hackathon
Google is Hiring, Software Engineer - Google One
Skills Required - Python, C/C++, Java
Salary - 25LPA - 38LPA
โ Apply Here๐ https://cuvette.tech/app/other-jobs/6589c34473abc93d3d11d21f?referralCode=8T994D
Google is Hiring, Software Training in Engineering Program
Salary - 18LPA - 32LPA
Skills Required - Java, C++, Python
โ Apply Here๐ https://cuvette.tech/app/other-jobs/6589c29b6a7446a819074d77?referralCode=8T994D
Skills Required - Python, C/C++, Java
Salary - 25LPA - 38LPA
โ Apply Here๐ https://cuvette.tech/app/other-jobs/6589c34473abc93d3d11d21f?referralCode=8T994D
Google is Hiring, Software Training in Engineering Program
Salary - 18LPA - 32LPA
Skills Required - Java, C++, Python
โ Apply Here๐ https://cuvette.tech/app/other-jobs/6589c29b6a7446a819074d77?referralCode=8T994D
Mathworks is Hiring, Software Development
Salary - 17LPA - 28LPA
Skills Required - Javascript, C/C++
โ Apply Here๐ https://cuvette.tech/app/other-jobs/6585d9c8c3c52a75fd54b66f?referralCode=8T994D
Cornerstone is Hiring, Software Engineer
Salary - 5LPA - 8LPA
Skills Required - Java, C#, Python
โ Apply Here๐ https://cuvette.tech/app/other-jobs/6589c5cd3a911acdb53cb4fa?referralCode=8T994D
Salary - 17LPA - 28LPA
Skills Required - Javascript, C/C++
โ Apply Here๐ https://cuvette.tech/app/other-jobs/6585d9c8c3c52a75fd54b66f?referralCode=8T994D
Cornerstone is Hiring, Software Engineer
Salary - 5LPA - 8LPA
Skills Required - Java, C#, Python
โ Apply Here๐ https://cuvette.tech/app/other-jobs/6589c5cd3a911acdb53cb4fa?referralCode=8T994D
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Irdeto
Role: Graduate Developer
Batch eligible: 2023 and 2024 passouts
Apply: https://careers.irdeto.com/job/New-Delhi-Graduate-Developer/1074185600/
Role: Graduate Developer
Batch eligible: 2023 and 2024 passouts
Apply: https://careers.irdeto.com/job/New-Delhi-Graduate-Developer/1074185600/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Natwest Group
Role: Software Engineer
Batch eligible: 2022 and 2023 passouts
Apply: https://jobs.natwestgroup.com/jobs/13724018-software-engineer
Role: Software Engineer
Batch eligible: 2022 and 2023 passouts
Apply: https://jobs.natwestgroup.com/jobs/13724018-software-engineer
Natwestgroup
Jobs | NatWest Group Careers
Search and apply for banking, retail and digital jobs as well as apprenticeships, graduate and internships all across NatWest Group.