Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
BlackBerry hiring Interns for multiple roles in Bengaluru.
๐ Interested students (especially 2023 & 2024 graduates) please apply through this link ๐ https://lnkd.in/g2gk59Wm
- Paid internship
- Duration: 6-9 months
- Roles:
*Cloud backend engineer
*Associate cloud engineer
*Software development engineer in Test (SDET)
๐ Interested students (especially 2023 & 2024 graduates) please apply through this link ๐ https://lnkd.in/g2gk59Wm
- Paid internship
- Duration: 6-9 months
- Roles:
*Cloud backend engineer
*Associate cloud engineer
*Software development engineer in Test (SDET)
lnkd.in
LinkedIn
This link will take you to a page thatโs not on LinkedIn
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
using namespace std;
struct T {
int v;
T* l;
T* r;
T(int val) : v(val), l(nullptr), r(nullptr) {}
};
class B {
public:
T* r;
B() : r(nullptr) {}
void i(int val) {
r = iR(r, val);
}
T* iR(T* r, int val) {
if (r == nullptr) {
r = new T(val);
return r;
}
if (val < r->v) {
r->l = iR(r->l, val);
} else if (val > r->v) {
r->r = iR(r->r, val);
}
return r;
}
};
class BM {
public:
T* m(T* n) {
if (n == nullptr) {
return n;
}
T* l = m(n->l);
T* ri = m(n->r);
n->l = ri;
n->r = l;
return n;
}
};
class BT {
public:
void p(T* n) {
if (n == nullptr) {
return;
}
cout << n->v << " ";
p(n->l);
p(n->r);
}
};
int main() {
int n;
cin >> n;
vector<int> v(n);
for (int i = 0; i < n; ++i) {
cin >> v[i];
}
B t;
for (int val : v) {
t.i(val);
}
BM m;
T* mr = m.m(t.r);
BT tr;
tr.p(mr);
return 0;
}
// mirror tree c++
#include <vector>
using namespace std;
struct T {
int v;
T* l;
T* r;
T(int val) : v(val), l(nullptr), r(nullptr) {}
};
class B {
public:
T* r;
B() : r(nullptr) {}
void i(int val) {
r = iR(r, val);
}
T* iR(T* r, int val) {
if (r == nullptr) {
r = new T(val);
return r;
}
if (val < r->v) {
r->l = iR(r->l, val);
} else if (val > r->v) {
r->r = iR(r->r, val);
}
return r;
}
};
class BM {
public:
T* m(T* n) {
if (n == nullptr) {
return n;
}
T* l = m(n->l);
T* ri = m(n->r);
n->l = ri;
n->r = l;
return n;
}
};
class BT {
public:
void p(T* n) {
if (n == nullptr) {
return;
}
cout << n->v << " ";
p(n->l);
p(n->r);
}
};
int main() {
int n;
cin >> n;
vector<int> v(n);
for (int i = 0; i < n; ++i) {
cin >> v[i];
}
B t;
for (int val : v) {
t.i(val);
}
BM m;
T* mr = m.m(t.r);
BT tr;
tr.p(mr);
return 0;
}
// mirror tree c++
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
RI5E is hiring for Software Engineer
Expected Salary: 8-20 LPA
Apply here:
https://linkedin.com/jobs/view/3960564753/?alternateChannel=search
Expected Salary: 8-20 LPA
Apply here:
https://linkedin.com/jobs/view/3960564753/?alternateChannel=search
Linkedin
RI5E hiring Software Engineer (Germany Based, Relocation Required) 45k Euro (Freshers only form IIT/NIT/BITS) in India | LinkedIn
Posted 5:41:37 AM. Company DescriptionRi5e is a Berlin-based company that empowers early-stage success through a driveโฆ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)
Drivers4Me is hiring for Full Stack Developer (0-2 years)
Salary: 3-5 LPA
Apply here:
https://linkedin.com/jobs/view/3961587414/?alternateChannel=search
Salary: 3-5 LPA
Apply here:
https://linkedin.com/jobs/view/3961587414/?alternateChannel=search
Linkedin
Drivers4Me hiring Full Stack Developer in Kolkata metropolitan area, West Bengal, India | LinkedIn
Posted 7:13:44 PM. Job Description: Software Development Engineer 1 (SDE 1)Position: Software Development Engineer 1โฆ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)
Bosch Off Campus Drive 2024:
Job Role: Freshers Internship
Qualification M.E/M.Tech/Dual Degree
Batch: 2025
https://forms.microsoft.com/pages/responsepage.aspx?id=GR7lCsgHS067bWSO5YQQ9GQERPlJUAdElvph2KHejtZUOFcyUlM3VzE1STVNR0tXR0ZaUlpLRUo3SS4u
Job Role: Freshers Internship
Qualification M.E/M.Tech/Dual Degree
Batch: 2025
https://forms.microsoft.com/pages/responsepage.aspx?id=GR7lCsgHS067bWSO5YQQ9GQERPlJUAdElvph2KHejtZUOFcyUlM3VzE1STVNR0tXR0ZaUlpLRUo3SS4u
void dfs(int node, int parent, const vector<vector<pair<int, int>>>& graph,
const vector<int>& minActivity, vector<long long>& activity, vector<bool>& vulnerable) {
activity[node] = 0; // initial activity is 0
for (const auto& edge : graph[node]) {
int next_node = edge.first;
int weight = edge.second;
if (next_node != parent) {
dfs(next_node, node, graph, minActivity, activity, vulnerable);
activity[node] += activity[next_node] + weight;
}
}
if (activity[node] > minActivity[node]) {
vulnerable[node] = true;
}
}
int getMinServers(int server_nodes, int server_edges, const vector<int>& server_from,
const vector<int>& server_to, const vector<int>& server_weight,
int minActivity_count, const vector<int>& minActivity) {
vector<vector<pair<int, int>>> graph(server_nodes + 1);
for (int i = 0; i < server_edges; ++i) {
graph[server_from[i]].emplace_back(server_to[i], server_weight[i]);
graph[server_to[i]].emplace_back(server_from[i], -server_weight[i]);
}
vector<long long> activity(server_nodes + 1, 0);
vector<bool> vulnerable(server_nodes + 1, false);
dfs(1, -1, graph, minActivity, activity, vulnerable);
int vulnerableCount = count(vulnerable.begin(), vulnerable.end(), true);
return vulnerableCount;
}
Cisco โ
const vector<int>& minActivity, vector<long long>& activity, vector<bool>& vulnerable) {
activity[node] = 0; // initial activity is 0
for (const auto& edge : graph[node]) {
int next_node = edge.first;
int weight = edge.second;
if (next_node != parent) {
dfs(next_node, node, graph, minActivity, activity, vulnerable);
activity[node] += activity[next_node] + weight;
}
}
if (activity[node] > minActivity[node]) {
vulnerable[node] = true;
}
}
int getMinServers(int server_nodes, int server_edges, const vector<int>& server_from,
const vector<int>& server_to, const vector<int>& server_weight,
int minActivity_count, const vector<int>& minActivity) {
vector<vector<pair<int, int>>> graph(server_nodes + 1);
for (int i = 0; i < server_edges; ++i) {
graph[server_from[i]].emplace_back(server_to[i], server_weight[i]);
graph[server_to[i]].emplace_back(server_from[i], -server_weight[i]);
}
vector<long long> activity(server_nodes + 1, 0);
vector<bool> vulnerable(server_nodes + 1, false);
dfs(1, -1, graph, minActivity, activity, vulnerable);
int vulnerableCount = count(vulnerable.begin(), vulnerable.end(), true);
return vulnerableCount;
}
Cisco โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Goldman Sachs hiring for 2025 grads
https://www.goldmansachs.com/careers/students/programs/india/new-analyst-program.html
For 2026 grads
https://www.goldmansachs.com/careers/students/programs/india/summer-analyst-program.html
https://www.goldmansachs.com/careers/students/programs/india/new-analyst-program.html
For 2026 grads
https://www.goldmansachs.com/careers/students/programs/india/summer-analyst-program.html
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
WorkIndia is hiring for Software Development Intern
Expected Stipend: 3-6 LPA
Apply here: linkedin.com/jobs/view/3959633008/?alternateChannel=search
Expected Stipend: 3-6 LPA
Apply here: linkedin.com/jobs/view/3959633008/?alternateChannel=search
Linkedin
WorkIndia hiring Software Development Intern in Bengaluru, Karnataka, India | LinkedIn
Posted 7:08:48 AM. About WorkIndia WorkIndia started with One & Only One Purpose -- To provide jobs to theโฆ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)
Netmeds.com is hiring for Full Stack Engineer
Expected Salary: 6-12 LPA
Apply here:
https://linkedin.com/jobs/view/3961146520/?alternateChannel=search
Expected Salary: 6-12 LPA
Apply here:
https://linkedin.com/jobs/view/3961146520/?alternateChannel=search
Linkedin
Netmeds.com hiring Full Stack Engineer in Chennai, Tamil Nadu, India | LinkedIn
Posted 8:25:21 AM. ๐ Join the Netmeds Tech Team in Chennai: Full-Time & Internship Opportunities! ๐Are you aโฆ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)
Stock unlock hiring founding engineer
For 2021 2022 2023 grads
https://docs.google.com/forms/d/e/1FAIpQLSf90E8G8xX0u01vzMwGjjhUlQsGaK4TF_fRl2gU0eouahP9og/viewform
JD : https://www.linkedin.com/posts/karan-thakkar-0301a49b_were-hiring-founding-engineers-were-activity-7213585671062495234-XggW?utm_source=share&utm_medium=member_android
For 2021 2022 2023 grads
https://docs.google.com/forms/d/e/1FAIpQLSf90E8G8xX0u01vzMwGjjhUlQsGaK4TF_fRl2gU0eouahP9og/viewform
JD : https://www.linkedin.com/posts/karan-thakkar-0301a49b_were-hiring-founding-engineers-were-activity-7213585671062495234-XggW?utm_source=share&utm_medium=member_android
Google Docs
Founding Engineer @ Stock Unlock (Part 2 - Archived)
Please fill in your details for Founding Engineer role at Stock Unlock.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Batch : 2023/2024
referral mail : raju.maharanak@infor.com
https://infor.avature.net/IndiaETPEng2024
Last Date : 10 July 2024
referral mail : raju.maharanak@infor.com
https://infor.avature.net/IndiaETPEng2024
Last Date : 10 July 2024
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
hiring for freshers!!
Position- Intern Talent Acquisition
Duration: 6 months
Location-Gurgoan
Mode: Work from office
Immediate joiners are preferred
Any graduation or post graduation preferred (Any degree)
Desired:
1.Outstanding verbal and written communication skills.
2. Passionate about recruitment.
3. Good understanding of full cycle of recruitment.
4. Good analytical skills.
5.Good organization skills.
if interested mail your cv to sahil.a@zelusindia.com
Position- Intern Talent Acquisition
Duration: 6 months
Location-Gurgoan
Mode: Work from office
Immediate joiners are preferred
Any graduation or post graduation preferred (Any degree)
Desired:
1.Outstanding verbal and written communication skills.
2. Passionate about recruitment.
3. Good understanding of full cycle of recruitment.
4. Good analytical skills.
5.Good organization skills.
if interested mail your cv to sahil.a@zelusindia.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Deloitte Hiring Analyst โค
Skils - Python, Excel, SQL
Freshers eligible. Great opportunity
Link to apply ๐
https://jobsindia.deloitte.com/job/Delhi-Consulting-BO-Operations-Transformation-Public-finance-Analyst/26248044/
Skils - Python, Excel, SQL
Freshers eligible. Great opportunity
Link to apply ๐
https://jobsindia.deloitte.com/job/Delhi-Consulting-BO-Operations-Transformation-Public-finance-Analyst/26248044/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Cash Free payment is hiring for SDET interns.
Any graduate can apply
https://docs.google.com/forms/d/e/1FAIpQLSetl8ZhAgiPQBYz-fChjTZHcm_DyKJcLisqvu7VAA9Ba8sZYQ/viewform
Any graduate can apply
https://docs.google.com/forms/d/e/1FAIpQLSetl8ZhAgiPQBYz-fChjTZHcm_DyKJcLisqvu7VAA9Ba8sZYQ/viewform