๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.62K subscribers
5.61K photos
3 videos
95 files
10.6K links
๐ŸšฉMain Group - @SuperExams
๐Ÿ“Job Updates - @FresherEarth

๐Ÿ”ฐAuthentic Coding Solutions(with Outputs)
โš ๏ธDaily Job Updates
โš ๏ธHackathon Updates & Solutions

Buy ads: https://telega.io/c/cs_algo
Download Telegram
โ—๏ธAtos Syntel Off Campus Drive 2022 | BE/ B.Tech/ B.Sc/ BCS/ MCAโ—๏ธ

๐Ÿ‘จโ€๐Ÿ’ป Job Role : Trainee Engineer
๐ŸŽ“ Education : BE/BTech/BSc/BCS/MCA
๐ŸŽ– Batch : 2022/2023
๐Ÿ’ฐ CTC : 3.5 LPA+

Apply Link 2022
Apply Link 2023
๐Ÿ‘2
โ—๏ธMorningstar Off Campus Hiring | Freshers | 3.90 LPAโ—๏ธ

๐Ÿ‘จโ€๐Ÿ’ป Job Role : MDP Associate
๐ŸŽ“ Education : Bachelor's Degree
๐ŸŽ–Batch : Any Batch
๐Ÿ’ฐ CTC : 3.99 LPA

Apply Here
โ—๏ธDXC Technology Off Campus Drive 2022 Hiring Freshers Data Analystโ—๏ธ

๐Ÿ‘จโ€๐Ÿ’ป Job Role : Associate Professional โ€“ Data Analyst
๐ŸŽ“ Qualification : BE/B.Tech/BCA/MCA
๐ŸŽ– Batch : 2020/2021/2020/2019
๐Ÿ’ฐ Salary : 3.6 LPA

Apply Here
class Stack {
constructor() {
this.items = [];
}

// push
push(val) {
return this.items.push(val);
}

// pop
pop() {
if (this.items.length > 0) {
return this.items.pop();
} else {
return -1;
}
}

top() {
if (this.items.length > 0) {
return this.items[this.items.length - 1];
} else {
return -1;
}
}

size() {
return this.items.length;
}

isEmpty() {
return this.items.length == 0 ? true : false;
}
}

var isValid = function(s) {
let stk = new Stack();

let mp = {'}':'{',
']':'[',
')':'('}
for(let i=0;i<s.length;i++){
if (s[i]=='(' s[i]=='{' s[i]=='['){
stk.push(s[i]);
}
else if (s[i]==')' s[i]=='}' s[i]==']'){
if (stk.top()==mp[s[i]]){
stk.pop()
}
else{
return false;
}
}

}
if (stk.size()==0){
return true
}
return false


};
โค1
Siemens Healthineers
๐Ÿ“ŒRole: Engineer (Design and Development) -> job id (326800)
๐Ÿ“ŒRole: Service Engineer -> Job Id (329241)

Batch eligible: 2022 and 2021 passouts

P.S. I will recommend everyone to go with referral, u guys can directly apply through career page...but mera kehna maano toh referral k sath hi jaana.

Best of luck ๐Ÿ˜Šโค๏ธ
๐Ÿ‘2