Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Sign Up | LinkedIn
500 million+ members | Manage your professional identity. Build and engage with your professional network. Access knowledge, insights and opportunities.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Happyfox
Role: Backend Developer Intern
Batch Eligible: 2025 passouts
Location: Bangalore
PPO Based on Performance
Share with your College Whatsapp Groups & Friends too
Apply Link: https://happyfox.hire.trakstar.com/jobs/fk0pq6x/
Note: Apply ASAP! It can get closed anytime soon.
Role: Backend Developer Intern
Batch Eligible: 2025 passouts
Location: Bangalore
PPO Based on Performance
Share with your College Whatsapp Groups & Friends too
Apply Link: https://happyfox.hire.trakstar.com/jobs/fk0pq6x/
Note: Apply ASAP! It can get closed anytime soon.
Trakstar
Backend Engineer Intern at HappyFox
As a Backend Engineer Intern specializing in Python, you will work closely with the engineering team to develop and maintain our products. You will be responsible for building scalable and efficient backend systems, ensuring their reliability and performance.โฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Nordson hiring Software Engineer
0-1 year experience
3-5 LPA CTC
Apply Here : https://nordsonhcm.wd5.myworkdayjobs.com/nordsoncareers/job/India---Bangalore/Software-Engineer-I_REQ42193?source=LinkedIn
0-1 year experience
3-5 LPA CTC
Apply Here : https://nordsonhcm.wd5.myworkdayjobs.com/nordsoncareers/job/India---Bangalore/Software-Engineer-I_REQ42193?source=LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Ayushi Jain on LinkedIn: Google Forms: Sign-in | 82 comments
Scaler is Hiring: Problem Setter Intern for our DSML program.
Location: Remote
Duration: 3 months
Grad Year: 2026/2027
Role:
- Create and test high-quality programming questions.
- Collaborate with the content team on DSML modules and strategy.
- Writeโฆ
Location: Remote
Duration: 3 months
Grad Year: 2026/2027
Role:
- Create and test high-quality programming questions.
- Collaborate with the content team on DSML modules and strategy.
- Writeโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Qualcomm is hiring Campus Engineer
For 2025 gards
Location: Hyderabad
๐ปApply Here :
https://careers.qualcomm.com/careers/job/446700567694-2025-campus-hire-engineer-sw-hyderabad-telangana-india?domain=qualcomm.com
For 2025 gards
Location: Hyderabad
๐ปApply Here :
https://careers.qualcomm.com/careers/job/446700567694-2025-campus-hire-engineer-sw-hyderabad-telangana-india?domain=qualcomm.com
Qualcomm
2025 Campus Hire_Engineer_SW | Qualcomm Careers | Engineering Jobs and More | Qualcomm
Search open positions at Qualcomm. Learn more about how our culture of collaboration and robust benefits program allow our employees to live well and exceed their potential.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
American Express :
Batch : 2025/26/27/28 passouts
Tech Roles for Campus : https://amex.co1.qualtrics.com/jfe/form/SV_emrLmvr2CmtPMrQ
Non - Tech roles for Campus students : https://amex.co1.qualtrics.com/jfe/form/SV_9TZvbpMXv8DIT5k
Batch : 2025/26/27/28 passouts
Tech Roles for Campus : https://amex.co1.qualtrics.com/jfe/form/SV_emrLmvr2CmtPMrQ
Non - Tech roles for Campus students : https://amex.co1.qualtrics.com/jfe/form/SV_9TZvbpMXv8DIT5k
Qualtrics
Qualtrics Survey | Qualtrics Experience Management
The most powerful, simple and trusted way to gather experience data. Start your journey to experience management and try a free account today.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
GenAI Meet up Alert ๐จ
Venue - Microsoft, Bengaluru ๐ซ
Here's the link ๐
https://linkedin.openinapp.co/fd0v8
Awesome learning opportunity and build a network ๐ก
Venue - Microsoft, Bengaluru ๐ซ
Here's the link ๐
https://linkedin.openinapp.co/fd0v8
Awesome learning opportunity and build a network ๐ก
linkedin.openinapp.co
DevRelSquad on LinkedIn: #generativeai #technology #devrelsquad #techcommunity #meetup #networkingโฆ
SingleStore x DevRelSquad Presents: The Gen AI Meetup You Can't Miss! Get ready for an electrifying experience at
int digitSum(int x) {
int sum = 0;
while (x > 0) {
sum += x % 10;
x /= 10;
}
return sum;
}
vector<int> nextGreaterMultiverse(const vector<int>& arr) {
int n = arr.size();
vector<int> result(n, -1);
stack<int> st;
for (int i = n - 1; i >= 0; --i) {
int currentDigitSum = digitSum(arr[i]);
while (!st.empty()) {
int topIdx = st.top();
int topDigitSum = digitSum(arr[topIdx]);
if (topDigitSum > currentDigitSum ||
(topDigitSum == currentDigitSum && arr[topIdx] > arr[i])) {
break;
}
st.pop();
}
if (!st.empty()) {
result[i] = arr[st.top()];
}
st.push(i);
}
return result;
}
Next maximumโ
int sum = 0;
while (x > 0) {
sum += x % 10;
x /= 10;
}
return sum;
}
vector<int> nextGreaterMultiverse(const vector<int>& arr) {
int n = arr.size();
vector<int> result(n, -1);
stack<int> st;
for (int i = n - 1; i >= 0; --i) {
int currentDigitSum = digitSum(arr[i]);
while (!st.empty()) {
int topIdx = st.top();
int topDigitSum = digitSum(arr[topIdx]);
if (topDigitSum > currentDigitSum ||
(topDigitSum == currentDigitSum && arr[topIdx] > arr[i])) {
break;
}
st.pop();
}
if (!st.empty()) {
result[i] = arr[st.top()];
}
st.push(i);
}
return result;
}
Next maximumโ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include<bits/stdc++.h>
#define ll long long int
using namespace std;
bool prime[100005];
int dp[100005];
ll answer;
bool visited[100005];
vector<int>adjacent[100005];
void dfs1(int u)
{
visited[u] = true;
int sum = prime[u] ? 0 : 1;
for(int i = 0 ; i < adjacent[u].size() ; i++)
{
int v = adjacent[u][i];
if(!visited[v])
{
dfs1(v);
sum += dp[v];
}
}
dp[u] = sum;
if(prime[u]) dp[u] = 0;
}
void dfs2(int u, int p, int dv)
{
visited[u] = true;
if(prime[u])
{
vector<ll>pp;
ll sum = dv;
pp.push_back(dv);
for(int i = 0 ; i < adjacent[u].size() ; i++)
{
int v = adjacent[u][i];
if(!visited[v] && v != p)
{
dfs2(v, u, 0);
pp.push_back(dp[v]);
sum += dp[v];
}
}
ll val = 0;
for(int i = 0 ; i < pp.size() ; i++)
{
val += (sum-pp[i])*pp[i];
}
val /= 2;
answer += val;
answer += sum;
}
else
{
for(int i = 0 ; i < adjacent[u].size() ; i++)
{
int v = adjacent[u][i];
if(!visited[v] && v != p)
{
dfs2(v, u, dv + dp[u] - dp[v]);
}
}
}
}
void Sieve()
{
for(int i = 1 ; i <= 100000 ; i++)
{
prime[i] = true;
}
prime[1] = false;
for(int i = 2 ; i*i <= 100000 ; i++)
{
if(prime[i])
{
for(int j = i*i ; j <= 100000 ; j += i)
{
prime[j] = false;
}
}
}
}
int main(){
Sieve();
int n;
cin>>n;
assert(1 <= n && n <= 100000);
for(int i = 0 ; i < n - 1 ; i++)
{
int u,v;
cin>>u>>v;
assert(1 <= u && u <= n);
assert(1 <= v && v <= n);
adjacent[u].push_back(v);
adjacent[v].push_back(u);
}
dfs1(1);
for(int i = 1 ; i <= n ; i++) visited[i] = false;
dfs2(1,0,0);
cout<<answer<<endl;
}
prime pairsโ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Coinswitch is hiring SDE Intern (Apply Fast!)
For 2025 grads
https://recruiterflow.com/coinswitch/jobs/496
For 2025 grads
https://recruiterflow.com/coinswitch/jobs/496
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Pando is hiring for QA Manual Intern
Experience: 0 - 1 year
Expected Stipend: competitive
Apply here: https://careers.pando.ai/jobs/Careers/727224000009432292/QA-Manual-Intern?source=CareerSite
Experience: 0 - 1 year
Expected Stipend: competitive
Apply here: https://careers.pando.ai/jobs/Careers/727224000009432292/QA-Manual-Intern?source=CareerSite
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company: Zenskar
Role: AI Engineering Intern
Remote
Apply: https://wellfound.com/jobs/3150781-ai-engineering-intern
Role: AI Engineering Intern
Remote
Apply: https://wellfound.com/jobs/3150781-ai-engineering-intern
Wellfound
AI Engineering Intern at Zenskar โข India โข Bengaluru โข Remote (Work from Home)
Zenskar is hiring a AI Engineering Intern in India and Bengaluru - Apply now on Wellfound!
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://surveys.infosysapps.com/r/a/SPCampusregistration_NATCOLLEGES25batch
Company:-Infosys
Package:- 9.5 lpa
Role:- SP
Good opportunity โ โ๏ธ
Apply assap โ โ๏ธ
Batches:-2023/2024/2025
Company:-Infosys
Package:- 9.5 lpa
Role:- SP
Good opportunity โ โ๏ธ
Apply assap โ โ๏ธ
Batches:-2023/2024/2025
Infosysapps
Infosys | Surveys
Create Surveys. Collect feedback through a computer assisted, Mobile friendly method. Design Surveys, Send Request , Analyze response and more ...
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Instahyre
SDE 1 job at GreenStitch.io - Instahyre
GreenStitch.io is looking for a SDE 1 in Bangalore with 2-6 years of experience in Full-Stack Development, Node.js, React.js, etc. Apply today and get your dream job at GreenStitch.io!
Today anyone give exam Visa /Google just React