Greetings from Teamware solutions...!!
We are Hiring freshers for the role of *Azure DevOps Engineer*
Experience : 0-6 Months
Location : Bangalore
Mode of interview- F2F
Notice period: Immediate Joiners
Skills Required :
The ideal candidate should have knowledge of Windows Operating System Fundamentals and Networking Fundamentals and who is fine to learn and work on azure devops.
Excellent Communications is must.
Send resume to Lakshmi.n@twsol.com
We are Hiring freshers for the role of *Azure DevOps Engineer*
Experience : 0-6 Months
Location : Bangalore
Mode of interview- F2F
Notice period: Immediate Joiners
Skills Required :
The ideal candidate should have knowledge of Windows Operating System Fundamentals and Networking Fundamentals and who is fine to learn and work on azure devops.
Excellent Communications is must.
Send resume to Lakshmi.n@twsol.com
π1
class Solution {
public:
void bfs(vector<vector<int>>&vis,vector<vector<char>>&grid,int i,int j,int n,int m)
{
vis[i][j]=1;
queue<pair<int,int>>q;
q.push({i,j});
while(!q.empty())
{
int row=q.front().first;
int col=q.front().second;
q.pop();
int delrow[4]={1,0,-1,0};
int delcol[4]={0,1,0,-1};
for(int k=0;k<=3;k++){
int nrow=row+delrow[k];
int ncol=col+delcol[k];
if(nrow>=0 and nrow<n and ncol>=0 and ncol<m and grid[nrow][ncol]=='1' and !vis[nrow][ncol])
{
vis[nrow][ncol]=1;
q.push({nrow,ncol});
}
}
}
}
int numIslands(vector<vector<char>>& grid) {
int n=grid.size();
int m=grid[0].size();
vector<vector<int>>vis(n,vector<int>(m,0));
int cnt=0;
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
if(!vis[i][j] and grid[i][j]=='1')
{
cnt++;
bfs(vis,grid,i,j,n,m);
}
}
}
return cnt;
}
};
Zeta β
public:
void bfs(vector<vector<int>>&vis,vector<vector<char>>&grid,int i,int j,int n,int m)
{
vis[i][j]=1;
queue<pair<int,int>>q;
q.push({i,j});
while(!q.empty())
{
int row=q.front().first;
int col=q.front().second;
q.pop();
int delrow[4]={1,0,-1,0};
int delcol[4]={0,1,0,-1};
for(int k=0;k<=3;k++){
int nrow=row+delrow[k];
int ncol=col+delcol[k];
if(nrow>=0 and nrow<n and ncol>=0 and ncol<m and grid[nrow][ncol]=='1' and !vis[nrow][ncol])
{
vis[nrow][ncol]=1;
q.push({nrow,ncol});
}
}
}
}
int numIslands(vector<vector<char>>& grid) {
int n=grid.size();
int m=grid[0].size();
vector<vector<int>>vis(n,vector<int>(m,0));
int cnt=0;
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
if(!vis[i][j] and grid[i][j]=='1')
{
cnt++;
bfs(vis,grid,i,j,n,m);
}
}
}
return cnt;
}
};
Zeta β
π2
AAPNA HIRING FOR LOW CODE / NO CODE DEVELOPER ROLE 2 - 3 YEARS EXPERIENCE β
β
https://www.instagram.com/royalvistatechsolutions?igsh=MWhtdXJodGEzcmVjaw==
https://www.instagram.com/royalvistatechsolutions?igsh=MWhtdXJodGEzcmVjaw==
Company Name: IBM
Post Name; SAP Consultant
Salary; up to βΉ8 LPA*
Experience; Entry Level
Job Location: Gurgaon
Apply Now:
https://careers.ibm.com/job/19272887/sap-consultant-sap-hana-finance-gurgaon-in/?codes=WEB_SEARCH_NA
Share this opportunity with your friends.π€
Post Name; SAP Consultant
Salary; up to βΉ8 LPA*
Experience; Entry Level
Job Location: Gurgaon
Apply Now:
https://careers.ibm.com/job/19272887/sap-consultant-sap-hana-finance-gurgaon-in/?codes=WEB_SEARCH_NA
Share this opportunity with your friends.π€
CODE WITH VIRUS pinned Β«Company Name: IBM Post Name; SAP Consultant Salary; up to βΉ8 LPA* Experience; Entry Level Job Location: Gurgaon Apply Now: https://careers.ibm.com/job/19272887/sap-consultant-sap-hana-finance-gurgaon-in/?codes=WEB_SEARCH_NA Share this opportunityβ¦Β»
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
vector<vector<int>> freq(n, vector<int> (26, 0));
string s;
for(int i = 0; i < n; i++) {
string s;
cin >> s;
for(auto &ch : s)
freq[i][ch - 'a']++;
}
long long ans = 0;
for(int i = 0; i < 26; i++) {
int minValue = INT_MAX;
for(int j = 0; j < n; j++)
minValue = min(minValue, freq[j][i]);
ans += minValue;
}
cout << ans << endl;
}
Service Now β
using namespace std;
int main() {
int n;
cin >> n;
vector<vector<int>> freq(n, vector<int> (26, 0));
string s;
for(int i = 0; i < n; i++) {
string s;
cin >> s;
for(auto &ch : s)
freq[i][ch - 'a']++;
}
long long ans = 0;
for(int i = 0; i < 26; i++) {
int minValue = INT_MAX;
for(int j = 0; j < n; j++)
minValue = min(minValue, freq[j][i]);
ans += minValue;
}
cout << ans << endl;
}
Service Now β
Hello Everyone,
We CelebAI Technologies are hiring for Associate Software Engineer Position(Trainee+ FTE).
We are conducting walk in drive in the office for 2023, 2022 batch pass outs. Those who are in Delhi NCR or can come to Delhi for the process, please share your cv at π careers@celeb-ai.com
Note: Only Delhi NCR students and 2022, 2023 batch should apply.
We CelebAI Technologies are hiring for Associate Software Engineer Position(Trainee+ FTE).
We are conducting walk in drive in the office for 2023, 2022 batch pass outs. Those who are in Delhi NCR or can come to Delhi for the process, please share your cv at π careers@celeb-ai.com
Note: Only Delhi NCR students and 2022, 2023 batch should apply.
π1
EmbedUR systems
Fresher Drive B.E / B.Tech 2024 Batch
CTC: Up to 8 Lakhs
@code_with_virus
https://forms.office.com/pages/responsepage.aspx?id=Z518PquvlEaU4a8oEp7WX2S9iqSidoZKtf3XM9ulYABUMzMxUVIzTk9RWTJUT0VVVTVCUlZLTkc4Ny4u
Fresher Drive B.E / B.Tech 2024 Batch
CTC: Up to 8 Lakhs
@code_with_virus
https://forms.office.com/pages/responsepage.aspx?id=Z518PquvlEaU4a8oEp7WX2S9iqSidoZKtf3XM9ulYABUMzMxUVIzTk9RWTJUT0VVVTVCUlZLTkc4Ny4u
Office
Please fill out this form
CODE WITH VIRUS pinned Β«EmbedUR systems Fresher Drive B.E / B.Tech 2024 Batch CTC: Up to 8 Lakhs @code_with_virus https://forms.office.com/pages/responsepage.aspx?id=Z518PquvlEaU4a8oEp7WX2S9iqSidoZKtf3XM9ulYABUMzMxUVIzTk9RWTJUT0VVVTVCUlZLTkc4Ny4uΒ»
Wipro Ltd
Wipro Ltd invites you to Superset to apply
for its Elite Exclusive Hiring 2024 position.
Complete the registration and apply!
Deadline to Apply: Sep 30, 2024 11:59 PM
https://app.joinsuperset.com/join/#/signup/student?jp=fd4be287-c8d5-4ace-ac26-6875ca63bc34
Wipro Ltd invites you to Superset to apply
for its Elite Exclusive Hiring 2024 position.
Complete the registration and apply!
Deadline to Apply: Sep 30, 2024 11:59 PM
https://app.joinsuperset.com/join/#/signup/student?jp=fd4be287-c8d5-4ace-ac26-6875ca63bc34
π1