Healthy Robots โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
string intToBinary(int n) { string binary = ""; while (n > 0) { binary = to_string(n % 2) + binary; n /= 2; } return binary; } string maximumBinary(int numberofBits, int maximumOperationsAllowed, vector<string>& arr) { โฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Siemens Healthcare is hiring SDE Intern
For 2025, 2026 grads
https://jobs.siemens-healthineers.com/careers/job/563156119656293?hl=en&sourceType=PREMIUM_POST_SITE&domain=siemens.comµsite=siemens-healthineers
For 2025, 2026 grads
https://jobs.siemens-healthineers.com/careers/job/563156119656293?hl=en&sourceType=PREMIUM_POST_SITE&domain=siemens.comµsite=siemens-healthineers
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Qualcomm
๐ Job Title: Interim Engineering Intern (Software)
โ๐ป YOE: 2024 and 2025 grads (2026 grads can also try but not sure)
โก๏ธ Apply: https://careers.qualcomm.com/careers/job/446693743471
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Interim Engineering Intern (Software)
โ๐ป YOE: 2024 and 2025 grads (2026 grads can also try but not sure)
โก๏ธ Apply: https://careers.qualcomm.com/careers/job/446693743471
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Greenway Health is hiring Associate Software Engineer
For 2023, 2022 and 2021 grads
http://recruit.hirebridge.com/v3/careercenter/v2/details.aspx?jid=596726&cid=6709&locvalue=1174
For 2023, 2022 and 2021 grads
http://recruit.hirebridge.com/v3/careercenter/v2/details.aspx?jid=596726&cid=6709&locvalue=1174
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Zebra is hiring for Software Engineer 1 role (2022 and 2023 grads eligible)
Link to apply: https://careers.zebra.com/careers/job/343619763130-software-engineer-i-pune-india?domain=zebra.com
There are 2 more job ids you can try: 106118 and 106119
Link to apply: https://careers.zebra.com/careers/job/343619763130-software-engineer-i-pune-india?domain=zebra.com
There are 2 more job ids you can try: 106118 and 106119
Zebra
Software Engineer, I | Careers at Zebra
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Bizongo is hiring for Software Engineer 1 - Frontend
Expected Salary: 12-20 LPA
Experience: 0-2 years
Apply here:
https://careers.bizongo.com/bizongo/jobview/software-engineer-1-frontend-bengaluru-karnataka-india-2024052115291364
Expected Salary: 12-20 LPA
Experience: 0-2 years
Apply here:
https://careers.bizongo.com/bizongo/jobview/software-engineer-1-frontend-bengaluru-karnataka-india-2024052115291364
๐1
#include <bits/stdc++.h>
using namespace std;
int solve(string &str)
{
int ans = 0;
int j = str.size() - 1;
while (j >= 0)
{
if (str[j] == '1')
{
ans += 2;
}
else
{
ans += 1;
}
j--;
}
return ans;
}
int main()
{
string str;
cin >> str;
string str2;
bool flag = false;
for (int i = 0; i < str.size(); i++)
{
if (flag == false and str[i] == '1')
{
flag = true;
}
if (flag)
{
str2 += str[i];
}
}
int ans = solve(str2);
cout << ans - 1 << endl;
return 0;
}
Bentley โ
using namespace std;
int solve(string &str)
{
int ans = 0;
int j = str.size() - 1;
while (j >= 0)
{
if (str[j] == '1')
{
ans += 2;
}
else
{
ans += 1;
}
j--;
}
return ans;
}
int main()
{
string str;
cin >> str;
string str2;
bool flag = false;
for (int i = 0; i < str.size(); i++)
{
if (flag == false and str[i] == '1')
{
flag = true;
}
if (flag)
{
str2 += str[i];
}
}
int ans = solve(str2);
cout << ans - 1 << endl;
return 0;
}
Bentley โ
List<Integer> redIndex = new ArrayList<>();
for (int i = 0; i < s.length(); i++) {
if (s.charAt(i) == 'R') redIndex.add(i);
}
long res = 0;
int mid = redIndex.size() / 2;
for (int i = 0; i < redIndex.size(); i++) {
res += Math.abs(redIndex.get(mid) - redIndex.get(i)) - Math.abs(mid - i);
if (res > 1e9) {
return -1;
}
}
return (res > 1e9) ? -1 : (int) res;
}
Bentley โ
for (int i = 0; i < s.length(); i++) {
if (s.charAt(i) == 'R') redIndex.add(i);
}
long res = 0;
int mid = redIndex.size() / 2;
for (int i = 0; i < redIndex.size(); i++) {
res += Math.abs(redIndex.get(mid) - redIndex.get(i)) - Math.abs(mid - i);
if (res > 1e9) {
return -1;
}
}
return (res > 1e9) ? -1 : (int) res;
}
Bentley โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
#include <bits/stdc++.h> using namespace std; int solve(string &str) { int ans = 0; int j = str.size() - 1; while (j >= 0) { if (str[j] == '1') { ans += 2; } else { ans += 1;โฆ
def remove_leading_zero(xx: str) -> str:
letter = list(xx)
for i in range(len(letter)):
if letter[i] == '1':
break
letter[i] = ' '
ans = ''.join(letter)
return ans.strip()
def solution(S: str) -> int:
xy = remove_leading_zero(S)
zero_count = 0
one_count = 0
f = len(xy)
for i in range(f):
if xy[i] == '0':
zero_count += 1
else:
one_count += 1
return zero_count + (one_count - 1) * 2 + 1
Bentley โ
letter = list(xx)
for i in range(len(letter)):
if letter[i] == '1':
break
letter[i] = ' '
ans = ''.join(letter)
return ans.strip()
def solution(S: str) -> int:
xy = remove_leading_zero(S)
zero_count = 0
one_count = 0
f = len(xy)
for i in range(f):
if xy[i] == '0':
zero_count += 1
else:
one_count += 1
return zero_count + (one_count - 1) * 2 + 1
Bentley โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
RecruitWizer is hiring Full Stack Engineer Intern
Location - Remote
For 2024, 2025, 2026 grads
Apply - https://www.linkedin.com/jobs/view/3926632445
Location - Remote
For 2024, 2025, 2026 grads
Apply - https://www.linkedin.com/jobs/view/3926632445
Linkedin
6,000+ Full Stack Engineer jobs in India (404 new)
Todayโs top 6,000+ Full Stack Engineer jobs in India. Leverage your professional network, and get hired. New Full Stack Engineer jobs added daily.
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Free Certification Courses
1) JavaScript Fundamentals
2) SQL
3) Git and GitHub
4) HTML and CSS
5) Basic projects
This are the 5 courses which are available for free, and when you will join corporate this are the basic requirements.
Link: https://bit.ly/4avpEUz
Limited time ke liye hai, enroll as soon as possible (Isse pehle paid krde) ๐ค๐ค
1) JavaScript Fundamentals
2) SQL
3) Git and GitHub
4) HTML and CSS
5) Basic projects
This are the 5 courses which are available for free, and when you will join corporate this are the basic requirements.
Link: https://bit.ly/4avpEUz
Limited time ke liye hai, enroll as soon as possible (Isse pehle paid krde) ๐ค๐ค
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Accenture
๐ Job Title: Associate Software Engineer
โ๐ป YOE: 2023 and 2024 grads
โก๏ธ Apply: https://indiacampus.accenture.com/myzone/accenture/1/jobs/25377/job-details
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Associate Software Engineer
โ๐ป YOE: 2023 and 2024 grads
โก๏ธ Apply: https://indiacampus.accenture.com/myzone/accenture/1/jobs/25377/job-details
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
Accenture
Accenture | MyZone
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Swiggy | Associate Software Engineer | 0-2 YoE
https://www.linkedin.com/posts/ram-kumar-308122173_hiring-backend-freshers-activity-7199374981858758656-gu__?utm_source=share&utm_medium=member_android
https://www.linkedin.com/posts/ram-kumar-308122173_hiring-backend-freshers-activity-7199374981858758656-gu__?utm_source=share&utm_medium=member_android
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
ThermoFisher is hiring SDE-1 | Bangalore
For 2024, 2023 and 2022 grads
Apply - https://jsv3.recruitics.com/redirect?rx_cid=3436&rx_jobId=R-01244437-1&rx_url=https%3A%2F%2Fjobs.thermofisher.com%2Fglobal%2Fen%2Fjob%2FR-01244437%2FEngineer-I-Software%3Frx_ch%3Djobpost%26rx_job%3DR-01244437-1%26rx_medium%3Dpost%26rx_paid%3D0%26rx_r%3Dnone%26rx_source%3Dlinkedin%26rx_ts%3D20240523T084203Z%26rx_vp%3Dlinkedindirectindex%26utm_medium%3Dpost%26utm_source%3Drecruitics_linkedindirectindex&refId=34jd24
For 2024, 2023 and 2022 grads
Apply - https://jsv3.recruitics.com/redirect?rx_cid=3436&rx_jobId=R-01244437-1&rx_url=https%3A%2F%2Fjobs.thermofisher.com%2Fglobal%2Fen%2Fjob%2FR-01244437%2FEngineer-I-Software%3Frx_ch%3Djobpost%26rx_job%3DR-01244437-1%26rx_medium%3Dpost%26rx_paid%3D0%26rx_r%3Dnone%26rx_source%3Dlinkedin%26rx_ts%3D20240523T084203Z%26rx_vp%3Dlinkedindirectindex%26utm_medium%3Dpost%26utm_source%3Drecruitics_linkedindirectindex&refId=34jd24
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Wishlink is hiring Product Analyst
For 2022, 2023, 2024 grads
https://www.linkedin.com/posts/bhavit-arora_hiring-productanalyst-activity-7199337609205092352-w2Qh
For 2022, 2023, 2024 grads
https://www.linkedin.com/posts/bhavit-arora_hiring-productanalyst-activity-7199337609205092352-w2Qh
Linkedin
Bhavit Arora on LinkedIn: #hiring #productanalyst | 35 comments
#hiring #productanalyst
๐ Join Our Wishlink Team! ๐
We're on the lookout for a Product Analyst with 1-2 years of experience in data or product analysisโฆ | 35 comments on LinkedIn
๐ Join Our Wishlink Team! ๐
We're on the lookout for a Product Analyst with 1-2 years of experience in data or product analysisโฆ | 35 comments on LinkedIn
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
UBS is hiring for Software Engineer -Java Role
Apply link
https://jobs.ubs.com/TGnewUI/Search/home/HomeWithPreLoad?partnerid=25008&siteid=5012&PageType=JobDetails&jobid=300127#jobDetails=300127_5012
Apply link
https://jobs.ubs.com/TGnewUI/Search/home/HomeWithPreLoad?partnerid=25008&siteid=5012&PageType=JobDetails&jobid=300127#jobDetails=300127_5012