Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Cognizant Off-campus PWD drive 2022
IT Programmer Analyst Trainee Freshers UG/PG Across India|| 4LPA+โฆ
Batch - 2020,2021,2022
โ Apply Now: https://app.joinsuperset.com/join/#/signup/student/jobprofiles/e444577d-20f2-4307-8b52-fbe4c8230adf
IT Programmer Analyst Trainee Freshers UG/PG Across India|| 4LPA+โฆ
Batch - 2020,2021,2022
โ Apply Now: https://app.joinsuperset.com/join/#/signup/student/jobprofiles/e444577d-20f2-4307-8b52-fbe4c8230adf
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
TO THE NEW is hiring.
Role: There are many roles, checkout below form.
Batch eligible: 2021 and 2022 passouts
Form Link: https://bit.ly/3vrBjlG
Role: There are many roles, checkout below form.
Batch eligible: 2021 and 2022 passouts
Form Link: https://bit.ly/3vrBjlG
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Dear All,
We have openings for B. Tech / M. Tech and MCA candidates on the following profile at upGrad:
*Position* - Technical Trainer & Mentor
*Skill Set* - JAVA, Data Structures, HTML, CSS & JavaScript,React-JS, MVC, SpringBoot, Rest APIs, JAVA, Data Structures, HTML & CSS, Basics of JavaScript
*Location* - Punjab
*JD* - https://bit.ly/3PYrkvZ
Interested Candidate please contact on details mentioned below or send your resume on supply@upgrad.com
Mr. Shamneesh Sharma - Program Manager - upGrad - +91 86793 34000 - shamneesh.sharma@upgrad.com
Mr. Chetan Sharma - Program Manager - upGrad - +91 7018443448 - chetan2.sharma@upgrad.com
We have openings for B. Tech / M. Tech and MCA candidates on the following profile at upGrad:
*Position* - Technical Trainer & Mentor
*Skill Set* - JAVA, Data Structures, HTML, CSS & JavaScript,React-JS, MVC, SpringBoot, Rest APIs, JAVA, Data Structures, HTML & CSS, Basics of JavaScript
*Location* - Punjab
*JD* - https://bit.ly/3PYrkvZ
Interested Candidate please contact on details mentioned below or send your resume on supply@upgrad.com
Mr. Shamneesh Sharma - Program Manager - upGrad - +91 86793 34000 - shamneesh.sharma@upgrad.com
Mr. Chetan Sharma - Program Manager - upGrad - +91 7018443448 - chetan2.sharma@upgrad.com
Google Docs
Job Description - Mentor & Technical Trainer.docx
Mentor and Technical Trainer โ upGrad Campus Punjab/NCR/Rajasthan โ Full Time About Us upGrad Campus is a new college focused subsidiary under upGrad based out of Bangalore. The flagship product of upGrad Campus is providing a complete platform with higherโฆ
๐1
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซhttps://leetcode.com/problems/word-subsets/description/ยป
// Word Subset
class Solution:
def wordSubsets(self, words1: List[str], words2: List[str]) -> List[str]:
ans = set(words1)
letters = {}
for i in words2:
for j in i:
count = i.count(j)
if j not in letters or count > letters[j]:
letters[j] = count
for i in words1:
for j in letters:
if i.count(j) < letters[j]:
ans.remove(i)
break
return list(ans)
Python 3โ
class Solution:
def wordSubsets(self, words1: List[str], words2: List[str]) -> List[str]:
ans = set(words1)
letters = {}
for i in words2:
for j in i:
count = i.count(j)
if j not in letters or count > letters[j]:
letters[j] = count
for i in words1:
for j in letters:
if i.count(j) < letters[j]:
ans.remove(i)
break
return list(ans)
Python 3โ
๐2
โ๏ธZOHO OffCampus Driveโ๏ธ
๐ Batch - 2015 & 2022
careers.zohocorp.com/forms/fcc89b5ebd373d598e0224d10f2199d1113615d862f7ebeba222bfb399f7918b
๐ Batch - 2015 & 2022
careers.zohocorp.com/forms/fcc89b5ebd373d598e0224d10f2199d1113615d862f7ebeba222bfb399f7918b
๐3
who have tomorrow IBM Exam guys let me know ?
longest pallindromic subsequence Infosys
vector<int> solve(string s)
{
int l = S.length();
vector<int> lhs(l,0);
vector<int> rhs(l,0);
if(l<1)
return 0;
if(S[0] == '1')
lhs[0] = 1;
if(S[l-1] == '1')
rhs[l-1] = 1;
for(int i=1;i<l;i++)
{
if(S[i] == '1')
lhs[i] = lhs[i-1] + 1;
}
for(int i=l-2;i>=0;i--)
{
if(S[i] == '1')
rhs[i] = rhs[i+1] + 1;
}
int max_ = 0;
for(int i=K-1;i<l;i++)
{
int j = i - (K-1);
int ll = 0,rr = 0;
if(j-1 < 0)
ll = 0;
else
ll = lhs[j-1];
if(i+1>= l)
rr = 0;
else
rr = rhs[i+1];
if(max_ < (ll+rr+K))
max_ = (ll+rr+K);
}
return max_;
}
Vikings solution
{
int l = S.length();
vector<int> lhs(l,0);
vector<int> rhs(l,0);
if(l<1)
return 0;
if(S[0] == '1')
lhs[0] = 1;
if(S[l-1] == '1')
rhs[l-1] = 1;
for(int i=1;i<l;i++)
{
if(S[i] == '1')
lhs[i] = lhs[i-1] + 1;
}
for(int i=l-2;i>=0;i--)
{
if(S[i] == '1')
rhs[i] = rhs[i+1] + 1;
}
int max_ = 0;
for(int i=K-1;i<l;i++)
{
int j = i - (K-1);
int ll = 0,rr = 0;
if(j-1 < 0)
ll = 0;
else
ll = lhs[j-1];
if(i+1>= l)
rr = 0;
else
rr = rhs[i+1];
if(max_ < (ll+rr+K))
max_ = (ll+rr+K);
}
return max_;
}
Vikings solution
๐1
CalculatSumOfPrime
IBM โ
IBM โ