Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Societe general Hiring !!
Role - Software Engineer
Exp - fresher
Link - https://careers.societegenerale.com/en/job-offers/software-engineer-yg-24000N9Q-en?src=JB-14381
Role - Software Engineer
Exp - fresher
Link - https://careers.societegenerale.com/en/job-offers/software-engineer-yg-24000N9Q-en?src=JB-14381
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Join the Hackathon if you haven't already : https://devfolio.co/google-genaiexchange?ref=d12f79c0bb
devfolio.co
Gen AI Exchange by Google
Build AI-powered solutions to drive real-world impact in India. Express your interest in the Gen AI Exchange by Google now!
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include<bits/stdc++.h>
using namespace std;
int find(vector<vector<int>>&mat)
{
int n=mat.size();
int m=mat[0].size();
vector<pair<int,int>>d={{-1,0},{1,0},{0,-1},{0,1}};
queue<pair<int,int>>q;
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
if(mat[i][j]==2)
{
q.push({i,j});
mat[i][j]=1;
}
}
}
int level=0;
while(!q.empty())
{
int size=q.size();
for(int i=0;i<size;i++)
{
auto temp=q.front();
q.pop();
int x=temp.first;
int y=temp.second;
if(x==0||y==0||x==n-1||y==m-1)
{
return level;
}
for(auto it:d)
{
int nx=x+it.first;
int ny=y+it.second;
if(nx>=0&&ny>=0&&nx<n&&ny<m&&mat[nx][ny]==0)
{
mat[nx][ny]=1;
q.push({nx,ny});
}
}
}
level++;
}
return -1;
}
int main()
{
int n,m;
cin>>n>>m;
vector<vector<int>>mat(n,vector<int>(m));
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
cin>>mat[i][j];
}
}
cout<<find(mat)<<endl;
}
Escape from Grid โ
#include <iostream>
#include <unordered_map>
#include <string>
using namespace std;
int main() {
int n;
cin >> n;
string str;
cin >> str;
unordered_map<char, int> v;
v['a'] = 0;
v['e'] = 0;
v['i'] = 0;
v['o'] = 0;
v['u'] = 0;
for (char c : str) {
if (v.find(c) != v.end()) {
v[c]++;
}
}
char m = 'a';
int e = v['a'];
for (auto &pair : v) {
if (pair.second > e) {
m = pair.first;
e = pair.second;
}
}
cout << m << endl;
return 0;
}
Most frequent vowel โ
HSBC
#include <iostream>
#include <string>
using namespace std;
const int MOD = 1000000007;
int main() {
int n;
cin >> n;
string s;
cin >> s;
if (n == 1) {
cout << 2 << endl;
return 0;
}
int a = 0;
for (int i = 0; i < n; i++) {
for (int j = i; j < n; j++) {
string r = s.substr(0, i) + s.substr(j + 1);
if (r.empty() || r.find_first_not_of(r[0]) == string::npos)
{
a++;
}
}
}
cout << a % MOD << endl;
return 0;
}
Powerful strings โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Groww
Role : Business Analyst/Analyst/Data Analyt
Batch : 2022/2023/2024/2025
Role : Internships as well as Full time roles.
Link : https://docs.google.com/forms/d/e/1FAIpQLScLjb7jKMVhxiFhfM9lhwz1D3pakQZeCH2EFVUSJCFcsrGMrA/viewform?pli=1
Role : Business Analyst/Analyst/Data Analyt
Batch : 2022/2023/2024/2025
Role : Internships as well as Full time roles.
Link : https://docs.google.com/forms/d/e/1FAIpQLScLjb7jKMVhxiFhfM9lhwz1D3pakQZeCH2EFVUSJCFcsrGMrA/viewform?pli=1
import java.util.Scanner;
public class KeypadStrokes {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
String str = sc.next();
int[] times = new int[26];
times['a' - 'a'] = 1; times['b' - 'a'] = 2; times['c' - 'a'] = 3;
times['d' - 'a'] = 1; times['e' - 'a'] = 2; times['f' - 'a'] = 3;
times['g' - 'a'] = 1; times['h' - 'a'] = 2; times['i' - 'a'] = 3;
times['j' - 'a'] = 1; times['k' - 'a'] = 2; times['l' - 'a'] = 3;
times['m' - 'a'] = 1; times['n' - 'a'] = 2; times['o' - 'a'] = 3;
times['p' - 'a'] = 1; times['q' - 'a'] = 2; times['r' - 'a'] = 3; times['s' - 'a'] = 4;
times['t' - 'a'] = 1; times['u' - 'a'] = 2; times['v' - 'a'] = 3;
times['w' - 'a'] = 1; times['x' - 'a'] = 2; times['y' - 'a'] = 3; times['z' - 'a'] = 4;
int totalTime = 0;
for (int i = 0; i < n; i++) {
totalTime += times[str.charAt(i) - 'a'];
if (i > 0 && (getButton(str.charAt(i)) == getButton(str.charAt(i - 1)))) {
totalTime++;
}
}
System.out.println(totalTime);
}
private static int getButton(char ch) {
if (ch >= 'a' && ch <= 'c') return 2;
if (ch >= 'd' && ch <= 'f') return 3;
if (ch >= 'g' && ch <= 'i') return 4;
if (ch >= 'j' && ch <= 'l') return 5;
if (ch >= 'm' && ch <= 'o') return 6;
if (ch >= 'p' && ch <= 's') return 7;
if (ch >= 't' && ch <= 'v') return 8;
if (ch >= 'w' && ch <= 'z') return 9;
return -1;
}
}
Keypad strokes
HSBCโ
public class KeypadStrokes {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
String str = sc.next();
int[] times = new int[26];
times['a' - 'a'] = 1; times['b' - 'a'] = 2; times['c' - 'a'] = 3;
times['d' - 'a'] = 1; times['e' - 'a'] = 2; times['f' - 'a'] = 3;
times['g' - 'a'] = 1; times['h' - 'a'] = 2; times['i' - 'a'] = 3;
times['j' - 'a'] = 1; times['k' - 'a'] = 2; times['l' - 'a'] = 3;
times['m' - 'a'] = 1; times['n' - 'a'] = 2; times['o' - 'a'] = 3;
times['p' - 'a'] = 1; times['q' - 'a'] = 2; times['r' - 'a'] = 3; times['s' - 'a'] = 4;
times['t' - 'a'] = 1; times['u' - 'a'] = 2; times['v' - 'a'] = 3;
times['w' - 'a'] = 1; times['x' - 'a'] = 2; times['y' - 'a'] = 3; times['z' - 'a'] = 4;
int totalTime = 0;
for (int i = 0; i < n; i++) {
totalTime += times[str.charAt(i) - 'a'];
if (i > 0 && (getButton(str.charAt(i)) == getButton(str.charAt(i - 1)))) {
totalTime++;
}
}
System.out.println(totalTime);
}
private static int getButton(char ch) {
if (ch >= 'a' && ch <= 'c') return 2;
if (ch >= 'd' && ch <= 'f') return 3;
if (ch >= 'g' && ch <= 'i') return 4;
if (ch >= 'j' && ch <= 'l') return 5;
if (ch >= 'm' && ch <= 'o') return 6;
if (ch >= 'p' && ch <= 's') return 7;
if (ch >= 't' && ch <= 'v') return 8;
if (ch >= 'w' && ch <= 'z') return 9;
return -1;
}
}
Keypad strokes
HSBCโ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Nandhini Subramani on LinkedIn: #servicedesk #punejobs #punehiring #thiruvananthapuramhiringโฆ | 62 comments
Hi connections,
HCL TECH HIRING !!!
Skill: service desk
Experience:0.6 month to 5 years
Location : pune & Thiruvananthapuram
If interested drop cv toโฆ | 62 comments on LinkedIn
HCL TECH HIRING !!!
Skill: service desk
Experience:0.6 month to 5 years
Location : pune & Thiruvananthapuram
If interested drop cv toโฆ | 62 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Preeti Bhatt on LinkedIn: #walkindrive #hiring #recruitment #jobopportunity #joinus
๐ Exciting Walk-In Drive Alert! ๐
Are you passionate about Recruitment? Do you have what it takes to join our dynamic team at MyRCloud? We are thrilled toโฆ
Are you passionate about Recruitment? Do you have what it takes to join our dynamic team at MyRCloud? We are thrilled toโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Google Docs
Product Design at Zepto
We're expanding our team and are on the lookout for talented Product Designers across all levels. Whether you're just starting your career or are a seasoned pro, we are hiring for Product Designers across all levels.
At Zepto, you'll work on innovative projectsโฆ
At Zepto, you'll work on innovative projectsโฆ
#include <bits/stdc++.h>
using namespace std;
#define int long long
using namespace std;
int solution(vector<int> &A) {
int n = A.size();
int m = 0;
int i = 0;
while (i < n - 1) {
if (A[i] >= A[i + 1]) {
int j = i + 1;
while (j < n && A[j] <= A[j - 1]) {
j++;
}
m++;
i = j;
} else {
i++;
}
}
return m;
}
Eagleview โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Qualys
Role: Software Engineer
Batch eligible: 2023 and 2024 grads
Apply: https://qualys.wd5.myworkdayjobs.com/Careers/job/Pune/Software-Engineer_R0002380
Role: Software Engineer
Batch eligible: 2023 and 2024 grads
Apply: https://qualys.wd5.myworkdayjobs.com/Careers/job/Pune/Software-Engineer_R0002380
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Qest is hiring for Generative AI Engineer (Intern)
Apply here: https://www.linkedin.com/jobs/view/4036915985/
Apply here: https://www.linkedin.com/jobs/view/4036915985/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Visa is hiring for Software Engineer
Experience: 0.6 - 2 years
Expected Salary: 15-25 LPA
Apply here: https://www.linkedin.com/jobs/view/4038918098/?alternateChannel=search
๐Decisions is hiring for Junior Software Developer
Experience: 0 - 1 years
Expected Salary: 4-8 LPA
Apply here: https://decisions.com/jobs-listing/?gh_jid=4501085007&gh_src=8f2d3fd87us
๐Capco is hiring for Junior Data Analyst
Experience: 0 - 2 years
Expected Salary: 6-12 LPA
Apply here: https://boards.greenhouse.io/capco/jobs/6247469
๐Qualys, Inc is hiring for Software Engineer
Experience: 0 - 2 years
Expected Salary: 7-14 LPA
Apply here: https://qualys.wd5.myworkdayjobs.com/Careers/job/Pune/Software-Engineer_R0002380?source=LinkedIn
Experience: 0.6 - 2 years
Expected Salary: 15-25 LPA
Apply here: https://www.linkedin.com/jobs/view/4038918098/?alternateChannel=search
๐Decisions is hiring for Junior Software Developer
Experience: 0 - 1 years
Expected Salary: 4-8 LPA
Apply here: https://decisions.com/jobs-listing/?gh_jid=4501085007&gh_src=8f2d3fd87us
๐Capco is hiring for Junior Data Analyst
Experience: 0 - 2 years
Expected Salary: 6-12 LPA
Apply here: https://boards.greenhouse.io/capco/jobs/6247469
๐Qualys, Inc is hiring for Software Engineer
Experience: 0 - 2 years
Expected Salary: 7-14 LPA
Apply here: https://qualys.wd5.myworkdayjobs.com/Careers/job/Pune/Software-Engineer_R0002380?source=LinkedIn
Decisions
Jobs Listing - Decisions
Discover job opportunities at Decisions, a top software company revolutionizing business automation with our no-code, Join us!
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Kreativstorm Hiring
Software Engineer Intern - Fresher
Location: Work from home/ Remote
Experience: Fresher
๐ปApply: https://kreativstorm.zohorecruit.eu/jobs/Careers/69764000070201284/Software-Engineer---Intern-Remote-Internship---IT
Software Engineer Intern - Fresher
Location: Work from home/ Remote
Experience: Fresher
๐ปApply: https://kreativstorm.zohorecruit.eu/jobs/Careers/69764000070201284/Software-Engineer---Intern-Remote-Internship---IT
Kreativstorm
Kreativstorm - Software Engineer - Intern (Remote Internship - IT) in Osaka
Kreativstorm Embark on an exciting journey into software engineering with an exclusive internship opportunity offered by Kreativstorm, a dynamic and i
def largest_x(matrix):
R, C = len(matrix), len(matrix[0])
lu = [[0]*C for _ in range(R)]
ru = [[0]*C for _ in range(R)]
ld = [[0]*C for _ in range(R)]
rd = [[0]*C for _ in range(R)]
for r in range(R):
for c in range(C):
if matrix[r][c]:
lu[r][c] = 1 + (lu[r-1][c-1] if r and c else 0)
ru[r][c] = 1 + (ru[r-1][c+1] if r and c < C-1 else 0)
for r in range(R-1, -1, -1):
for c in range(C):
if matrix[r][c]:
ld[r][c] = 1 + (ld[r+1][c-1] if r < R-1 and c else 0)
rd[r][c] = 1 + (rd[r+1][c+1] if r < R-1 and c < C-1 else 0)
max_size, res = 0, [0,0]
for r in range(R):
for c in range(C):
if matrix[r][c]:
s = min(lu[r][c], ru[r][c], ld[r][c], rd[r][c])
if s > max_size or (s == max_size and (r < res[0] or (r == res[0] and c < res[1]))):
max_size, res = s, [r, c]
return res