Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐จJOB OPENING UPDATE๐จ
Company โ S&P Global
Role โ Data Quality Analyst
Exp. โ Fresher
Apply Here โ https://careers.spglobal.com/jobs/295211?lang=en-us&utm_source=indeed&utm_source=indeed
Company โ Shell
Role โ Lead BI Analyst โ Data Engineering
Exp. โ Fresher
Apply Here โ https://jobs.shell.com/job/bengaluru/lead-bi-analyst-data-engineering/25244/59453151280?codes=1-INDEED
Company โ Ericsson
Role โ Data Engineer
Exp. โ Fresher
Apply Here โ https://jobs.ericsson.com/careers/job/563121757378324?domain=ericsson.com&jobPipeline=Indeed
Company โ FXCM
Role โ Business Intelligence Analyst
Exp. โ Fresher
Apply Here โ https://fxcm-hr.my.salesforce-sites.com/recruit/fRecruit__ApplyJob?vacancyNo=VN982&sid=37
Company โ Cheeron Life
Role โ Data Analyst Trainee
Exp. โ 0-1 yrs
Apply Here โ https://www.naukri.com/job-listings-data-analyst-trainee-cheeron-life-surat-gujarat-0-to-1-years-121023010939?src=jobsearchDesk&sid=17043459554449609&xp=1&px=1&nignbevent_src=jobsearchDeskGNB
Company โ Zcts
Role โ Data Analyst Trainee
Exp. โ 0-1 yrs
Apply Here โ https://www.naukri.com/job-listings-data-analyst-trainee-da-trainee-zcts-coimbatore-0-to-1-years-301223903794?src=jobsearchDesk&sid=17043459554449609&xp=2&px=1&nignbevent_src=jobsearchDeskGNB
Company โ Comcast Corporation
Role โ Machine Learning Intern
Exp. โ 0-2 yrs
Apply Here โ https://jobs.comcast.com/jobs/description/regular?external_or_internal=External&job_id=R364614&source=ind_orga_at&jobPipeline=Indeed
Company โ SatSure Analytics India
Role โ Data Scientist Intern
Exp. โ Fresher
Apply Here โ https://satsure.keka.com/careers/jobdetails/26859
Company โ Add Innovations Private Limited
Role โ Deep Learning Intern
Exp. โ Fresher
Apply Here โ https://smartapply.indeed.com/beta/indeedapply/form/contact-info
ALL THE BEST๐
Company โ S&P Global
Role โ Data Quality Analyst
Exp. โ Fresher
Apply Here โ https://careers.spglobal.com/jobs/295211?lang=en-us&utm_source=indeed&utm_source=indeed
Company โ Shell
Role โ Lead BI Analyst โ Data Engineering
Exp. โ Fresher
Apply Here โ https://jobs.shell.com/job/bengaluru/lead-bi-analyst-data-engineering/25244/59453151280?codes=1-INDEED
Company โ Ericsson
Role โ Data Engineer
Exp. โ Fresher
Apply Here โ https://jobs.ericsson.com/careers/job/563121757378324?domain=ericsson.com&jobPipeline=Indeed
Company โ FXCM
Role โ Business Intelligence Analyst
Exp. โ Fresher
Apply Here โ https://fxcm-hr.my.salesforce-sites.com/recruit/fRecruit__ApplyJob?vacancyNo=VN982&sid=37
Company โ Cheeron Life
Role โ Data Analyst Trainee
Exp. โ 0-1 yrs
Apply Here โ https://www.naukri.com/job-listings-data-analyst-trainee-cheeron-life-surat-gujarat-0-to-1-years-121023010939?src=jobsearchDesk&sid=17043459554449609&xp=1&px=1&nignbevent_src=jobsearchDeskGNB
Company โ Zcts
Role โ Data Analyst Trainee
Exp. โ 0-1 yrs
Apply Here โ https://www.naukri.com/job-listings-data-analyst-trainee-da-trainee-zcts-coimbatore-0-to-1-years-301223903794?src=jobsearchDesk&sid=17043459554449609&xp=2&px=1&nignbevent_src=jobsearchDeskGNB
Company โ Comcast Corporation
Role โ Machine Learning Intern
Exp. โ 0-2 yrs
Apply Here โ https://jobs.comcast.com/jobs/description/regular?external_or_internal=External&job_id=R364614&source=ind_orga_at&jobPipeline=Indeed
Company โ SatSure Analytics India
Role โ Data Scientist Intern
Exp. โ Fresher
Apply Here โ https://satsure.keka.com/careers/jobdetails/26859
Company โ Add Innovations Private Limited
Role โ Deep Learning Intern
Exp. โ Fresher
Apply Here โ https://smartapply.indeed.com/beta/indeedapply/form/contact-info
ALL THE BEST๐
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
unordered_map<int, vector<int>> g;
void create(vector<int>& p) {
for (int i = 1; i < p.size(); i++) {
g[p[i]].push_back(i);
}
}
int dfs(int s, vector<int>& w, int oH, int uH, int a, vector<int>& v) {
if (g.find(s) == g.end()) {
if (w[s] == a) {
v[s] = oH;
return oH;
}
return 0;
}
int p = 0;
if (w[s] == a) {
p = oH;
}
for (int t : g[s]) {
p += dfs(t, w, oH, uH, a, v);
}
v[s] = p;
return p;
}
void solve(vector<int>& p, vector<int>& w, int oH, int uH) {
g.clear();
vector<int> h(w.size(), 0);
vector<int> u(w.size(), 0);
create(p);
dfs(0, w, oH, uH, 1, h);
dfs(0, w, uH, oH, -1, u);
int ans = INT_MAX;
int pen = u[0];
for (int i = 0; i < w.size(); i++) {
ans = min(ans, h[i] + (pen - u[i]));
}
cout << ans << endl;
}
Hydrate the nodes โ
#include <bits/stdc++.h>
using namespace std;
unordered_map<int, vector<int>> g;
void create(vector<int>& p) {
for (int i = 1; i < p.size(); i++) {
g[p[i]].push_back(i);
}
}
int dfs(int s, vector<int>& w, int oH, int uH, int a, vector<int>& v) {
if (g.find(s) == g.end()) {
if (w[s] == a) {
v[s] = oH;
return oH;
}
return 0;
}
int p = 0;
if (w[s] == a) {
p = oH;
}
for (int t : g[s]) {
p += dfs(t, w, oH, uH, a, v);
}
v[s] = p;
return p;
}
void solve(vector<int>& p, vector<int>& w, int oH, int uH) {
g.clear();
vector<int> h(w.size(), 0);
vector<int> u(w.size(), 0);
create(p);
dfs(0, w, oH, uH, 1, h);
dfs(0, w, uH, oH, -1, u);
int ans = INT_MAX;
int pen = u[0];
for (int i = 0; i < w.size(); i++) {
ans = min(ans, h[i] + (pen - u[i]));
}
cout << ans << endl;
}
Hydrate the nodes โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
#include <unordered_map>
class Main {
public:
static long getZeroBitSubarrays(const std::vector<int>& arr) {
int n = arr.size();
long totalSubarrayCount = static_cast<long>(n) * (n + 1) / 2;
long nonzeroSubarrayCount = 0;
std::unordered_map<int, int> windowBitCounts;
int leftIdx = 0;
for (int rightIdx = 0; rightIdx < n; rightIdx++) {
int rightElement = arr[rightIdx];
if (rightElement == 0) {
windowBitCounts.clear();
leftIdx = rightIdx + 1;
continue;
}
std::vector<int> setBitIndices = getSetBitIndices(rightElement);
for (int index : setBitIndices) {
windowBitCounts[index]++;
}
while (leftIdx < rightIdx && isBitwiseAndZero(rightIdx - leftIdx + 1, windowBitCounts)) {
for (int index : getSetBitIndices(arr[leftIdx])) {
windowBitCounts[index]--;
if (windowBitCounts[index] == 0) {
windowBitCounts.erase(index);
}
}
leftIdx++;
}
nonzeroSubarrayCount += (rightIdx - leftIdx + 1);
}
return totalSubarrayCount - nonzeroSubarrayCount;
}
private:
static std::vector<int> getSetBitIndices(int x) {
std::vector<int> setBits;
int pow2 = 1;
int exponent = 0;
while (pow2 <= x) {
if ((pow2 & x) != 0) {
setBits.push_back(exponent);
}
exponent++;
pow2 *= 2;
}
return setBits;
}
static bool isBitwiseAndZero(int windowLength, const std::unordered_map<int, int>& bitCounts) {
for (const auto& entry : bitCounts) {
if (entry.second >= windowLength) {
return false;
}
}
return true;
}
};
DE Shaw โ
C++
#include <vector>
#include <unordered_map>
class Main {
public:
static long getZeroBitSubarrays(const std::vector<int>& arr) {
int n = arr.size();
long totalSubarrayCount = static_cast<long>(n) * (n + 1) / 2;
long nonzeroSubarrayCount = 0;
std::unordered_map<int, int> windowBitCounts;
int leftIdx = 0;
for (int rightIdx = 0; rightIdx < n; rightIdx++) {
int rightElement = arr[rightIdx];
if (rightElement == 0) {
windowBitCounts.clear();
leftIdx = rightIdx + 1;
continue;
}
std::vector<int> setBitIndices = getSetBitIndices(rightElement);
for (int index : setBitIndices) {
windowBitCounts[index]++;
}
while (leftIdx < rightIdx && isBitwiseAndZero(rightIdx - leftIdx + 1, windowBitCounts)) {
for (int index : getSetBitIndices(arr[leftIdx])) {
windowBitCounts[index]--;
if (windowBitCounts[index] == 0) {
windowBitCounts.erase(index);
}
}
leftIdx++;
}
nonzeroSubarrayCount += (rightIdx - leftIdx + 1);
}
return totalSubarrayCount - nonzeroSubarrayCount;
}
private:
static std::vector<int> getSetBitIndices(int x) {
std::vector<int> setBits;
int pow2 = 1;
int exponent = 0;
while (pow2 <= x) {
if ((pow2 & x) != 0) {
setBits.push_back(exponent);
}
exponent++;
pow2 *= 2;
}
return setBits;
}
static bool isBitwiseAndZero(int windowLength, const std::unordered_map<int, int>& bitCounts) {
for (const auto& entry : bitCounts) {
if (entry.second >= windowLength) {
return false;
}
}
return true;
}
};
DE Shaw โ
C++
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <bits/stdc++.h>
using namespace std;
int solve(vector<vector<int>>& s, vector<vector<int>>& t) {
int n = s.size();
auto h = [](const vector<vector<int>>& i) -> size_t {
size_t v = 0;
for (const auto& r : i) {
for (int p : r) {
v = v * 2 + p;
}
}
return v;
};
auto is = [](const vector<vector<int>>& a, const vector<vector<int>>& b) -> bool {
return a == b;
};
queue<pair<vector<vector<int>>, int>> q;
unordered_set<size_t> v;
q.push({s, 0});
v.insert(h(s));
while (!q.empty()) {
auto [c, fl] = q.front();
q.pop();
if (is(c, t)) {
return fl;
}
for (int i = 0; i < n; ++i) {
vector<vector<int>> nr = c;
for (int j = 0; j < n; ++j) {
nr[i][j] = 1 - nr[i][j];
}
size_t rh = h(nr);
if (v.find(rh) == v.end()) {
q.push({nr, fl + 1});
v.insert(rh);
}
vector<vector<int>> nc = c;
for (int j = 0; j < n; ++j) {
nc[j][i] = 1 - nc[j][i];
}
size_t ch = h(nc);
if (v.find(ch) == v.end()) {
q.push({nc, fl + 1});
v.insert(ch);
}
}
}
return -1;
}
DE Shawโ
using namespace std;
int solve(vector<vector<int>>& s, vector<vector<int>>& t) {
int n = s.size();
auto h = [](const vector<vector<int>>& i) -> size_t {
size_t v = 0;
for (const auto& r : i) {
for (int p : r) {
v = v * 2 + p;
}
}
return v;
};
auto is = [](const vector<vector<int>>& a, const vector<vector<int>>& b) -> bool {
return a == b;
};
queue<pair<vector<vector<int>>, int>> q;
unordered_set<size_t> v;
q.push({s, 0});
v.insert(h(s));
while (!q.empty()) {
auto [c, fl] = q.front();
q.pop();
if (is(c, t)) {
return fl;
}
for (int i = 0; i < n; ++i) {
vector<vector<int>> nr = c;
for (int j = 0; j < n; ++j) {
nr[i][j] = 1 - nr[i][j];
}
size_t rh = h(nr);
if (v.find(rh) == v.end()) {
q.push({nr, fl + 1});
v.insert(rh);
}
vector<vector<int>> nc = c;
for (int j = 0; j < n; ++j) {
nc[j][i] = 1 - nc[j][i];
}
size_t ch = h(nc);
if (v.find(ch) == v.end()) {
q.push({nc, fl + 1});
v.insert(ch);
}
}
}
return -1;
}
DE Shawโ
#include<bits/stdc++.h>
using namespace std;
class hm {
unordered_map<int, int> m;
int k = 0, v = 0;
public:
void i(int x, int y) {
x -= k;
y -= v;
m[x] = y;
}
int g(int x) {
x -= k;
if (m.find(x) == m.end()) {
return -1;
}
return m[x] + v;
}
void ak(int x) {
k += x;
}
void av(int y) {
v += y;
}
};
int solve(vector<string>& qt, vector<vector<int>>& q) {
hm h;
int s = 0;
for (int i = 0; i < qt.size(); ++i) {
if (qt[i] == "insert") {
h.i(q[i][0], q[i][1]);
} else if (qt[i] == "addToKey") {
h.ak(q[i][0]);
} else if (qt[i] == "addToValue") {
h.av(q[i][0]);
} else if (qt[i] == "get") {
int v = h.g(q[i][0]);
if (v != -1) {
s += v;
}
}
}
return s;
}
using namespace std;
class hm {
unordered_map<int, int> m;
int k = 0, v = 0;
public:
void i(int x, int y) {
x -= k;
y -= v;
m[x] = y;
}
int g(int x) {
x -= k;
if (m.find(x) == m.end()) {
return -1;
}
return m[x] + v;
}
void ak(int x) {
k += x;
}
void av(int y) {
v += y;
}
};
int solve(vector<string>& qt, vector<vector<int>>& q) {
hm h;
int s = 0;
for (int i = 0; i < qt.size(); ++i) {
if (qt[i] == "insert") {
h.i(q[i][0], q[i][1]);
} else if (qt[i] == "addToKey") {
h.ak(q[i][0]);
} else if (qt[i] == "addToValue") {
h.av(q[i][0]);
} else if (qt[i] == "get") {
int v = h.g(q[i][0]);
if (v != -1) {
s += v;
}
}
}
return s;
}
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: AMD
Role: Software System Designer
Batch eligible: 2022 and 2023 passouts
Apply: https://careers.amd.com/careers-home/jobs/37625?lang=en-us
Role: Software System Designer
Batch eligible: 2022 and 2023 passouts
Apply: https://careers.amd.com/careers-home/jobs/37625?lang=en-us
Software System Designer 1 in Bangalore, India | Advanced Micro Devices, Inc
AMD | Careers Home is hiring a Software System Designer 1 in Bangalore, India. Review all of the job details and apply today!
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Apply, if youโre interested ๐
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Walmart Global Tech
Role : Software Engineer - JAVA Full Stack Developer
Batch : 2023/2022 eligible for this. ( 8 months - 1.5 years of experience required)
Mail your resume to soudamini.raut@walmart.com
Role : Software Engineer - JAVA Full Stack Developer
Batch : 2023/2022 eligible for this. ( 8 months - 1.5 years of experience required)
Mail your resume to soudamini.raut@walmart.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
GeeksforGeeks is hiring For Technical Content Writer Intern. โ๏ธ
What we are looking for:
- Available for 6 months in-office internship
- Having SEO Knowledge
- Creative Content
- Experience preferred
Location:- Noida
Join the Geeksforgeeks family and be part of something extraordinary! ๐ Fill The Forms Given Below To Apply ๐
https://lnkd.in/gZha5wWf
What we are looking for:
- Available for 6 months in-office internship
- Having SEO Knowledge
- Creative Content
- Experience preferred
Location:- Noida
Join the Geeksforgeeks family and be part of something extraordinary! ๐ Fill The Forms Given Below To Apply ๐
https://lnkd.in/gZha5wWf
lnkd.in
LinkedIn
This link will take you to a page thatโs not on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hiring Data Analyst (Fresher/ 2023-24 Batch) at Razormet Technologies
Salary: โน400,000/yr - โน500,000/yr
https://www.linkedin.com/jobs/view/3798981663
Salary: โน400,000/yr - โน500,000/yr
https://www.linkedin.com/jobs/view/3798981663
Linkedin
Razormet Technologies hiring Hiring Data Analyst (Fresher/ 2023-24 Batch)- in India | LinkedIn
Posted 7:48:02 AM. We are currently seeking a talented and motivated Data Analyst to join our growingโฆSee this and similar jobs on LinkedIn.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
ZeStream is hiring for several positions with any experience level
Apply here : https://lnkd.in/g6PTsQ6w
Apply here : https://lnkd.in/g6PTsQ6w
lnkd.in
LinkedIn
This link will take you to a page thatโs not on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
My Team at Meesho Is hiring for Business Analysts ( 0-2 YOE)
( Multiple Openings)
For referrals,
Interested Folks can apply through this google form:
https://lnkd.in/gY9vE5yb
( Multiple Openings)
For referrals,
Interested Folks can apply through this google form:
https://lnkd.in/gY9vE5yb
lnkd.in
LinkedIn
This link will take you to a page thatโs not on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐FamPay is Hiring !!
Role: Backend Engineering Intern
Apply here: https://jobs.lever.co/fampay/eae15a84-15d3-42d2-a228-5c0064de4dbe
Role: Backend Engineering Intern
Apply here: https://jobs.lever.co/fampay/eae15a84-15d3-42d2-a228-5c0064de4dbe
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Salesforce is Hiring Intern !!
Role: security Intern
Batch: 2024
Stipend: 50 to 70k
Apply here- https://salesforce.wd12.myworkdayjobs.com/en-US/External_Career_Site/job/India---Hyderabad/Intern_JR234461
Role: security Intern
Batch: 2024
Stipend: 50 to 70k
Apply here- https://salesforce.wd12.myworkdayjobs.com/en-US/External_Career_Site/job/India---Hyderabad/Intern_JR234461
Myworkdayjobs
Intern
To get the best candidate experience, please consider applying for a maximum of 3 roles within 12 months to ensure you are not duplicating efforts. About Futureforce University Recruiting Our Futureforce University Recruiting program is dedicated to attractingโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Antino Labs is Hiring !!
Role: Frontend Developer Internship
Batch: 2025,2026,2027
Stipend: 10k - 15k per month
Apply here: https://bit.ly/48ESLEv
Role: Frontend Developer Internship
Batch: 2025,2026,2027
Stipend: 10k - 15k per month
Apply here: https://bit.ly/48ESLEv
cuvette.tech
Frontend Developer Internship in Antino Labs at Gurugram, Haryana, India | Cuvette
Apply For Frontend Developer Internship | Skills required are React.js, Javascript, CSS | Stipend โน10K-15K | FULL-TIME INTERNSHIP | Location is Gurugram, Haryana, India
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Bentley Systems is Hiring !!
Role: Software Engineer II (Automation)- Fresher
Experience: 0-5 Year's
Expected CTC: 6-13 LPA
Apply here: https://bit.ly/3vsPbz6
Role: Software Engineer II (Automation)- Fresher
Experience: 0-5 Year's
Expected CTC: 6-13 LPA
Apply here: https://bit.ly/3vsPbz6
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Quest Global is inviting applications from Engineering Graduates of Batch 2023, 2022 in Industrial Domains. Last Date to Apply: 10th January 2024
Click on the below link to register: https://forms.office.com/r/zytvedkhYw
Click on the below link to register: https://forms.office.com/r/zytvedkhYw
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Tata Capital is hiring for Quality Executive.
Experience :- 0 to 2 year's
Location :- Karnataka
Apply Now - https://cutt.ly/zwHcWs3G
Experience :- 0 to 2 year's
Location :- Karnataka
Apply Now - https://cutt.ly/zwHcWs3G