Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ Alight is Hiring for 2024! ๐
๐ Role: Financial Analyst I
๐ Job Location: Gurgaon, Haryana
๐ Experience: 0 - 2 years
๐ Qualification: B.Com, M.Com, BBA, MBA, CA/CS/ICWA
๐ Link- https://careers.alight.com/us/en/job/ALIGUSR28009EXTERNALENUS/Financial-Analyst-I
All the best ๐๐
๐ Role: Financial Analyst I
๐ Job Location: Gurgaon, Haryana
๐ Experience: 0 - 2 years
๐ Qualification: B.Com, M.Com, BBA, MBA, CA/CS/ICWA
๐ Link- https://careers.alight.com/us/en/job/ALIGUSR28009EXTERNALENUS/Financial-Analyst-I
All the best ๐๐
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)
๐Ericsson is hiring for Software Developer
Expected Salary: 6-12 LPA
๐Apply here: https://jobs.ericsson.com/careers/job/563121759534531
Expected Salary: 6-12 LPA
๐Apply here: https://jobs.ericsson.com/careers/job/563121759534531
Ericsson
Software Developer | Bangalore,Karnataka,India | Ericsson
- Cloud Technologies (Kubernetes, Docker, AWS, Container, Microservices, spring boot). - Security. - DevSecOps. - Front End Development. - Security Reliability Model (SRM). - Application and Product security. - Agile methodology. - Software Vulnerabilityโฆ
long maxSpanRelation(int idx, vector<int>& arr1, long mini, vector<int>& arr2, long sum, int k, vector<vector<long>>& dp) {
if(idx == arr1.size()) {
if(k == 0) {
return mini * sum;
}
return 0;
}
if(dp[idx][k] != -1) return dp[idx][k];
long pick = maxSpanRelation(idx + 1, arr1, min(mini, (long)arr1[idx]), arr2, sum + arr2[idx], k - 1, dp);
long notPick = maxSpanRelation(idx + 1, arr1, mini, arr2, sum, k, dp);
return dp[idx][k] = max(pick, notPick);
}
long getMaxSpanRelation(vector<int>& arr1, vector<int>& arr2, int k) {
int n = arr1.size();
vector<vector<long>> dp(n, vector<long>(k + 1, -1));
return maxSpanRelation(0, arr1, 5001, arr2, 0, k, dp);
}
int main() {
vector<int> arr1 = {1, 2, 3};
vector<int> arr2 = {4, 5, 6};
int k = 2;
cout << getMaxSpanRelation(arr1, arr2, k) << endl;
return 0;
}
Maximum Span Relation โ
if(idx == arr1.size()) {
if(k == 0) {
return mini * sum;
}
return 0;
}
if(dp[idx][k] != -1) return dp[idx][k];
long pick = maxSpanRelation(idx + 1, arr1, min(mini, (long)arr1[idx]), arr2, sum + arr2[idx], k - 1, dp);
long notPick = maxSpanRelation(idx + 1, arr1, mini, arr2, sum, k, dp);
return dp[idx][k] = max(pick, notPick);
}
long getMaxSpanRelation(vector<int>& arr1, vector<int>& arr2, int k) {
int n = arr1.size();
vector<vector<long>> dp(n, vector<long>(k + 1, -1));
return maxSpanRelation(0, arr1, 5001, arr2, 0, k, dp);
}
int main() {
vector<int> arr1 = {1, 2, 3};
vector<int> arr2 = {4, 5, 6};
int k = 2;
cout << getMaxSpanRelation(arr1, arr2, k) << endl;
return 0;
}
Maximum Span Relation โ
typedef long ll;
ll getmaxfreq(int connect_nodes, vector<int> connect_from, vector<int> connect_to, vector<int> connect_val, int k) {
vector<vector<ll>> adj(connect_nodes + 1);
for (int i = 0; i < connect_from.size(); i++) {
ll u = connect_from[i], v = connect_to[i];
adj[u].push_back(v);
adj[v].push_back(u);
}
auto dfs = [&](ll curr, ll prv, auto && dfs)->pair<ll, ll> {
ll tmp = connect_val[curr - 1];
pair<ll, ll> ans = {tmp, tmp};
for (auto& x : adj[curr]) {
if (x == prv) continue;
auto tmp = dfs(x, curr, dfs);
ans.second += tmp.second;
ans.first += tmp.first;
}
ans.first = max(ans.first, -k);
return ans;
};
return dfs(1, 0, dfs).first;
}
UI Path โ
ll getmaxfreq(int connect_nodes, vector<int> connect_from, vector<int> connect_to, vector<int> connect_val, int k) {
vector<vector<ll>> adj(connect_nodes + 1);
for (int i = 0; i < connect_from.size(); i++) {
ll u = connect_from[i], v = connect_to[i];
adj[u].push_back(v);
adj[v].push_back(u);
}
auto dfs = [&](ll curr, ll prv, auto && dfs)->pair<ll, ll> {
ll tmp = connect_val[curr - 1];
pair<ll, ll> ans = {tmp, tmp};
for (auto& x : adj[curr]) {
if (x == prv) continue;
auto tmp = dfs(x, curr, dfs);
ans.second += tmp.second;
ans.first += tmp.first;
}
ans.first = max(ans.first, -k);
return ans;
};
return dfs(1, 0, dfs).first;
}
UI Path โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐callprep.io is Hiring for the role of Backend Software Engineer (Intern)
Batch: 2022/2023/2024/2025
Stipend: 15,000 โ 20,000
Location: Remote
๐Apply Link: https://wellfound.com/l/2A8XfR
Batch: 2022/2023/2024/2025
Stipend: 15,000 โ 20,000
Location: Remote
๐Apply Link: https://wellfound.com/l/2A8XfR
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Fae is hiring for the role of SDE (Intern + PPO)
Batch: 2022/2023/2024/2025
Stipend: 20,000 โ 35,000
๐Apply Link: https://wellfound.com/l/2A99uN
Batch: 2022/2023/2024/2025
Stipend: 20,000 โ 35,000
๐Apply Link: https://wellfound.com/l/2A99uN
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐RoaDo is hiring for Software Developer Intern - Remote
Stipend: 20k-30k per month
๐Apply here: https://wellfound.com/jobs/2960128-software-developer-internship
Stipend: 20k-30k per month
๐Apply here: https://wellfound.com/jobs/2960128-software-developer-internship
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Zupee is hiring for SDET Intern
Batch: 2024, 2025
๐Apply here:https://linkedin.com/jobs/view/3888478071
Batch: 2024, 2025
๐Apply here:https://linkedin.com/jobs/view/3888478071
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Trane Technologies Hiring Fresher For Postgraduate Engineer Trainee
Experience: Fresher
CTC: 7 LPA
๐Apply Link: https://www.linkedin.com/jobs/view/3885140761
Experience: Fresher
CTC: 7 LPA
๐Apply Link: https://www.linkedin.com/jobs/view/3885140761
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Zocket
๐ Job Title: Frontend Intern
โ๐ป YOE: 2024 and 2025 grads
โก๏ธ Apply: https://zocket.keka.com/careers/jobdetails/50627
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Frontend Intern
โ๐ป YOE: 2024 and 2025 grads
โก๏ธ Apply: https://zocket.keka.com/careers/jobdetails/50627
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
#include<bits/stdc++.h>
using namespace std;
int f(int n) {
int ans = 1;
while (n != 1) {
if (n % 2 == 0) {
n /= 2;
} else {
n = 3 * n + 1;
}
ans++;
}
return ans;
}
int solve(int M) {
int maxi = 0;
int ans= 1;
for (int i = 1; i <= M; i++) {
int len = f(i);
if (len > maxi) {
maxi = len;
ans = i;
}
}
return ans;
}
int main() {
int m;
cin >> m;
cout << solve(m) << endl;
return 0;
}
Lost in the forest โ
using namespace std;
int f(int n) {
int ans = 1;
while (n != 1) {
if (n % 2 == 0) {
n /= 2;
} else {
n = 3 * n + 1;
}
ans++;
}
return ans;
}
int solve(int M) {
int maxi = 0;
int ans= 1;
for (int i = 1; i <= M; i++) {
int len = f(i);
if (len > maxi) {
maxi = len;
ans = i;
}
}
return ans;
}
int main() {
int m;
cin >> m;
cout << solve(m) << endl;
return 0;
}
Lost in the forest โ
public static List<Integer> solution(int[] forest, int bird) {
List<Integer> result = new ArrayList<>();
int length = 0;
boolean flyRight = true;
while (length < 100) {
int pos = bird;
int stickLength = 0;
if (flyRight) {
while (pos < forest.length && forest[pos] == 0) {
pos++;
}
} else {
while (pos >= 0 && forest[pos] == 0) {
pos--;
}
}
if (pos >= 0 && pos < forest.length) {
stickLength = forest[pos];
bird = pos;
result.add(pos);
forest[pos] = 0;
length += stickLength;
}
flyRight = !flyRight;
}
return result;
}.
Coinbase โ
List<Integer> result = new ArrayList<>();
int length = 0;
boolean flyRight = true;
while (length < 100) {
int pos = bird;
int stickLength = 0;
if (flyRight) {
while (pos < forest.length && forest[pos] == 0) {
pos++;
}
} else {
while (pos >= 0 && forest[pos] == 0) {
pos--;
}
}
if (pos >= 0 && pos < forest.length) {
stickLength = forest[pos];
bird = pos;
result.add(pos);
forest[pos] = 0;
length += stickLength;
}
flyRight = !flyRight;
}
return result;
}.
Coinbase โ
#include <stdio.h>
#include <stdlib.h>
int compare(const void *a, const void *b) {
return (*(int *)a - *(int *)b);
}
void findSegmentsAfterDestruction(int* houses, int housesSize, int* queries, int queriesSize, int* result) {
qsort(houses, housesSize, sizeof(int), compare);
int pos[100001] = {0};
for (int i = 0; i < housesSize; i++) {
pos[houses[i]] = 1;
}
int segments = 1;
for (int i = 1; i < housesSize; i++) {
if (houses[i] != houses[i-1] + 1) segments++;
}
for (int i = 0; i < queriesSize; i++) {
int house = queries[i];
pos[house] = 0;
int hasLeftNeighbor = house > 0 ? pos[house - 1] : 0;
int hasRightNeighbor = pos[house + 1];
if (hasLeftNeighbor && hasRightNeighbor) {
segments++;
} else if (!hasLeftNeighbor && !hasRightNeighbor) {
segments--;
}
result[i] = segments;
}
}
Coinbase โ
#include <stdlib.h>
int compare(const void *a, const void *b) {
return (*(int *)a - *(int *)b);
}
void findSegmentsAfterDestruction(int* houses, int housesSize, int* queries, int queriesSize, int* result) {
qsort(houses, housesSize, sizeof(int), compare);
int pos[100001] = {0};
for (int i = 0; i < housesSize; i++) {
pos[houses[i]] = 1;
}
int segments = 1;
for (int i = 1; i < housesSize; i++) {
if (houses[i] != houses[i-1] + 1) segments++;
}
for (int i = 0; i < queriesSize; i++) {
int house = queries[i];
pos[house] = 0;
int hasLeftNeighbor = house > 0 ? pos[house - 1] : 0;
int hasRightNeighbor = pos[house + 1];
if (hasLeftNeighbor && hasRightNeighbor) {
segments++;
} else if (!hasLeftNeighbor && !hasRightNeighbor) {
segments--;
}
result[i] = segments;
}
}
Coinbase โ