Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐จJOB OPENING UPDATES๐จ
Company โ Frost & Sullivan
Role โ Intern - Data Science & AI Engineer
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3941301549
Company โ Cloud Elevate Technologies Pvt Ltd
Role โ Data Science Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/work-from-home-part-time-data-science-internship-at-cloud-elevate-technologies-pvt-ltd1717729574?utm_source=cp_link&referral=web_share
Company โ ProAnalyst
Role โ Data Analyst Interns
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3940876535
Company โ Frost & Sullivan
Role โ Intern - Data Science & AI Engineer
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3941301549
Company โ Cloud Elevate Technologies Pvt Ltd
Role โ Data Science Intern
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/detail/work-from-home-part-time-data-science-internship-at-cloud-elevate-technologies-pvt-ltd1717729574?utm_source=cp_link&referral=web_share
Company โ ProAnalyst
Role โ Data Analyst Interns
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3940876535
Linkedin
Frost & Sullivan hiring Intern - Data Science & AI Engineer in Chennai, Tamil Nadu, India | LinkedIn
Posted 7:24:19 AM. Intern - Data Science & AI Engineer - 6 Months - Paid Internship
About the Team
In Frost &โฆSee this and similar jobs on LinkedIn.
About the Team
In Frost &โฆ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)
Uni Cards is #hiring for Growth Analyst.
Location: Bangalore
Experience: 0-2 yrs
Job Description: https://www.iimjobs.com/j/uni-club-growth-analyst-0-2-yrs-1420423?
Location: Bangalore
Experience: 0-2 yrs
Job Description: https://www.iimjobs.com/j/uni-club-growth-analyst-0-2-yrs-1420423?
iimjobs.com
Uni Club - Growth Analyst | iimjobs.com
Job Description for Uni Club - Growth Analyst in UniCards in Bangalore for (0-2) years of experience. Apply Now!
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Onmobile Hiring for Software Engineer - 2023/24 - 10LPA - Bangalore
https://app.joinsuperset.com/students/jobprofiles/fac0cd2a-3c1e-4fa0-af1a-5583fc0391b8
https://app.joinsuperset.com/students/jobprofiles/fac0cd2a-3c1e-4fa0-af1a-5583fc0391b8
๐1
#include <iostream>
#include <vector>
using namespace std;
int andyTrucker(int N, int K, vector<int>& A) {
int maxWeight = 0;
for (int i = 0; i <= N - K; ++i) {
int currentWeight = 0;
for (int j = i; j < i + K; ++j) {
currentWeight += A[j];
}
maxWeight = max(maxWeight, currentWeight);
}
return maxWeight;
}
#include <vector>
using namespace std;
int andyTrucker(int N, int K, vector<int>& A) {
int maxWeight = 0;
for (int i = 0; i <= N - K; ++i) {
int currentWeight = 0;
for (int j = i; j < i + K; ++j) {
currentWeight += A[j];
}
maxWeight = max(maxWeight, currentWeight);
}
return maxWeight;
}
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
public static int solution(int N, int K, int[] cost, int[] sell) { int maxProfit = 0; List<Item> items = new ArrayList<>(); for (int i = 0; i < N; i++) { items.add(new Item(cost[i], sell[i])); } Collecโฆ
#include <vector>
#include <iostream>
using namespace std;
int maxProfit(int N, int K, vector<int>& cost, vector<int>& sell) {
int maxProfit = 0;
int currentMoney = K;
for (int i = 0; i < N; ++i) {
int profit = sell[i] - cost[i];
if (profit > 0) {
maxProfit += profit;
currentMoney += profit;
}
}
return maxProfit;
}
Profits โ
#include <iostream>
using namespace std;
int maxProfit(int N, int K, vector<int>& cost, vector<int>& sell) {
int maxProfit = 0;
int currentMoney = K;
for (int i = 0; i < N; ++i) {
int profit = sell[i] - cost[i];
if (profit > 0) {
maxProfit += profit;
currentMoney += profit;
}
}
return maxProfit;
}
Profits โ
#include <bits/stdc++.h>
using namespace std;
vector<int> distinctOrder(int g_nodes, vector<int> g_from, vector<int> g_to) {
vector<vector<int>> adj(g_nodes + 1);
for (int i = 0; i < g_from.size(); ++i)
{
adj[g_from[i]].push_back(g_to[i]);
adj[g_to[i]].push_back(g_from[i]);
}
for (int i = 1; i <= g_nodes; ++i)
{
sort(adj[i].rbegin(), adj[i].rend());
}
vector<int> A;
vector<bool> visited(g_nodes + 1, false);
priority_queue<int> pq;
pq.push(g_nodes);
while (!pq.empty())
{
int node = pq.top();
pq.pop();
if (visited[node]) continue;
visited[node] = true;
A.push_back(node);
for (int neighbor : adj[node])
{
if (!visited[neighbor])
{
pq.push(neighbor);
}
}
}
return A;
}
Distinct order Traversal โ
using namespace std;
vector<int> distinctOrder(int g_nodes, vector<int> g_from, vector<int> g_to) {
vector<vector<int>> adj(g_nodes + 1);
for (int i = 0; i < g_from.size(); ++i)
{
adj[g_from[i]].push_back(g_to[i]);
adj[g_to[i]].push_back(g_from[i]);
}
for (int i = 1; i <= g_nodes; ++i)
{
sort(adj[i].rbegin(), adj[i].rend());
}
vector<int> A;
vector<bool> visited(g_nodes + 1, false);
priority_queue<int> pq;
pq.push(g_nodes);
while (!pq.empty())
{
int node = pq.top();
pq.pop();
if (visited[node]) continue;
visited[node] = true;
A.push_back(node);
for (int neighbor : adj[node])
{
if (!visited[neighbor])
{
pq.push(neighbor);
}
}
}
return A;
}
Distinct order Traversal โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐NielsenIQ is hiring for Data Processing Analyst
Expected Salary: 4-6 LPA
Experience: 0-2 years
Apply here:
https://linkedin.com/jobs/view/3945297608/
Expected Salary: 4-6 LPA
Experience: 0-2 years
Apply here:
https://linkedin.com/jobs/view/3945297608/
Linkedin
NielsenIQ hiring Data Processing Analyst in Chennai, Tamil Nadu, India | LinkedIn
Posted 3:15:41 PM. Company DescriptionNielsenIQ is a global measurement and data analytics company that provides 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)
https://unstop.com/hackathons/novago-sde-hiring-challenge-unlock-your-future-with-a-hybrid-opportunity-novago-1024978?rstatus=1
Position: Software Development Engineer (SDE)
CTC: 8.5 LPA
Bond: None
Work Mode: Hybrid (combination of remote and in-office work)
Position: Software Development Engineer (SDE)
CTC: 8.5 LPA
Bond: None
Work Mode: Hybrid (combination of remote and in-office work)
Unstop
Novago SDE Hiring Challenge: Unlock Your Future with a Hybrid Opportunity! - 2024 | 1024978 // Unstop
Find out the best Novago SDE Hiring Challenge: Unlock Your Future with a Hybrid Opportunity! that match your interests. Prove your mettle and win exciting pr... | 2024 | 1024978
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Harshit Gupta on LinkedIn: #interested #referrals #hiring #hiringdevelopers #job #hiringjobsโฆ | 203 comments
(Update) ๐๐Referral Alert๐๐
Principal Global Services is hiring for Software Engineer Role for Pune and Hyderabad Location with Hybrid workplaceโฆ | 203 comments on LinkedIn
Principal Global Services is hiring for Software Engineer Role for Pune and Hyderabad Location with Hybrid workplaceโฆ | 203 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company: Arrcus
Role: Networking SDE
Expected CTC: NA
Batch Eligible: 2023 / 2024 and earlier
Website: https://www.linkedin.com/jobs/view/3941059450
Role: Networking SDE
Expected CTC: NA
Batch Eligible: 2023 / 2024 and earlier
Website: https://www.linkedin.com/jobs/view/3941059450
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company: Deloitte
Role: Associate Analyst
Expected CTC: NA
Batch Eligible: 2024/2023/2022
Website: https://usijobs.deloitte.com/careersUSI/JobDetail/USI-EH-FY25-Enabling-Areas-GFS-CTC-FO-Collections-Associate-Analyst/181849?
Role: Associate Analyst
Expected CTC: NA
Batch Eligible: 2024/2023/2022
Website: https://usijobs.deloitte.com/careersUSI/JobDetail/USI-EH-FY25-Enabling-Areas-GFS-CTC-FO-Collections-Associate-Analyst/181849?
Deloitte
Check out this job at Deloitte, GFS-CTC FO-Collections-Associate Analyst-Hyderabad
Associate Analystโ Global Finance Services โ Credit Control/Accounts Receivable We are looking for professionals with strong accounting skills, who are looking forward to making a career in the...
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Taiyล.AI is hiring for Quality Analyst - Remote
Stipend: 25K-40K per month
Apply here:
https://wellfound.com/jobs/3027712-quality-analyst
Stipend: 25K-40K per month
Apply here:
https://wellfound.com/jobs/3027712-quality-analyst
Wellfound
Quality Analyst at Taiyล.AI โข India โข Remote (Work from Home)
Taiyล.AI is hiring a Quality Analyst in India - Apply now on Wellfound!
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Pilot is hiring for Multiple Intern
Stipend: 3.6-6.3 LPA
Apply here for Full-Stack Software Engineer Intern (front-end focus):
https://wellfound.com/jobs/3027463-full-stack-software-engineer-intern-front-end-focus
Apply here for Full-Stack Software Engineer Intern (back-end focus):
https://wellfound.com/jobs/3027458-full-stack-software-engineer-intern-back-end-focus
Stipend: 3.6-6.3 LPA
Apply here for Full-Stack Software Engineer Intern (front-end focus):
https://wellfound.com/jobs/3027463-full-stack-software-engineer-intern-front-end-focus
Apply here for Full-Stack Software Engineer Intern (back-end focus):
https://wellfound.com/jobs/3027458-full-stack-software-engineer-intern-back-end-focus
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Backend Intern At Pibit.ai
Batch: 2023, 2024, 2025
Note : Apply ASAP !
https://www.linkedin.com/jobs/view/backend-intern-at-pibit-ai-3941312711/?trackingId=B6hgp0PAa12g%2BN8bxBek%2Bw%3D%3D&refId=z52KGpkx2633fbtXu6/Y/A%3D%3D&pageNum=0&position=5&trk=public_jobs_jserp-result_search-card&originalSubdomain=in
Batch: 2023, 2024, 2025
Note : Apply ASAP !
https://www.linkedin.com/jobs/view/backend-intern-at-pibit-ai-3941312711/?trackingId=B6hgp0PAa12g%2BN8bxBek%2Bw%3D%3D&refId=z52KGpkx2633fbtXu6/Y/A%3D%3D&pageNum=0&position=5&trk=public_jobs_jserp-result_search-card&originalSubdomain=in
Linkedin
Pibit.ai hiring Backend Intern in Bengaluru, Karnataka, India | LinkedIn
Posted 11:45:10 AM. Who are we?Y Combinator-backed startup, founded by IIT Roorkee alumnus We help Insurance carriersโฆ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)
Remote Founding Frontend Developer At Aiqtor Technologies
Batch: 2023, 2024
Pay Range : โน20,000 โ โน40,000
https://wellfound.com/jobs/3028705-founding-frontend-developer
Batch: 2023, 2024
Pay Range : โน20,000 โ โน40,000
https://wellfound.com/jobs/3028705-founding-frontend-developer
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Zluri
SDE Intern
Location: Bengaluru
Batches Eligible: 2024, 2025
Skills Required:
DSA, Development
Description
We are seeking a highly skilled and experienced SDE Intern to join our dynamic team at Zluri. In this role, you will be responsible for leading the development of innovative software solutions that drive our company's success.
Qualifications
- Bachelor's degree in Computer Science or related field.
- Experience in software development Proficiency in DSA, Development.
- Strong problem-solving and analytical skills.
- Excellent communication and teamwork abilities.
Apply: https://perfleap.in/opportunities/zluri-sde-intern-1717998720
SDE Intern
Location: Bengaluru
Batches Eligible: 2024, 2025
Skills Required:
DSA, Development
Description
We are seeking a highly skilled and experienced SDE Intern to join our dynamic team at Zluri. In this role, you will be responsible for leading the development of innovative software solutions that drive our company's success.
Qualifications
- Bachelor's degree in Computer Science or related field.
- Experience in software development Proficiency in DSA, Development.
- Strong problem-solving and analytical skills.
- Excellent communication and teamwork abilities.
Apply: https://perfleap.in/opportunities/zluri-sde-intern-1717998720
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Videosdk.live | iOS & Node.js devs | 2023, 2024 Batches
https://www.linkedin.com/posts/yash-chudasama17_connections-ios-iosdeveloper-activity-7205807654676422656-rSun
https://www.linkedin.com/posts/yash-chudasama17_connections-ios-iosdeveloper-activity-7205807654676422656-rSun
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
GoGuardian is hiring SDE-1
For 2023, 2022, 2021 grads
Apply - https://www.instahyre.com/job-278978-software-engineer-i-mern-at-goguardian-bangalore/
For 2023, 2022, 2021 grads
Apply - https://www.instahyre.com/job-278978-software-engineer-i-mern-at-goguardian-bangalore/
Instahyre
Software Engineer I (MERN) job at GoGuardian - Instahyre
GoGuardian is looking for a Software Engineer I (MERN) in Bangalore with 0-2 years of experience in Full-Stack Development, Node.js, MongoDB, React.js, Express.js, AWS, etc. Apply today and get your dream job at GoGuardian!