Python 3โ
IBM
IBM
#include <iostream>
#include <vector>
#include <climits>
using namespace std;
string countSignals(const vector<int>& frequencies, const vector<vector<int>>& filterRanges) {
int ans = 0;
int l = INT_MIN;
int r = INT_MAX;
for (const auto& filter : filterRanges) {
l = max(l, filter[0]);
r = min(r, filter[1]);
}
for (int frequency : frequencies) {
if (l <= frequency && frequency <= r) {
ans += 1;
}
}
return to_string(ans);
}
Signal Filter โ
#include <vector>
#include <climits>
using namespace std;
string countSignals(const vector<int>& frequencies, const vector<vector<int>>& filterRanges) {
int ans = 0;
int l = INT_MIN;
int r = INT_MAX;
for (const auto& filter : filterRanges) {
l = max(l, filter[0]);
r = min(r, filter[1]);
}
for (int frequency : frequencies) {
if (l <= frequency && frequency <= r) {
ans += 1;
}
}
return to_string(ans);
}
Signal Filter โ
#include <iostream>
#include <vector>
using namespace std;
long long totalProduction(const string& numberEmbossed) {
int n = numberEmbossed.length();
vector<long long> dp(n + 1, 0);
for (int i = 1; i <= n; ++i) {
dp[i] = dp[i - 1] * 10 + (numberEmbossed[i - 1] - '0') * i;
}
long long totalSweets = 0;
for (int i = 1; i <= n; ++i) {
totalSweets += dp[i];
}
return totalSweets;
}
DE Shaw โ
#include <vector>
using namespace std;
long long totalProduction(const string& numberEmbossed) {
int n = numberEmbossed.length();
vector<long long> dp(n + 1, 0);
for (int i = 1; i <= n; ++i) {
dp[i] = dp[i - 1] * 10 + (numberEmbossed[i - 1] - '0') * i;
}
long long totalSweets = 0;
for (int i = 1; i <= n; ++i) {
totalSweets += dp[i];
}
return totalSweets;
}
DE Shaw โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Principal is Hiring !!
Role: Software Engineer
Eligibility: Graduate
Expected Salary: 9-12 LPA
๐Apply here: https://careers.principal.com/in/jobs/42115/job
Role: Software Engineer
Eligibility: Graduate
Expected Salary: 9-12 LPA
๐Apply here: https://careers.principal.com/in/jobs/42115/job
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Blue Ripples Technologies is Hiring !!
Role - Software Developer- Intern
Batch - 2022/2023/2024
๐Apply Link - https://www.linkedin.com/jobs/view/3850505983
Role - Junior React Native Developer
Batch - 2022/2023/2024
๐Apply Link - https://www.linkedin.com/jobs/view/3850512167
๐Philips is Hiring !!
Role: Diversity Tech Intern
Location: Bangalore / Pune
๐Apply Link: https://philips.wd3.myworkdayjobs.com/jobs-and-careers/job/Bangalore/Diversity-Tech-Intern-Hiring_522112
Role - Software Developer- Intern
Batch - 2022/2023/2024
๐Apply Link - https://www.linkedin.com/jobs/view/3850505983
Role - Junior React Native Developer
Batch - 2022/2023/2024
๐Apply Link - https://www.linkedin.com/jobs/view/3850512167
๐Philips is Hiring !!
Role: Diversity Tech Intern
Location: Bangalore / Pune
๐Apply Link: https://philips.wd3.myworkdayjobs.com/jobs-and-careers/job/Bangalore/Diversity-Tech-Intern-Hiring_522112
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Michelin is Hiring !!
Role: Software Engineer
Expected Salary: 8-15 LPA
๐Apply here: https://michelinhr.wd3.myworkdayjobs.com/Michelin/job/Pune/Software-Engineer_R-2024008293-1
Role: Software Engineer
Expected Salary: 8-15 LPA
๐Apply here: https://michelinhr.wd3.myworkdayjobs.com/Michelin/job/Pune/Software-Engineer_R-2024008293-1
Myworkdayjobs
Software Engineer
Software Engineer - - - - - - - - - - - - KEY EXPECTED ACHIEVEMENTS Following Lean & Agile methods, quality and security (SecByD) rules, and state of the art of DevOps practices under the supervision of senior and lead engineer: Software, creating businessโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
freshershiring
*Management Trainees/ Internship* #punejobs
-2 postions.
*MBA / BBA/ similar.*
Area of exposure :- Business Administration, Business Development
Marketing
Team /people Management,
Techno-Commercial,
Opportunity to work on business strategies.
*_Skills_*
- MS office with good knowledge of Excel and PowerPoint
Photoshop and similar skills added is advantage.
Good computer literacy
- Good communication skill
- Presentable,
- Risktaker , Leadership qualities
- Good analytical skills
- Innovative and Logical thinking ability
Shall be Optimistic with realistic approach
- Result Oriented
- A team player
- Learning approach
Stipend upto 1.2 LPA
*HO Location - Baner Pune*
( _opportunity to work with top management and to work in multidomain, diversified Functionalites_ )
Interested candidates please share your resume on
*hr@healthkattaa.com*
*Management Trainees/ Internship* #punejobs
-2 postions.
*MBA / BBA/ similar.*
Area of exposure :- Business Administration, Business Development
Marketing
Team /people Management,
Techno-Commercial,
Opportunity to work on business strategies.
*_Skills_*
- MS office with good knowledge of Excel and PowerPoint
Photoshop and similar skills added is advantage.
Good computer literacy
- Good communication skill
- Presentable,
- Risktaker , Leadership qualities
- Good analytical skills
- Innovative and Logical thinking ability
Shall be Optimistic with realistic approach
- Result Oriented
- A team player
- Learning approach
Stipend upto 1.2 LPA
*HO Location - Baner Pune*
( _opportunity to work with top management and to work in multidomain, diversified Functionalites_ )
Interested candidates please share your resume on
*hr@healthkattaa.com*
๐1
#include<bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
while(t--) {
string s;
cin >> s;
int chairs = 0, maxi = 0;
for(char c : s) {
if(c == 'C' || c == 'U') {
chairs++;
maxi = max(maxi, chairs);
} else if(c == 'R' || c == 'L') {
chairs--;
}
}
cout << maxi << "\n";
}
return 0;
}
Chairs Requirement โ
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
while(t--) {
string s;
cin >> s;
int chairs = 0, maxi = 0;
for(char c : s) {
if(c == 'C' || c == 'U') {
chairs++;
maxi = max(maxi, chairs);
} else if(c == 'R' || c == 'L') {
chairs--;
}
}
cout << maxi << "\n";
}
return 0;
}
Chairs Requirement โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <cmath>
struct Point {
double x, y;
};
double area(Point p1, Point p2, Point p3) {
return std::abs((p1.x * (p2.y - p3.y) + p2.x * (p3.y - p1.y) + p3.x * (p1.y - p2.y)) / 2.0);
}
bool isInside(Point a, Point b, Point c, Point p) {
double A = area(a, b, c);
double A1 = area(b, c, p);
double A2 = area(a, c, p);
double A3 = area(b, a, p);
return A == A1 + A2 + A3;
}
int pointsBelong(int x1, int y1, int x2, int y2, int x3, int y3, int xp, int yp, int xq, int yq) {
Point a = {static_cast<double>(x1), static_cast<double>(y1)};
Point b = {static_cast<double>(x2), static_cast<double>(y2)};
Point c = {static_cast<double>(x3), static_cast<double>(y3)};
Point p = {static_cast<double>(xp), static_cast<double>(yp)};
Point q = {static_cast<double>(xq), static_cast<double>(yq)};
double ab = std::sqrt(std::pow(a.x - b.x, 2) + std::pow(a.y - b.y, 2));
double bc = std::sqrt(std::pow(c.x - b.x, 2) + std::pow(c.y - b.y, 2));
double ac = std::sqrt(std::pow(a.x - c.x, 2) + std::pow(a.y - c.y, 2));
int output = 0;
if (ab + bc > ac && bc + ac > ab && ab + ac > bc) {
if (isInside(a, b, c, p) && isInside(a, b, c, q)) {
output = 3;
} else if (isInside(a, b, c, p)) {
output = 1;
} else if (isInside(a, b, c, q)) {
output = 2;
} else {
output = 4;
}
}
return output;
}
Do they Belong โ
#include <cmath>
struct Point {
double x, y;
};
double area(Point p1, Point p2, Point p3) {
return std::abs((p1.x * (p2.y - p3.y) + p2.x * (p3.y - p1.y) + p3.x * (p1.y - p2.y)) / 2.0);
}
bool isInside(Point a, Point b, Point c, Point p) {
double A = area(a, b, c);
double A1 = area(b, c, p);
double A2 = area(a, c, p);
double A3 = area(b, a, p);
return A == A1 + A2 + A3;
}
int pointsBelong(int x1, int y1, int x2, int y2, int x3, int y3, int xp, int yp, int xq, int yq) {
Point a = {static_cast<double>(x1), static_cast<double>(y1)};
Point b = {static_cast<double>(x2), static_cast<double>(y2)};
Point c = {static_cast<double>(x3), static_cast<double>(y3)};
Point p = {static_cast<double>(xp), static_cast<double>(yp)};
Point q = {static_cast<double>(xq), static_cast<double>(yq)};
double ab = std::sqrt(std::pow(a.x - b.x, 2) + std::pow(a.y - b.y, 2));
double bc = std::sqrt(std::pow(c.x - b.x, 2) + std::pow(c.y - b.y, 2));
double ac = std::sqrt(std::pow(a.x - c.x, 2) + std::pow(a.y - c.y, 2));
int output = 0;
if (ab + bc > ac && bc + ac > ab && ab + ac > bc) {
if (isInside(a, b, c, p) && isInside(a, b, c, q)) {
output = 3;
} else if (isInside(a, b, c, p)) {
output = 1;
} else if (isInside(a, b, c, q)) {
output = 2;
} else {
output = 4;
}
}
return output;
}
Do they Belong โ
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Rockwell Automation is hiring for Multiple Roles
Expected Salary: 4-5 LPA
๐Apply here for GET - Graduate Engineer Trainee: https://rockwellautomation.wd1.myworkdayjobs.com/en-US/External_Rockwell_Automation/job/Pune-India/GET---Graduate-Engineer-Trainee_R24-1807
Apply here for Trainee Software Developer:
https://rockwellautomation.wd1.myworkdayjobs.com/en-US/External_Rockwell_Automation/job/Pune-India/Trainee---Software-Engineer_R24-2007
Expected Salary: 4-5 LPA
๐Apply here for GET - Graduate Engineer Trainee: https://rockwellautomation.wd1.myworkdayjobs.com/en-US/External_Rockwell_Automation/job/Pune-India/GET---Graduate-Engineer-Trainee_R24-1807
Apply here for Trainee Software Developer:
https://rockwellautomation.wd1.myworkdayjobs.com/en-US/External_Rockwell_Automation/job/Pune-India/Trainee---Software-Engineer_R24-2007
๐2โค1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ECI is Hiring !!
Role: Associate Software Developer
Expected Salary: 4-8 LPA
๐Apply here: https://recruiting.ultipro.com/EZE1000EZECI/JobBoard/97cf9268-5a5a-480b-b7b6-5ed694da88c5/OpportunityDetail?opportunityId=39c667cc-903d-493f-869c-4a64bec58a95
๐Seagate is Hiring !!
Role: Intern
Stipend: 30k-40k per month
๐Apply here: https://seagatecareers.com/job/Pune-Intern-VLSI-DV/1140206700/
๐The PRID is Hiring !!
Role: Software Development Intern- Fresher
๐Apply here: https://linkedin.com/jobs/view/3846824688/
Role: Associate Software Developer
Expected Salary: 4-8 LPA
๐Apply here: https://recruiting.ultipro.com/EZE1000EZECI/JobBoard/97cf9268-5a5a-480b-b7b6-5ed694da88c5/OpportunityDetail?opportunityId=39c667cc-903d-493f-869c-4a64bec58a95
๐Seagate is Hiring !!
Role: Intern
Stipend: 30k-40k per month
๐Apply here: https://seagatecareers.com/job/Pune-Intern-VLSI-DV/1140206700/
๐The PRID is Hiring !!
Role: Software Development Intern- Fresher
๐Apply here: https://linkedin.com/jobs/view/3846824688/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Arisen Technologies is Hiring !!
Role: Software Developer- Fresher
๐Apply here: https://arisen.in/current-openings/fresher-software-developer/
Role: Software Developer- Fresher
๐Apply here: https://arisen.in/current-openings/fresher-software-developer/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Dunnhumby is Hiring !!
Role: Software Engineer
Expected Salary: 6-12 LPA
๐Apply here: https://dunnhumby.com/jobs/?gh_jid=5908575003
Role: Software Engineer
Expected Salary: 6-12 LPA
๐Apply here: https://dunnhumby.com/jobs/?gh_jid=5908575003
dunnhumby
Jobs
dunnhumby isnโt most companies. And youโre not most people. Most companies merely meet expectations. dunnhumby defies them, using big data, deep expertise and AI driven platforms to decode human behaviour and habits.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐GlobalFoundries is Hiring !!
Role: Intern -Information Security Analyst
Stipend: 3 - 5 LPA
๐Apply here: https://globalfoundries.wd1.myworkdayjobs.com/en-US/External/job/IND---Karnataka---BANGALORE/Intern--Information-Security-Analyst_JR-2400559-1
Role: Intern -Information Security Analyst
Stipend: 3 - 5 LPA
๐Apply here: https://globalfoundries.wd1.myworkdayjobs.com/en-US/External/job/IND---Karnataka---BANGALORE/Intern--Information-Security-Analyst_JR-2400559-1
Myworkdayjobs
Intern -Information Security Analyst
Title: Intern - Information Security Analyst About GlobalFoundries GlobalFoundries is a leading full-service semiconductor foundry providing a unique combination of design, development, and fabrication services to some of the worldโs most inspired technologyโฆ