Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Akshat Atray on LinkedIn: ๐จ Referral Alert ๐จ: Exciting Internship Opportunity at Cisco India UHR!โฆ
๐จ Referral Alert ๐จ: Exciting Internship Opportunity at Cisco India UHR!
๐ข Position: Software Engineer โ Network/Embedded/Application Developmentโฆ
๐ข Position: Software Engineer โ Network/Embedded/Application Developmentโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
X (formerly Twitter)
Divyangi Raghav (@DivzzTwt) on X
ACCEPTING REFERRALS !
@Cisco is hiring 2026 grads as Softw Engineer interns for the summer of 2025. Comment/DM your updated resume as a g-drive link, with phone number and LinkedIn if you have relevant skills, and graduate in 2026. Write 2 lines on whyโฆ
@Cisco is hiring 2026 grads as Softw Engineer interns for the summer of 2025. Comment/DM your updated resume as a g-drive link, with phone number and LinkedIn if you have relevant skills, and graduate in 2026. Write 2 lines on whyโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
โค1
vector<int>solution(vector<vector<int>>lamps,vector<int>points)
{
map<int,int>mp;
for(auto &ele:lamps)
{
mp[ele[0]]++;
mp[ele[1]+1]--;
}
map<int,int>temp;
int ct=0;
for(int i=1;i<=1e5+1;i++)
{
ct+=mp[i];
temp[i]=ct;
}
vector<int>ans;
for(int i=0;i<points.size();i++)
{
ans.push_back(temp[points[i]]);
}
return ans;
}
Visa โ
๐ฅ1
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
vector<int>solution(vector<vector<int>>lamps,vector<int>points) { map<int,int>mp; for(auto &ele:lamps) { mp[ele[0]]++; mp[ele[1]+1]--; } map<int,int>temp; int ct=0; for(int i=1;i<=1e5+1;i++) { ct+=mp[i];โฆ
vector<int> solution(vector<vector<int>>& lamps, vector<int>& points) {
vector<pair<int, int>> events;
for (const auto& lamp : lamps) {
events.push_back({lamp[0], 1});
events.push_back({lamp[1] + 1, -1});
}
sort(events.begin(), events.end());
vector<pair<int, int>> indexed_points;
for (int i = 0; i < points.size(); ++i) {
indexed_points.push_back({points[i], i});
}
sort(indexed_points.begin(), indexed_points.end());
vector<int> result(points.size());
int active_lamps = 0;
int event_index = 0;
for (const auto& [point, index] : indexed_points) {
while (event_index < events.size() && events[event_index].first <= point) {
active_lamps += events[event_index].second;
++event_index;
}
result[index] = active_lamps;
}
return result;
}
Visa โ
๐ฅ1
def Solve(N, K, A):
remaining = list(range(1, N+1))
time = 0
i = 0
while time < K and remaining:
if A[remaining[i] - 1] > 0:
A[remaining[i] - 1] -= 1
time += 1
if A[remaining[i] - 1] == 0:
remaining.pop(i)
i -= 1
i = (i + 1) % len(remaining) if remaining else 0
return remaining if remaining else [-1]
Egynte 2
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
def Solve(N, K, A): remaining = list(range(1, N+1)) time = 0 i = 0 while time < K and remaining: if A[remaining[i] - 1] > 0: A[remaining[i] - 1] -= 1 time += 1 if A[remaining[i]โฆ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
int getMaximumDistance(vector<int> location, int k)
{
int n = location.size();
sort(location.begin(), location.end());
int maxi = location[n - 1] - location[0];
int left = 0, right = maxi;
while (left < right)
{
int mid = left + (right - left) / 2;
int center = 1;
int prev = location[0];
for (int i = 1; i < n; i++)
{
if (location[i] - prev > mid * 2)
{
center++;
prev = location[i];
}
}
if (center <= k)
{
right = mid;
}
else
{
left = mid + 1;
}
}
return left;
}
{
int n = location.size();
sort(location.begin(), location.end());
int maxi = location[n - 1] - location[0];
int left = 0, right = maxi;
while (left < right)
{
int mid = left + (right - left) / 2;
int center = 1;
int prev = location[0];
for (int i = 1; i < n; i++)
{
if (location[i] - prev > mid * 2)
{
center++;
prev = location[i];
}
}
if (center <= k)
{
right = mid;
}
else
{
left = mid + 1;
}
}
return left;
}
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Wobot.ai is hiring for Frontend Developer (ReactJS)
Experience: 0 - 1 year's
Expected Salary: 6-12 LPA
Apply here:
https://in.talent.com/view?id=0ba4247a909d
Experience: 0 - 1 year's
Expected Salary: 6-12 LPA
Apply here:
https://in.talent.com/view?id=0ba4247a909d
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Atyeti | Recruitment | Software Trainee
Greetings from Atyeti !!!
We are excited to announce openings for various positions at our locations in Pune, Hyderabad, and Chennai. Please review the job descriptions carefully before completing the application form.
Pass out students of 2023 - 2024 year only.
https://docs.google.com/forms/d/e/1FAIpQLScaLiUNk70YIjAfzNnh2lytFXPWIBLhxGAtyt7n6M7a00eh9Q/viewform
Greetings from Atyeti !!!
We are excited to announce openings for various positions at our locations in Pune, Hyderabad, and Chennai. Please review the job descriptions carefully before completing the application form.
Pass out students of 2023 - 2024 year only.
https://docs.google.com/forms/d/e/1FAIpQLScaLiUNk70YIjAfzNnh2lytFXPWIBLhxGAtyt7n6M7a00eh9Q/viewform