๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
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
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