Placements Help Available ππ
If you also want to crack your current placements
Contact: @ILOVEU_143
Book your slots ASAP
Scroll above and check the work
π― Clearence @Coding_000
Note: It's paidπΆπ€
β Shareβ Shareβ Share β shareβ
If you also want to crack your current placements
Contact: @ILOVEU_143
Book your slots ASAP
Scroll above and check the work
π― Clearence @Coding_000
Note: It's paidπΆπ€
β Shareβ Shareβ Share β shareβ
Amazon is hiring for 12 job roles
For 2024/2025/2026
Passed outs
Apply soon
apply link 1 :https://www.amazon.jobs/en/jobs/2901278/programmer-analyst-2m-intern
apply link 2:https://www.amazon.jobs/en/jobs/2995991/software-development-engineer-i?cmpid=SPLICX0248M
apply link 3:https://www.amazon.jobs/en/jobs/2802215/system-dev-engineer-intern
apply link 4: https://www.amazon.jobs/en/jobs/2936658/system-dev-engineer-2m-intern
apply link 5: https://www.amazon.jobs/en/jobs/2900058/support-engineer-2m-intern
apply link 6: https://www.amazon.jobs/en/jobs/2802228/software-dev-eng-test-intern
apply link 7: https://www.amazon.jobs/en/jobs/2939000/amazon-future-engineer-intern-amazon-university-talent-acquisition
apply link 8: https://www.amazon.jobs/en/jobs/2896331/business-intel-eng-6m-intern
apply link 9: https://www.amazon.jobs/en/jobs/2706207/applied-scientist-intern
apply link 10: https://www.amazon.jobs/en/jobs/2751860/applied-scientist-intern
apply link 11: https://www.amazon.jobs/en/jobs/2736671/data-scientist-intern?cmpid=SPLICX0248M
apply link 12: https://www.amazon.jobs/en/jobs/2802238/quality-assurance-eng-intern?cmpid=SPLICX0248M
For 2024/2025/2026
Passed outs
Apply soon
apply link 1 :https://www.amazon.jobs/en/jobs/2901278/programmer-analyst-2m-intern
apply link 2:https://www.amazon.jobs/en/jobs/2995991/software-development-engineer-i?cmpid=SPLICX0248M
apply link 3:https://www.amazon.jobs/en/jobs/2802215/system-dev-engineer-intern
apply link 4: https://www.amazon.jobs/en/jobs/2936658/system-dev-engineer-2m-intern
apply link 5: https://www.amazon.jobs/en/jobs/2900058/support-engineer-2m-intern
apply link 6: https://www.amazon.jobs/en/jobs/2802228/software-dev-eng-test-intern
apply link 7: https://www.amazon.jobs/en/jobs/2939000/amazon-future-engineer-intern-amazon-university-talent-acquisition
apply link 8: https://www.amazon.jobs/en/jobs/2896331/business-intel-eng-6m-intern
apply link 9: https://www.amazon.jobs/en/jobs/2706207/applied-scientist-intern
apply link 10: https://www.amazon.jobs/en/jobs/2751860/applied-scientist-intern
apply link 11: https://www.amazon.jobs/en/jobs/2736671/data-scientist-intern?cmpid=SPLICX0248M
apply link 12: https://www.amazon.jobs/en/jobs/2802238/quality-assurance-eng-intern?cmpid=SPLICX0248M
For Beginners with No Experience: Want to add something impactful to your resume? Try contributing to open-source projects!
π Check this out: [https://forgoodfirstissue.github.com/](https://forgoodfirstissue.github.com/)
You can fix beginner-friendly issues in languages like Python, C, etc. Once your contributions get approved, you can add them to your resume under "Open-Source Contributions" or "Projects"!
Great way to gain real-world experience and showcase your skills. π
π Check this out: [https://forgoodfirstissue.github.com/](https://forgoodfirstissue.github.com/)
You can fix beginner-friendly issues in languages like Python, C, etc. Once your contributions get approved, you can add them to your resume under "Open-Source Contributions" or "Projects"!
Great way to gain real-world experience and showcase your skills. π
Github
For Good First Issue | Make your next open-source contribution matter.
Making your next open-source contribution make the world better. For Good First Issueis a curated list of accessible issues from open-source projects helping our communities. Start today!
Dm @ILOVEU_143β
For Coding Help or Any Exam Help π
π― Clearance β
Check the previous proofs ππ
Contact @ILOVEU_143 π¨βπ»
Note: it's paid help
π― Clearance and genuine helpπβοΈ
Scroll up and check all proofs we helpedππ¨βπ»
Share @Coding_000β€οΈ
For Coding Help or Any Exam Help π
π― Clearance β
Check the previous proofs ππ
Contact @ILOVEU_143 π¨βπ»
Note: it's paid help
π― Clearance and genuine helpπβοΈ
Scroll up and check all proofs we helpedππ¨βπ»
Share @Coding_000β€οΈ
Placements Help Available ππ
If you also want to crack your current placements
Contact: @ILOVEU_143
Book your slots ASAP
Scroll above and check the work
π― Clearence @Coding_000
Note: It's paidπΆπ€
β Shareβ Shareβ Share β shareβ
If you also want to crack your current placements
Contact: @ILOVEU_143
Book your slots ASAP
Scroll above and check the work
π― Clearence @Coding_000
Note: It's paidπΆπ€
β Shareβ Shareβ Share β shareβ
#include <bits/stdc++.h>
using namespace std;
class Solution {
public:
string clearStars(string A) {
string s = A;
priority_queue<char, vector<char>, greater<char>> pq;
vector<vector<int>> ind(26);
unordered_set<int> rs;
for (int i = 0; i < s.size(); ++i) {
if (s[i] == '*') {
rs.insert(i);
char ch = pq.top(); pq.pop(); // geekynerd
pq.push(ch);
rs.insert(ind[ch - 'a'].back()); // geekynerd
ind[ch - 'a'].pop_back(); // geekynerd
if (ind[ch - 'a'].empty()) pq.pop(); // geekynerd
continue;
}
if (ind[s[i] - 'a'].empty()) // geekynerd
pq.push(s[i]);
ind[s[i] - 'a'].push_back(i); // geekynerd
}
string res = "";
for (int i = 0; i < s.size(); ++i) {
if (!rs.count(i)) {
res += s[i]; // geekynerd
}
}
return res;
}
};
Clear stars
Start removal whitehatcoding
using namespace std;
class Solution {
public:
string clearStars(string A) {
string s = A;
priority_queue<char, vector<char>, greater<char>> pq;
vector<vector<int>> ind(26);
unordered_set<int> rs;
for (int i = 0; i < s.size(); ++i) {
if (s[i] == '*') {
rs.insert(i);
char ch = pq.top(); pq.pop(); // geekynerd
pq.push(ch);
rs.insert(ind[ch - 'a'].back()); // geekynerd
ind[ch - 'a'].pop_back(); // geekynerd
if (ind[ch - 'a'].empty()) pq.pop(); // geekynerd
continue;
}
if (ind[s[i] - 'a'].empty()) // geekynerd
pq.push(s[i]);
ind[s[i] - 'a'].push_back(i); // geekynerd
}
string res = "";
for (int i = 0; i < s.size(); ++i) {
if (!rs.count(i)) {
res += s[i]; // geekynerd
}
}
return res;
}
};
Clear stars
Start removal whitehatcoding
Guys those who need paid help can msg here π
@ILOVEU_000
Note - Book slot one day before exam !
TRUST US EXPECT US π
@ILOVEU_000
Note - Book slot one day before exam !
TRUST US EXPECT US π
Forwarded from Coding | EXAMS | IBM ACCENTURE | VIRTUSA | IBM | AMAZON | TCS | EPAM | WILEY EDGE | TECH MAHINDRA | JPMORGAN | HCL | WIPRO
Which batch your from ?
Anonymous Poll
13%
2022
47%
2023
12%
2024
20%
2025
20%
searching for job
4%
placed
Those who needs help to clear
ANY PLACEMENT EXAMS (Off-campus, On-campus),
ANY COMPANY INTERNAL EXAMS
IT CERTIFICATIONS
ANY COMPANY INTERVIEW PROXY
(Both freshers nd experienced candidates any domain )
RESUME BUILDING
DUOLINGO EXAM | GRE
Kindly contact us and book your slots
βΌοΈ100% clearance guaranteedβ
Kindly scroll up nd check feedbackβs π₯³
For more info pls contact us @ILOVEU_143 β π¨βπ»
ANY PLACEMENT EXAMS (Off-campus, On-campus),
ANY COMPANY INTERNAL EXAMS
IT CERTIFICATIONS
ANY COMPANY INTERVIEW PROXY
(Both freshers nd experienced candidates any domain )
RESUME BUILDING
DUOLINGO EXAM | GRE
Kindly contact us and book your slots
βΌοΈ100% clearance guaranteedβ
Kindly scroll up nd check feedbackβs π₯³
For more info pls contact us @ILOVEU_143 β π¨βπ»
Vochers and Also Exam Help available π₯π―
Any exam Any time
Book your slot π¨βπ»
Contact here @ILOVEU_143β€οΈ
100% clearance guarantee π₯π₯
Note: it's paid help
π― Clearance and genuine helpπβοΈ
Scroll up and check all proofs we helpedππ¨βπ»
Share @Coding_000 β€οΈ
Any exam Any time
Book your slot π¨βπ»
Contact here @ILOVEU_143β€οΈ
100% clearance guarantee π₯π₯
Note: it's paid help
π― Clearance and genuine helpπβοΈ
Scroll up and check all proofs we helpedππ¨βπ»
Share @Coding_000 β€οΈ
β€1
Hiring opportunities for 2026/2025/2024/2023 batch passouts π :
Deloitte is hiring for Web Development Executive Role
Experience: 0 - 2 year's
Apply Now: https://southasiacareers.deloitte.com/job/Bengaluru-Enabling-Areas-DEC-ExecutiveSenior-Executive-Web-Development/45107544/
Meta is hiring for Software Engineer Role
Experience: 0 - 2 year's
Apply Now: https://www.metacareers.com/jobs/1503103504068487
Reliance Industriesis hiring for Graduate Engineer Trainee
Experience: 0 - 2 year's
Apply Now: https://careers.ril.com/rilcareers/frmcampusprogramsN.aspx
Zscaler is hiring for Software Development Intern Role
Experience: 0 - 2 year's
Apply Now: https://docs.google.com/forms/d/e/1FAIpQLSdyDEG6dgHHO3sGhC8ezpFSQNodmO_l6Sgc-MTvWJlBuBujYg/viewform
Deloitte is hiring for Web Development Executive Role
Experience: 0 - 2 year's
Apply Now: https://southasiacareers.deloitte.com/job/Bengaluru-Enabling-Areas-DEC-ExecutiveSenior-Executive-Web-Development/45107544/
Meta is hiring for Software Engineer Role
Experience: 0 - 2 year's
Apply Now: https://www.metacareers.com/jobs/1503103504068487
Reliance Industriesis hiring for Graduate Engineer Trainee
Experience: 0 - 2 year's
Apply Now: https://careers.ril.com/rilcareers/frmcampusprogramsN.aspx
Zscaler is hiring for Software Development Intern Role
Experience: 0 - 2 year's
Apply Now: https://docs.google.com/forms/d/e/1FAIpQLSdyDEG6dgHHO3sGhC8ezpFSQNodmO_l6Sgc-MTvWJlBuBujYg/viewform
You can get 1 year chatGPT free subscription in less than 5 mins. (legally)
βHere's how to do it:
- go to this site (remove brackets):
em(.)bjedu(.)tech/en
- go "create new email" tab
- select the erzi(.)me domain
- pick a username for your email
- create a new chatgpt acct
- use that new email address
- refresh your inbox
- copy the verification code
- paste it into chatgpt.
and boom! you have free access for a whole year.
use it for vibecoding, content creation, research and literally everything you want.
β οΈ warning: this is a limited time offer and only lasts for the next 2 days.
save your 240$ and jump on this now.
βHere's how to do it:
- go to this site (remove brackets):
em(.)bjedu(.)tech/en
- go "create new email" tab
- select the erzi(.)me domain
- pick a username for your email
- create a new chatgpt acct
- use that new email address
- refresh your inbox
- copy the verification code
- paste it into chatgpt.
and boom! you have free access for a whole year.
use it for vibecoding, content creation, research and literally everything you want.
β οΈ warning: this is a limited time offer and only lasts for the next 2 days.
save your 240$ and jump on this now.
Share to all ur frds guys
Any exam help available π₯π―
Book your slot π¨βπ»
Contact here @ILOVEU_143β€οΈ
100% clearance guarantee π₯π₯
Note: it's paid help
π― Clearance and genuine helpπβοΈ
Scroll up and check all proofs we helpedππ¨βπ»
Share @Coding_000 β€οΈ
Any exam help available π₯π―
Book your slot π¨βπ»
Contact here @ILOVEU_143β€οΈ
100% clearance guarantee π₯π₯
Note: it's paid help
π― Clearance and genuine helpπβοΈ
Scroll up and check all proofs we helpedππ¨βπ»
Share @Coding_000 β€οΈ