Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Bottomline is hiring for Associate Software Engineer
Expected Salary: 7-12 LPA
Batch: 2023/2024
Apply here:
https://boards.greenhouse.io/bottomlinetechnologies/jobs/7498875002?gh_src=e1c2a8322us
  
  Expected Salary: 7-12 LPA
Batch: 2023/2024
Apply here:
https://boards.greenhouse.io/bottomlinetechnologies/jobs/7498875002?gh_src=e1c2a8322us
job-boards.greenhouse.io
  
  Bottomline
  
๐1
  Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Apply here for Full Stack Developer - Internship:
https://careers-page.com/sperax/job/L86963VV
  https://careers-page.com/sperax/job/L86963VV
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://www.linkedin.com/posts/arnabdebnath07_were-hiring-product-designers-looking-activity-7212325301295439872-X4sH?utm_source=share&utm_medium=member_android
Apply Link Form :
https://docs.google.com/forms/d/e/1FAIpQLSfLSvtnw8PbVoCfRKKWd_0_qIT6EK5GlIFApS04aKE9TjvzFQ/viewform
  
  Apply Link Form :
https://docs.google.com/forms/d/e/1FAIpQLSfLSvtnw8PbVoCfRKKWd_0_qIT6EK5GlIFApS04aKE9TjvzFQ/viewform
Linkedin
  
  Arnab Debnath on LinkedIn: We're Hiring Product Designers! ๐
Looking for full-time and internโฆ | 100 comments
  Looking for full-time and internโฆ | 100 comments
We're Hiring Product Designers! ๐
Looking for full-time and intern roles! If you excel in design, with deep thinking and a passion for functionality andโฆ | 100 comments on LinkedIn
  Looking for full-time and intern roles! If you excel in design, with deep thinking and a passion for functionality andโฆ | 100 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
  
๐1
  Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hiring for SDET - Intern & Full time At Cashfree Payments
Batch: 2023, 2024, 2025, 2026
https://docs.google.com/forms/d/e/1FAIpQLSetl8ZhAgiPQBYz-fChjTZHcm_DyKJcLisqvu7VAA9Ba8sZYQ/viewform
  Batch: 2023, 2024, 2025, 2026
https://docs.google.com/forms/d/e/1FAIpQLSetl8ZhAgiPQBYz-fChjTZHcm_DyKJcLisqvu7VAA9Ba8sZYQ/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
M.tech 2024 passout freshers opening at western digital 
Qualifications
M.Tech in Electronics/Embedded Systems/Computer Science (2024 Passouts Only)
Apply at :https://smrtr.io/m5GpC
  
  Qualifications
M.Tech in Electronics/Embedded Systems/Computer Science (2024 Passouts Only)
Apply at :https://smrtr.io/m5GpC
Western Digital
  
  Western Digital is looking for a Senior Engineer, System design Verification Engineering (M Tech -2024 Passouts) in Bengaluru,โฆ
  As a Firmware Verification Engineer in Client Solid State Drives (CSSD) group at Western Digital, you will develop test cases and infrastructure to validate and verify firmware for Solid State Dri...
  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
๐2
  
  ๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
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++
โค1๐1
  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 โ
๐1
  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.