Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: DoSelect (Infoedge)
Different intern roles are there (6 months)
Apply: https://docs.google.com/forms/d/e/1FAIpQLSeyzdHcvzDKtq510sRy6usSsDut4ZLIeQKWeKK88S7Gh8Vusw/viewform
Different intern roles are there (6 months)
Apply: https://docs.google.com/forms/d/e/1FAIpQLSeyzdHcvzDKtq510sRy6usSsDut4ZLIeQKWeKK88S7Gh8Vusw/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : CoinDCX
Challenge Name : Unfold Hackathon 2024
Eligibility : All College Students + Working Professionals
Prizes : Bounties worth $100K + opportunities at CoinDCX and various companies
Link : https://bit.ly/coindcxunfold
Challenge Name : Unfold Hackathon 2024
Eligibility : All College Students + Working Professionals
Prizes : Bounties worth $100K + opportunities at CoinDCX and various companies
Link : https://bit.ly/coindcxunfold
unfold2024.devfolio.co
Unfold 2024 | Devfolio
Build for web3. Innovate the future.
๐คฎ1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
#include<bits/stdc++.h>
using namespace std;
long long m = 100000000000000000;
int minOperations(vector<int> &arr)
{
int n=arr.size();
if(n == 1) return 0;
if(n == 2) return arr[0]+arr[1]<0;
int cnt = 0;
long long prev,curr,next;
prev = m;
curr = arr[0];
next = arr[1];
int ind = 1;
while(ind<n)
{
if(prev+curr+next<0 || curr+next<0)
{
prev = curr;
curr = m;
cnt++;
}else{
prev = curr;
curr = next;
}
if(ind<n) next = arr[ind+1];
ind++;
}
return cnt;
}
UKG โ
Make the Array Positive
def find_consecutive_sets(n):
result = []
count = 0
for i in range(1, n//2 + 2):
sum_ = 0
temp = []
for j in range(i, n + 1):
sum_ += j
temp.append(j)
if sum_ == n:
result.append(temp[:])
count += 1
break
elif sum_ > n:
break
result.reverse()
for seq in result:
print(" ".join(map(str, seq)))
print(count)
n = int(input())
find_consecutive_sets(n)
Deloitte โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐BNP Paribas is hiring for Software Engineer - Java
Experience: 0 - 1 years
Expected Salary: 6-12 LPA
Apply here: https://group.bnpparibas/en/careers/job-offer/software-engineer-java?SRC=LINKEDIN
๐Apna is hiring for Software Engineer
Experience: 0 - 1 years
Expected Salary: 15-30 LPA
Apply here: https://www.linkedin.com/jobs/view/4073181320/?alternateChannel=search
๐EazyDiner is hiring for DevOps Engineer
Experience: 0 - 1 years
Expected Salary: 6-12 LPA
Apply here: https://www.linkedin.com/jobs/view/4074724831/?alternateChannel=search
Experience: 0 - 1 years
Expected Salary: 6-12 LPA
Apply here: https://group.bnpparibas/en/careers/job-offer/software-engineer-java?SRC=LINKEDIN
๐Apna is hiring for Software Engineer
Experience: 0 - 1 years
Expected Salary: 15-30 LPA
Apply here: https://www.linkedin.com/jobs/view/4073181320/?alternateChannel=search
๐EazyDiner is hiring for DevOps Engineer
Experience: 0 - 1 years
Expected Salary: 6-12 LPA
Apply here: https://www.linkedin.com/jobs/view/4074724831/?alternateChannel=search
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Motorola Solutions is hiring!
Role: Full Stack Developer
Salary: 7 - 10 LPA (Expected)
Experience: Freshers (0 - 2 Years)
Location: Bangalore, India
๐ปApply: https://motorolasolutions.wd5.myworkdayjobs.com/en-US/Careers/job/Software-Engineer_R46669
Role: Full Stack Developer
Salary: 7 - 10 LPA (Expected)
Experience: Freshers (0 - 2 Years)
Location: Bangalore, India
๐ปApply: https://motorolasolutions.wd5.myworkdayjobs.com/en-US/Careers/job/Software-Engineer_R46669
Myworkdayjobs
MOTOROLA SOLUTIONS OVERVIEW At Motorola Solutions, we believe that everything starts with our people. Weโre a global close-knit community, united by the relentless pursuit to help keep people safer everywhere. Our critical communications, video security andโฆ
#include <bits/stdc++.h>
using namespace std;
long long getMaximumSum(vector<int>& no_adjacent, vector<int>& one_adjacent, vector<int>& both_adjacent) {
int n = no_adjacent.size();
vector<vector<long long>> dp(n, vector<long long>(3, 0));
dp[0][0] = no_adjacent[0];
dp[0][1] = one_adjacent[0];
dp[0][2] = 0;
for (int i = 1; i < n; ++i) {
dp[i][0] = max({dp[i - 1][0], dp[i - 1][1], dp[i - 1][2]}) + no_adjacent[i];
dp[i][1] = max(dp[i - 1][0], dp[i - 1][2]) + one_adjacent[i];
dp[i][2] = dp[i - 1][1] + both_adjacent[i];
}
return max({dp[n - 1][0], dp[n - 1][1], dp[n - 1][2]});
}
Meesho โ
๐1
int beauty( const vector<int> &A )
{
vector<int> B( 1 + A.size(), 0 );
int N = A.size();
for ( int pos = 1; pos <= N; pos++ )
{
auto B_old = B;
int a = A[pos-1]; // index is (position - 1)
for ( int length = 1; length <= pos; length++ )
{
B[length] = max( B_old[length-1] + ( a == length ), B_old[length] );
}
}
return *max_element( B.begin(), B.end() );
}
Meesho โ
{
vector<int> B( 1 + A.size(), 0 );
int N = A.size();
for ( int pos = 1; pos <= N; pos++ )
{
auto B_old = B;
int a = A[pos-1]; // index is (position - 1)
for ( int length = 1; length <= pos; length++ )
{
B[length] = max( B_old[length-1] + ( a == length ), B_old[length] );
}
}
return *max_element( B.begin(), B.end() );
}
Meesho โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Drop your resume to hr@alwin.io else to the WhatsApp number 6382359432.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Trainee Cyber Security - Openings: 6
๐ Requirements:
- Fresh B. Tech Graduates with Knowledge of Cyber Security
- Good communication skills
- Willing to Work from Office / Open to Shifts
๐ง Send your CV to Bhawana.Sharma@rsystems.com
๐ Requirements:
- Fresh B. Tech Graduates with Knowledge of Cyber Security
- Good communication skills
- Willing to Work from Office / Open to Shifts
๐ง Send your CV to Bhawana.Sharma@rsystems.com