def maximumXorSum(arr1, arr2):
n = len(arr1)
MOD = 10**9 + 7
bit_count1 = [0] * 32
bit_count2 = [0] * 32
for i in range(n):
for j in range(32):
bit_count1[j] += (arr1[i] >> j) & 1
bit_count2[j] += (arr2[i] >> j) & 1
total_sum = 0
for i in range(32):
ones = (bit_count1[i] * n) + (bit_count2[i] * n) - (2 * bit_count1[i] * bit_count2[i])
total_sum = (total_sum + (ones * (1 << i))) % MOD
return total_sum
Oracle โ
Maximum Xor matrix Sum
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Nokia is hiring Software Developer
For 2022, 2023 grads
Location: Bangalore
https://fa-evmr-saasfaprod1.fa.ocs.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/12508?src=SNS-102
For 2022, 2023 grads
Location: Bangalore
https://fa-evmr-saasfaprod1.fa.ocs.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/12508?src=SNS-102
Nokia Global Career Site
Software Developer
Do you thrive in a collaborative environment where you can contribute to building high-quality software solutions? Are you passionate about writing clean, efficient code and working within an agile development process? If so, we have an exciting opportunityโฆ
#include <bits/stdc++.h>
using namespace std;
pair<vector<int>, int> elimination_game(int n) {
deque<int> s(n);
iota(s.begin(), s.end(), 1);
vector<int> result;
bool l2r = true;
while (s.size() > 1) {
int size = s.size();
for (int i = 0; i < size; ++i) {
if ((i % 2 == 0 && l2r) || (i % 2 == 1 && !l2r)) {
result.push_back(s[i]);
} else {
s.push_back(s[i]);
}
}
s.erase(s.begin(), s.begin() + size);
l2r = !l2r;
}
return {result, s.front()};
}
Kickdrum โ
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int t;
cin >> t;
while(t--) {
int n, k;
cin >> n >> k;
vector<int> a(n);
for(auto &x : a) cin >> x;
int ans = accumulate(a.begin(), a.end(), 0);
for(int i = 0; i + k < n; i++) {
int mn = *min_element(a.begin() + i, a.begin() + i + k + 1);
int sum = 0;
for(int j = 0; j < n; j++) {
if(j >= i && j < i + k + 1) sum += mn;
else sum += a[j];
}
ans = min(ans, sum);
}
cout << ans << '\n';
}
return 0;
}
Kickdrum โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
using namespace std;
int main() {
int N, M;
cin >> N >> M;
vector<int> pouchCount(N + 1, 0);
vector<int> output;
for (int i = 0; i < M; ++i) {
int candies;
cin >> candies;
if (candies > N) {
candies = N;
}
pouchCount[candies]++;
bool canPackBasket = true;
for (int j = 1; j <= N; ++j) {
if (pouchCount[j] == 0) {
canPackBasket = false;
break;
}
}
if (canPackBasket) {
output.push_back(1);
for (int j = 1; j <= N; ++j) {
pouchCount[j]--;
}
} else {
output.push_back(0);
}
}
for (size_t i = 0; i < output.size(); ++i) {
cout << output[i] << (i == output.size() - 1 ? "" : " ");
}
cout << endl;
return 0;
}
Amagi (intern) โ
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> a(n);
for (int &x : a) cin >> x;
long long sum = accumulate(a.begin(), a.end(), 0LL), pre = 0;
int idx = 0, min_diff = INT_MAX;
for (int i = 0; i < n; ++i) {
pre += a[i];
long long avg1 = pre / (i + 1);
long long avg2 = (sum - pre) / max(1, n - i - 1);
int diff = abs(avg1 - avg2);
if (diff < min_diff) {
min_diff = diff;
idx = i;
}
}
cout << idx+1 << endl;
}
Amagi (Intern) โ
using namespace std;
int main() {
int n;
cin >> n;
vector<int> a(n);
for (int &x : a) cin >> x;
long long sum = accumulate(a.begin(), a.end(), 0LL), pre = 0;
int idx = 0, min_diff = INT_MAX;
for (int i = 0; i < n; ++i) {
pre += a[i];
long long avg1 = pre / (i + 1);
long long avg2 = (sum - pre) / max(1, n - i - 1);
int diff = abs(avg1 - avg2);
if (diff < min_diff) {
min_diff = diff;
idx = i;
}
}
cout << idx+1 << endl;
}
Amagi (Intern) โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Exciting opportunity for Data Scientists in Gurgaon! Join the Quant Trading firm to work on parsing and analysing large data sets, discovering new data sources, and building predictive machine learning models.
Responsibilities include:
- Exploring diverse data sets
- Developing a framework to monitor critical data sources
- Implementing machine learning techniques and predictive modelling.
Requirements:
- Technical degree in Computer Science or related field from IIT with 8+ GPA
- Experience in statistical analysis
- Experience with Machine Learning, Development of ML Models
- Proficiency in Linux, Bash, Python, and SQL Database
Work in a dynamic and rewarding environment as a Data Scientist. Please reach out to me at anshulgoel@aquissearch.com for more details.
Responsibilities include:
- Exploring diverse data sets
- Developing a framework to monitor critical data sources
- Implementing machine learning techniques and predictive modelling.
Requirements:
- Technical degree in Computer Science or related field from IIT with 8+ GPA
- Experience in statistical analysis
- Experience with Machine Learning, Development of ML Models
- Proficiency in Linux, Bash, Python, and SQL Database
Work in a dynamic and rewarding environment as a Data Scientist. Please reach out to me at anshulgoel@aquissearch.com for more details.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Commerce IQ is hiring Software Engineer (UI)
For 2021, 2022, 2023 grads
Location: Bangalore
https://job-boards.greenhouse.io/commerceiq/jobs/6242977003?gh_src=6c2d12b73us
For 2021, 2022, 2023 grads
Location: Bangalore
https://job-boards.greenhouse.io/commerceiq/jobs/6242977003?gh_src=6c2d12b73us
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
def getRegions(ip_addresses):
def isValidIP(ip):
parts = ip.split('.')
if len(parts) != 4:
return False
for part in parts:
if not part.isdigit():
return False
if not 0 <= int(part) <= 255:
return False
return True
def getRegion(ip):
first_octet = int(ip.split('.')[0])
if 0 <= first_octet <= 127:
return 1
elif 128 <= first_octet <= 191:
return 2
elif 192 <= first_octet <= 223:
return 3
elif 224 <= first_octet <= 239:
return 4
elif 240 <= first_octet <= 255:
return 5
else:
return -1
regions = []
for ip in ip_addresses:
if isValidIP(ip):
regions.append(getRegion(ip))
else:
regions.append(-1)
return regions
Location Detection
HPE โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Groww
Batch : 2023/2022 passouts
Role : Web Developer
Link : https://www.linkedin.com/jobs/view/4064817342
Batch : 2023/2022 passouts
Role : Web Developer
Link : https://www.linkedin.com/jobs/view/4064817342
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Swiggy
Role : Machine Learning Engineer 1
Batch : 2024/2023 passouts
Link :
https://www.linkedin.com/jobs/view/4064814309
Role : Machine Learning Engineer 1
Batch : 2024/2023 passouts
Link :
https://www.linkedin.com/jobs/view/4064814309
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Yext is hiring for Software Engineer - 2
Experience: 0 - 1 year's
Expected Salary: 12-24 LPA
Apply here: https://www.linkedin.com/jobs/view/4068837390/?alternateChannel=search
Experience: 0 - 1 year's
Expected Salary: 12-24 LPA
Apply here: https://www.linkedin.com/jobs/view/4068837390/?alternateChannel=search
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Mitratech is hiring for Software Engineer I
Experience: 0 - 1 year's
Expected Salary: 9-14 LPA
Apply here: https://mitratech.com/about-us/careers/?gh_jid=6243012
Experience: 0 - 1 year's
Expected Salary: 9-14 LPA
Apply here: https://mitratech.com/about-us/careers/?gh_jid=6243012
Mitratech
Careers
Explore Mitratech job openings to join a team of global technology leaders in corporate legal, risk & compliance, and human resource automated solutions.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Exciting Opportunities in Data Roles for Freshers
๐Company: Anblicks
Role: Data Engineer Intern
Experience: 0-2 years needed
Location: Hyderabad, Ahemdabad
Email: bhushan.sambhus@anblicks.com
๐Company: OctaX PRO
Role: Data Engineer Intern/Analyst Intern
Experience: 0-2 years needed
Email: jobs@octax.pro with subject Data Internship.
๐Company: Malabar Group
Role: Data Analyst/Engineer Intern
Experience: 0-2 years needed
Email: fathimafebin.kp@malabargroup.com
๐Company: vTech Solution Inc
Role: Business Analyst
Experience: 0-2 years needed
Location: Ahmedabad/Baroda, India
Email: Divyanshu.N@vtechsolution.com
๐Company: Xpheno
Role: Associate Data Analyst
Experience: 0-2 years needed
Location: Pune
Email: aswindinesh.k@xpheno.com
๐Company: AdMedia
Role: Analyst
Experience: 0-2 years needed
Email: priyanka@admedia.com
๐Company: UnboundB2B
Role: Research Analyst
Experience: 0-2 years needed
Location: Pune
Email: klokhande3@unboundb2b.com
๐Company: NLB Tech
Role: Analyst
Experience: 0-2 years needed
Location: Noida
Email: divya.awasthi@nlbtech.com
๐Company: Anblicks
Role: Data Engineer Intern
Experience: 0-2 years needed
Location: Hyderabad, Ahemdabad
Email: bhushan.sambhus@anblicks.com
๐Company: OctaX PRO
Role: Data Engineer Intern/Analyst Intern
Experience: 0-2 years needed
Email: jobs@octax.pro with subject Data Internship.
๐Company: Malabar Group
Role: Data Analyst/Engineer Intern
Experience: 0-2 years needed
Email: fathimafebin.kp@malabargroup.com
๐Company: vTech Solution Inc
Role: Business Analyst
Experience: 0-2 years needed
Location: Ahmedabad/Baroda, India
Email: Divyanshu.N@vtechsolution.com
๐Company: Xpheno
Role: Associate Data Analyst
Experience: 0-2 years needed
Location: Pune
Email: aswindinesh.k@xpheno.com
๐Company: AdMedia
Role: Analyst
Experience: 0-2 years needed
Email: priyanka@admedia.com
๐Company: UnboundB2B
Role: Research Analyst
Experience: 0-2 years needed
Location: Pune
Email: klokhande3@unboundb2b.com
๐Company: NLB Tech
Role: Analyst
Experience: 0-2 years needed
Location: Noida
Email: divya.awasthi@nlbtech.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Amplelogic Hyderabad as an intern and get placed as full time within a span of 3 months.
Dot Net Fresher-B Tech Graduate who got trained in Dot Net/angular/sql/entity Framework (Dot net with Angular Mandatory)
Note preferred: Excellent communication skills.
Please share your resume to preethi.g@amplelogic.com
Dot Net Fresher-B Tech Graduate who got trained in Dot Net/angular/sql/entity Framework (Dot net with Angular Mandatory)
Note preferred: Excellent communication skills.
Please share your resume to preethi.g@amplelogic.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Hiring freshers for Technical Support Analyst role at DispatchTrack
Experience - 0 - 1 Year
Shift Timing - 9:00 PM IST to 6:00 AM IST(Night Shift, 5 Days work from office)
Hiring Criteria - Good Communication Skill and basic Technical Skills
Eligible Degree - Btech, MCA
Location - Hyderabad.
If you are interested, please share your updated CV Shamili.dasu@dispatchtrack.com
Experience - 0 - 1 Year
Shift Timing - 9:00 PM IST to 6:00 AM IST(Night Shift, 5 Days work from office)
Hiring Criteria - Good Communication Skill and basic Technical Skills
Eligible Degree - Btech, MCA
Location - Hyderabad.
If you are interested, please share your updated CV Shamili.dasu@dispatchtrack.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐IBR InfoTech is hiring
Job Title: MERN Stack Developer (Junior)
Experience: 0.6 - 1 Year
Location: Indore (Work from Office)
Immediate Joining
Key Responsibilities:
1.Develop and maintain high-quality web applications using the MERN Stack (MongoDB, Express.js, React.js, and Node.js).
2.Collaborate with cross-functional teams to define, design, and implement new features.
3.Optimize components for maximum performance across a vast array of web-capable devices and browsers.
Required Skills:
*Frontend Expertise: Proficient in React.js and Redux.
*Backend Expertise: Strong skills in Node.js, MongoDB, and Express.js.
*Strong technical knowledge of the complete MERN stack
If you are passionate about web development and want to advance your career in the MERN Stack, apply now! Share your CV at hr2@ibrinfotech.com
Job Title: MERN Stack Developer (Junior)
Experience: 0.6 - 1 Year
Location: Indore (Work from Office)
Immediate Joining
Key Responsibilities:
1.Develop and maintain high-quality web applications using the MERN Stack (MongoDB, Express.js, React.js, and Node.js).
2.Collaborate with cross-functional teams to define, design, and implement new features.
3.Optimize components for maximum performance across a vast array of web-capable devices and browsers.
Required Skills:
*Frontend Expertise: Proficient in React.js and Redux.
*Backend Expertise: Strong skills in Node.js, MongoDB, and Express.js.
*Strong technical knowledge of the complete MERN stack
If you are passionate about web development and want to advance your career in the MERN Stack, apply now! Share your CV at hr2@ibrinfotech.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Please send your CV to hrsukrati@technorizen.com or call us at 8085004047