Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Adani AI Labs is hiring for Frontend Developer
Experience: 0 - 1 year
Expected Stipend: 4-8 LPA
Apply here: https://eibd.fa.em2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/4984
Experience: 0 - 1 year
Expected Stipend: 4-8 LPA
Apply here: https://eibd.fa.em2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/4984
Adani Career Site
Frontend Developer (Adani AI Labs)
Adani is seeking a highly skilled Frontend Developer with 3-8 years of experience in the Artificial Intelligence industry to join our dynamic team in Kolkata. The ideal candidate will have a strong foundation in HTML, CSS, and JavaScript, HTML, React frameworkโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Leap Wallet is hiring for Software Development Engineer Intern - Frontend
Experience: 0 - 1 year
Expected Stipend: 4-8 LPA
Apply here: https://wellfound.com/jobs/2946147-software-development-engineer-intern-frontend
Experience: 0 - 1 year
Expected Stipend: 4-8 LPA
Apply here: https://wellfound.com/jobs/2946147-software-development-engineer-intern-frontend
Wellfound
Software Development Engineer Intern - Frontend at Leap Wallet โข India โข Remote (Work from Home)
Leap Wallet is hiring a Software Development Engineer Intern - Frontend in India - Apply now on Wellfound!
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
S&P Global is hiring Software Engineer
For 2025 grads
Location: Bangalore
https://careers.spglobal.com/jobs/309607?lang=en-us
For 2025 grads
Location: Bangalore
https://careers.spglobal.com/jobs/309607?lang=en-us
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Rupeek
Role: IT Intern
Batch: 2024 passouts
Apply Link: https://docs.google.com/forms/d/e/1FAIpQLSd4rVkUm5VEJQQNi4LWEI9NpUCyy6Ff8i45Q5ENiitVpTKDMQ/viewform
Note: Apply ASAP! It can get closed anytime soon.
Make Best use of this opportunity
Role: IT Intern
Batch: 2024 passouts
Apply Link: https://docs.google.com/forms/d/e/1FAIpQLSd4rVkUm5VEJQQNi4LWEI9NpUCyy6Ff8i45Q5ENiitVpTKDMQ/viewform
Note: Apply ASAP! It can get closed anytime soon.
Make Best use of this opportunity
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company name: Spyne
Role: SDE Intern
Batch Eligible: 2025 passouts
Location: Gurgaon, India
https://spyneai.keka.com/careers/jobdetails/45578
Role: SDE Intern
Batch Eligible: 2025 passouts
Location: Gurgaon, India
https://spyneai.keka.com/careers/jobdetails/45578
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐FIS Global Hiring Interns
Batch: 2025 Passouts
๐ปApply Link: https://careers.fisglobal.com/us/en/job/JR0285527/Intern-IT-Trainee-FIS-University-Program-2025
Batch: 2025 Passouts
๐ปApply Link: https://careers.fisglobal.com/us/en/job/JR0285527/Intern-IT-Trainee-FIS-University-Program-2025
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Siemens is hiring!
Position: Graduate Trainee Engineer
Experience: Freshers
Location: Bangalore, India (Hybrid)
๐ปApply Now: https://jobs.siemens.com/careers/job/563156121684879?microsite=siemens.com
Position: Graduate Trainee Engineer
Experience: Freshers
Location: Bangalore, India (Hybrid)
๐ปApply Now: https://jobs.siemens.com/careers/job/563156121684879?microsite=siemens.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Block Track is hiring for Front End Developer Intern
Experience: 0 - 1 year
Apply here: https://www.linkedin.com/jobs/view/4077672784/?alternateChannel=search
๐ShopBack is hiring for Software Engineer Intern
Experience: 0 - 1 year
Expected Stipend: 7-12 LPA
Apply here: https://jobs.lever.co/shopback-2/6448fe88-263c-4266-a0c2-286bf9229c3f/
Experience: 0 - 1 year
Apply here: https://www.linkedin.com/jobs/view/4077672784/?alternateChannel=search
๐ShopBack is hiring for Software Engineer Intern
Experience: 0 - 1 year
Expected Stipend: 7-12 LPA
Apply here: https://jobs.lever.co/shopback-2/6448fe88-263c-4266-a0c2-286bf9229c3f/
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
long howManySwaps(vector<int> arr) {
auto mergeAndCount = [](vector<int>& arr, int left, int mid, int right) -> long {
vector<int> temp(right - left + 1);
int i = left, j = mid + 1, k = 0;
long swaps = 0;
while (i <= mid && j <= right) {
if (arr[i] <= arr[j]) {
temp[k++] = arr[i++];
} else {
temp[k++] = arr[j++];
swaps += (mid - i + 1);
}
}
while (i <= mid) temp[k++] = arr[i++];
while (j <= right) temp[k++] = arr[j++];
for (int p = 0; p < temp.size(); p++) {
arr[left + p] = temp[p];
}
return swaps;
};
function<long(vector<int>&, int, int)> mergeSortAndCount = [&](vector<int>& arr, int left, int right) -> long {
long swaps = 0;
if (left < right) {
int mid = left + (right - left) / 2;
swaps += mergeSortAndCount(arr, left, mid);
swaps += mergeSortAndCount(arr, mid + 1, right);
swaps += mergeAndCount(arr, left, mid, right);
}
return swaps;
};
return mergeSortAndCount(arr, 0, arr.size() - 1);
}
Wayfair โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Swiggy
Role : Associate Software Engineer
Batch : 2024/2023/2022 passouts
Link : https://docs.google.com/forms/d/1E029cjZV8Em6zPC0YJYAMDDP_NjPtDkwufqHfvkVG2E/viewform?edit_requested=true&pli=1
Role : Associate Software Engineer
Batch : 2024/2023/2022 passouts
Link : https://docs.google.com/forms/d/1E029cjZV8Em6zPC0YJYAMDDP_NjPtDkwufqHfvkVG2E/viewform?edit_requested=true&pli=1
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
int n; cin >> n;
vector<int> arr(n);
for (int i = 0; i < n; i++) {
cin >> arr[i];
}
vector<vector<int>>dp(n + 2, vector<int>(2));
dp[1][1] = arr[0];
for (int i = 2; i <= n; ++i)
{
dp[i][0] = max({dp[i - 1][1], dp[i - 1][0]});
dp[i][1] = arr[i - 1] + max({dp[i - 1][0], dp[i - 2][0], dp[i - 2][1]});
}
cout << max(dp[n][1], dp[n][0]) << endl;
return 0;
}
Kickdrum โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
using namespace std;
int solution(int n,vector<int>&a){
vector<int> p,neg;
for(int i = 0; i < n; i++) {
if(a[i] >= 0) {
p.push_back(a[i]);
} else {
neg.push_back(abs(a[i]));
}
}
sort(p.begin(), p.end());
sort(neg.begin(), neg.end());
int ans1=0;
int prev=0;
int cnt=n;
for(auto ele:p){
int dis=ele-prev;
ans1+=dis*cnt;
prev=ele;
cnt--;
}
prev=0;
if(p.size()>0){
int len2=p.size();
prev=p[len2-1];
}
for(int i=0;i<neg.size();i++){
if(i==0){
int dis= prev + neg[i];
ans1+=dis*cnt;
cnt--;
prev=neg[i];
continue;
}
int dis=neg[i]-prev;
ans1+=dis*cnt;
prev=neg[i];
cnt--;
}
cnt=n;
int ans2=0;
prev=0;
for(auto ele:neg){
int dis=ele-prev;
ans2+=dis*cnt;
prev=ele;
cnt--;
}
for(int i=0;i<p.size();i++){
if(i==0){
int dis= prev + p[i];
ans2+=dis*cnt;
cnt--;
prev=p[i];
continue;
}
int dis=p[i]-prev;
ans2+=dis*cnt;
prev=p[i];
cnt--;
}
return min(ans1,ans2);
}
int main() {
int n;
cin >> n;
vector<int> a(n);
for (int i = 0; i < n; i++) {
cin >> a[i];
}
cout << solution(n, a) << endl;
return 0;
}
kickdrum โ
#include <bits/stdc++.h>
using namespace std;
int findMinimumMoves(int C, int N) {
vector<vector<int>> dp(C + 1, vector<int>(N + 1, 0));
for (int n = 0; n <= N; n++) dp[1][n] = n;
for (int c = 1; c <= C; c++) dp[c][0] = 0;
for (int c = 2; c <= C; c++) {
for (int n = 1; n <= N; n++) {
int low = 1, high = n, result = n;
while (low <= high) {
int mid = (low + high) / 2;
int breakCase = dp[c-1][mid-1];
int noBreakCase = dp[c][n-mid];
int worstCase = 1 + max(breakCase, noBreakCase);
result = min(result, worstCase);
if (breakCase > noBreakCase) {
high = mid - 1;
} else {
low = mid + 1;
}
}
dp[c][n] = result;
}
}
return dp[C][N];
}
int main() {
int C, N;
cin >> C >> N;
cout << findMinimumMoves(C, N) << endl;
return 0;
}
Kickdrum โ
#include<cstdio>
const int N=2e5+1;
long long r;
int i,j,k,n,a[N],f[N][2];
int t,en[N],fa[N],nxt[N];
void dfs(int u,int p)
{
int w=a[u]>>k&1,i=fa[u],v;
for(f[u][w]=1,f[u][w^1]=0;i;i=nxt[i])if((v=en[i])!=p)
{
dfs(v,u);
r+=(1ll*f[v][0]*f[u][1]+1ll*f[v][1]*f[u][0])<<k;
f[u][1]+=f[v][w^1],f[u][0]+=f[v][w];
}
}
int main()
{
scanf("%d",&n);
for(i=1;i<=n;r+=a[i++])
scanf("%d",a+i);
for(k=1;k<n;++k)
{
scanf("%d%d",&i,&j);
en[++t]=j,nxt[t]=fa[i],fa[i]=t;
en[++t]=i,nxt[t]=fa[j],fa[j]=t;
}
for(k=19;~k;--k)dfs(1,0);
printf("%I64d",r);
}
Titan โ