Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company: Seimens
Role: R&D Intern
Branch: Non-CSE branches like ECE, EE, Mech, ICE
Apply: https://jobs.siemens-healthineers.com/careers/job/563156121848945
Role: R&D Intern
Branch: Non-CSE branches like ECE, EE, Mech, ICE
Apply: https://jobs.siemens-healthineers.com/careers/job/563156121848945
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Amdocs GenAI Graduate Hackathon 2024
Eligibility:
B.E./B.Tech - 2nd, 3rd, and 4th-year students
MCA - 2nd and 3rd-year students
https://www.hackerearth.com/challenges/new/competitive/amdocs-genai-graduate-hackathon-2024/
Eligibility:
B.E./B.Tech - 2nd, 3rd, and 4th-year students
MCA - 2nd and 3rd-year students
https://www.hackerearth.com/challenges/new/competitive/amdocs-genai-graduate-hackathon-2024/
HackerEarth
Amdocs GenAI Graduate Hackathon 2024
Eligibility:
B.E./B.Tech - 2nd, 3rd, and 4th-year students
MCA - 2nd and 3rd-year students
MTech students
Testimonials
B.E./B.Tech - 2nd, 3rd, and 4th-year students
MCA - 2nd and 3rd-year students
MTech students
Testimonials
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Metlife Hackathon: CODE THE CHANGE CHALLENGE
Eligibility: Open to all
https://www.hackerearth.com/challenges/new/competitive/metlife-test/
Eligibility: Open to all
https://www.hackerearth.com/challenges/new/competitive/metlife-test/
HackerEarth
CODE THE CHANGE CHALLENGE
MetLife Code the Change Hackathon: Innovate. Collaborate. Transform.
Are you ready to code for a cause and shape the future of insurance? MetLife's Hackathon in Hyderabad is your chance to showcase your skills, push boundaries, and solve real-world challengesโฆ
Are you ready to code for a cause and shape the future of insurance? MetLife's Hackathon in Hyderabad is your chance to showcase your skills, push boundaries, and solve real-world challengesโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Alstom Hiring !!
Role - ML Engineer
Experience: Fresher
๐ปApply Link: https://jobsearch.alstom.com/job/Bangalore-Machine-Learning-Engineer-KA/1139730901/
Role - ML Engineer
Experience: Fresher
๐ปApply Link: https://jobsearch.alstom.com/job/Bangalore-Machine-Learning-Engineer-KA/1139730901/
def solve(Q, Queries):.
MAX_VAL = 100000
steps = [0] * (MAX_VAL + 1)
def compute_steps(x):
steps_count = 0
while x > 0:
x //= 4
steps_count += 1
return steps_count
for i in range(1, MAX_VAL + 1):
steps[i] = compute_steps(i)
prefix = [0] * (MAX_VAL + 1)
for i in range(1, MAX_VAL + 1):
prefix[i] = prefix[i-1]+steps[i]
results = []
for query in Queries:
L, R = query
if L > 1:
results.append(prefix[R] - prefix[L - 1]+steps[L])
else:
results.append(prefix[R]+steps[L])
return results
// Axis bank minimum operationsโ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ComUnus is Hiring for L1 Application Support !! ๐
No Of Position : 3
Exp. Req : Freshers
Work Location : (Mumbai) Thane
Max NP : Immediate Joiners are preferred
Preferred Candidate : Mumbai
Kindly Note : Immediate Joiners are preferred !!
Interested Candidates Share there CV on : shruti.trimukhe@comunus.in
No Of Position : 3
Exp. Req : Freshers
Work Location : (Mumbai) Thane
Max NP : Immediate Joiners are preferred
Preferred Candidate : Mumbai
Kindly Note : Immediate Joiners are preferred !!
Interested Candidates Share there CV on : shruti.trimukhe@comunus.in
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Eurofins is hiring!
Position: Associate Software Engineer (Analyst)
Experience: 0 - 1 years
๐ป Apply Link: https://jobs.smartrecruiters.com/Eurofins/744000028306935-associate-software-engineer-ba-
Position: Associate Software Engineer (Analyst)
Experience: 0 - 1 years
๐ป Apply Link: https://jobs.smartrecruiters.com/Eurofins/744000028306935-associate-software-engineer-ba-
Eurofins
Eurofins is looking for a Associate Software Engineer(BA) in Bengaluru, Karnataka, India
POSITION TITLE: Junior BA / Associate Software Engineer (Analyst) REPORTING TO: Program Manager  ...
vector<int> getFinalLocations(vector<int> locations, vector<int> movedFrom, vector<int> movedTo) {
multiset<int> dataLocations(locations.begin(), locations.end());
for (int i = 0; i < movedFrom.size(); ++i) {
auto it = dataLocations.find(movedFrom[i]);
if (it != dataLocations.end()) {
dataLocations.erase(it);
}
dataLocations.insert(movedTo[i]);
}
vector<int> finalLocations(dataLocations.begin(), dataLocations.end());
return finalLocations;
}
Amazon โ
#include <bits/stdc++.h>
using namespace std;
long long maximizeTotalMemoryPoints(vector<int> memory) {
sort(memory.rbegin(), memory.rend());
long long total = 0;
for (int i = 0; i < memory.size(); i++) {
total += (i + 1) * (long long)memory[i];
}
return total;
}
int main() {
vector<int> memory = {3, 4, 5};
cout << maximizeTotalMemoryPoints(memory) << endl;
return 0;
}
Amazon โ
using namespace std;
long long maximizeTotalMemoryPoints(vector<int> memory) {
sort(memory.rbegin(), memory.rend());
long long total = 0;
for (int i = 0; i < memory.size(); i++) {
total += (i + 1) * (long long)memory[i];
}
return total;
}
int main() {
vector<int> memory = {3, 4, 5};
cout << maximizeTotalMemoryPoints(memory) << endl;
return 0;
}
Amazon โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <bits/stdc++.h>
using namespace std;
int count_inversions(const string &s) {
int n = s.size(), inv = 0;
vector<int> freq(26, 0);
for (int i = n - 1; i >= 0; --i) {
int c = s[i] - 'a';
for (int j = 0; j < c; ++j) inv += freq[j];
freq[c]++;
}
return inv;
}
int getMinInversion(string s, string t) {
int n = s.size(), m = t.size();
vector<vector<int>> cs(n + 1, vector<int>(26, 0)), ct(m + 1, vector<int>(26, 0));
for (int i = 1; i <= n; ++i) {
cs[i] = cs[i - 1];
cs[i][s[i - 1] - 'a']++;
}
for (int j = 1; j <= m; ++j) {
ct[j] = ct[j - 1];
ct[j][t[j - 1] - 'a']++;
}
vector<vector<int>> dp(n + 1, vector<int>(m + 1, INT_MAX));
dp[0][0] = 0;
for (int i = 0; i <= n; ++i) {
for (int j = 0; j <= m; ++j) {
if (i < n) {
int inv = 0;
for (int c = s[i] - 'a' + 1; c < 26; ++c) inv += ct[j][c];
dp[i + 1][j] = min(dp[i + 1][j], dp[i][j] + inv);
}
if (j < m) {
int inv = 0;
for (int c = t[j] - 'a' + 1; c < 26; ++c) inv += cs[i][c];
dp[i][j + 1] = min(dp[i][j + 1], dp[i][j] + inv);
}
}
}
int inv_s = count_inversions(s), inv_t = count_inversions(t);
return dp[n][m] + inv_s + inv_t;
}
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Capstoneco Hiring
Summer Internship
Batch: 2025/2026
Location: London, New York
Duration: 10 Weeks
https://www.capstoneco.com/careers/2025-summer-internship-software-engineering/
https://www.capstoneco.com/careers/2025-summer-internship-software-engineering-london/
Summer Internship
Batch: 2025/2026
Location: London, New York
Duration: 10 Weeks
https://www.capstoneco.com/careers/2025-summer-internship-software-engineering/
https://www.capstoneco.com/careers/2025-summer-internship-software-engineering-london/
int solution(int n,vector<int>nums){
priority_queue<long long, vector<long long>, greater<long long> > pq;
long long S = 0;
for(int i = 1;i <= n;i++){
int x=nums[i-1];
S += x;
pq.push(x);
while(S < 0){
S -= pq.top();
pq.pop();
}
}
return (int) pq.size();
}
// Axis bank positive totalโ
class Solution {
public:
int helper(vector<int> &nums, int k){
int frequency = 0, ans = 0; ;
map<int, int> mapping;
for(int i = 0; i < nums.size(); ++i){
ans += nums[i];
if(ans == k){
frequency++;
}
if(mapping.find(ans - k) != mapping.end()){
frequency += mapping[ans - k];
}
mapping[ans]++;
}
return frequency;
}
int numSubmatrixSumTarget(vector<vector<int>>& matrix, int target) {
int count = 0;
for(int i = 0; i < matrix.size(); ++i){
vector<int> result(matrix[0].size(), 0);
for(int j = i; j < matrix.size(); ++j){
for(int k = 0; k < matrix[0].size(); ++k){
result[k] += matrix[j][k];
}
count += helper(result, target);
}
}
return count;
}
};
Barclays โ
#include <iostream>
#include <vector>
#include <climits>
using namespace std;
int minCost(int N, int X, int Y, vector<int>& happiness, vector<int>& weight, vector<int>& cost) {
vector<vector<int>> dp(X + 1, vector<int>(Y + 1, INT_MAX));
dp[0][0] = 0;
for (int i = 0; i < N; ++i) {
for (int h = X; h >= 0; --h) {
for (int w = Y; w >= weight[i]; --w) {
if (dp[h][w - weight[i]] != INT_MAX) {
int newH = min(X, h + happiness[i]);
dp[newH][w] = min(dp[newH][w], dp[h][w - weight[i]] + cost[i]);
}
}
}
}
int minCost = INT_MAX;
for (int w = 0; w <= Y; ++w) {
minCost = min(minCost, dp[X][w]);
}
return minCost;
}
Shopping mall โ
#include <iostream>
#include <vector>
#include <queue>
#include <unordered_set>
using namespace std;
void bfs(int start, vector<vector<int>>& graph, vector<bool>& visited) {
queue<int> q;
q.push(start);
visited[start] = true;
while (!q.empty()) {
int node = q.front();
q.pop();
for (int neighbor : graph[node]) {
if (!visited[neighbor]) {
visited[neighbor] = true;
q.push(neighbor);
}
}
}
}
int solve(int N, vector<pair<int, int>>& friends) {
vector<vector<int>> graph(N + 1);
for (auto& edge : friends) {
int u = edge.first, v = edge.second;
graph[u].push_back(v);
graph[v].push_back(u);
}
vector<bool> visited(N + 1, false);
int components = 0;
for (int i = 1; i <= N; ++i) {
if (!visited[i]) {
bfs(i, graph, visited);
++components;
}
}
return components - 1;
}
Friendship Relation โ
import java.util.*;
public class Main {
static int programmerStrings(String s) {
String programmer = "programmer";
String head = programmer;
int i = 0;
for (; i < s.length(); i++) {
int pIndex = head.indexOf(s.charAt(i));
if (pIndex != -1) {
head = head.substring(0, pIndex) + head.substring(pIndex + 1);
}
if (head.length() == 0) {
i++;
break;
}
}
String tail = programmer;
int j = s.length() - 1;
for (; j >= 0; j--) {
int pIndex = tail.indexOf(s.charAt(j));
if (pIndex != -1) {
tail = tail.substring(0, pIndex) + tail.substring(pIndex + 1);
}
if (tail.length() == 0) {
j--;
break;
}
}
return j - i + 1;
}
Cashfree โ
Programmer string