null
...
JavaScript is really fukking dumb and makes no fukking sense sometimes...
rep+
JavaScript is really fukking dumb and makes no fukking sense sometimes...
Alright, breh, I got it.
This is my JavaScript solution.
Code:function matchInput (a) { let b; let c; a.toString(''); if (a.includes('(') && a.includes('[') && a.includes('{') ) { if (a.includes(')') && a.includes(']') && a.includes('}')) { b = true; c = true; } else { b = false; c = false; } } else if (a.includes('(') && a.includes('[')) { if (a.includes(')') && a.includes(']')) { b = true; c = true; } else { b = false; c = false; } } else if (a.includes('(') && a.includes('{')) { if (a.includes(')') && a.includes('}')) { b = true; c = true; } else { b = false; c = false; } } else if (a.includes('{') && a.includes('[')) { if (a.includes('}') && a.includes(']')) { b = true; c = true; } else { b = false; c = false; } } else if (a.includes(')') && a.includes(']') && a.includes('}') ) { if (a.includes('(') && a.includes('[') && a.includes('{')) { c = true; b = true; } else { c = false; b = false; } } else if (a.includes(')') && a.includes(']')) { if (a.includes('(') && a.includes('[')) { c = true; b = true; } else { c = false; b = false; } } else if (a.includes(')') && a.includes('}')) { if (a.includes('(') && a.includes('{')) { c = true; b = true; } else { c = false; b = false; } } else if (a.includes('}') && a.includes(']')) { if (a.includes('{') && a.includes('[')) { c = true; b = true; } else { c = false; b = false; } } else if (a.includes(')')) { if (a.includes('(')) { c = true; b = true; } else { c = false; b = false; } } else if(a.includes('}')) { if (a.includes('{')) { c = true; b = true; } else { c = false; b = false; } } else if(a.includes(']')) { if(a.includes('[')) { c = true; b = true; } else { c = false; b = false; } } else if (a.includes('(')) { if (a.includes(')')) { b = true; c = true; } else { b = false; c = false; } } else if(a.includes('{')) { if (a.includes('}')) { b = true; c = true; } else { b = false; c = false; } } else if(a.includes('[')) { if(a.includes(']')) { b = true; c = true; } else { b = false; c = false; } } else { return false; } if(b && c ) { return true; } else { return false; } }
bool isValid(string s) {
if (s.length() < 2)
return false;
std::stack<char> stack;
for (auto c : s) {
if (c == '{' ||
c == '[' ||
c == '(') {
stack.push(c);
} else {
if ((c =
(c == '}' ? '{' :
(c == ']' ? '[' :
(c == ')' ? '(' : ' ')))) != ' ') {
if (stack.empty() ||
stack.top() != c) {
return false;
}
stack.pop();
}
}
}
return stack.empty();
}
sounds like someone who knows little about how powerful python can be
She's a software engineer and youtuber working for Google
Also, check out 6:52 timestamp
Im not gonna front, im gunning for Google (within 3 years from now at the latest). No brag but I think i got the chops and experience to get into one of their teams . Its really all about the money and the doors the FAANG names open for you after you're starting to be . Basically you can use that name on your resume to a cushy executive role where you barely do anything except feast on investors' money .Good for her and a lot of those millenial in those series. And I'm not mad at her having her .
I've always been turned off by the prospect of working at big tech/FAANG. Not sure why
Makes sense. I think some of the black ppl that came out talking about their experience might have contributed, but I do hope you get in and get that resume upgrade package, lol.Im not gonna front, im gunning for Google (within 3 years from now at the latest). No brag but I think i got the chops and experience to get into one of their teams . Its really all about the money and the doors the FAANG names open for you after you're starting to be . Basically you can use that name on your resume to a cushy executive role where you barely do anything except feast on investors' money .
Most definitely, thats why im emmigrating to the USMakes sense. I think some of the black ppl that came out talking about their experience might have contributed, but I do hope you get in and get that resume upgrade package, lol.
Appreciate breh. I definitely heard of that guy, but never checked out his videos.This. The truth of the matter is that the jobs that are niche and require heavy knowledge of math and programming are not as common as tech jobs that require just IT certs to attain. Those jobs that require heavy programming knowledge are usually dominated by STEM graduates and those who went to do some research based grad program in the sciences. The number of people who are in tech having those specialized jobs are likely to be the minority so threads like this won't do numbers like that.
I vouch for this Adbul Bari breh. He really is one of the best out there and the view count tells it all
Real good discussion:
Whole interview was great and I loved some of the bits and productivity/coding tips he had.
Real good discussion:
Whole interview was great and I loved some of the bits and productivity/coding tips he had. Ever since I started using debuggers my productivity and how quick I understand what the code is doing really leveled up exponentially vs console logging everything. I've had and am still having a pain setting up the debugger in my IDE for the project at my company because it's too intricate smh.
I also completely agree about the over-abstraction. Keep it simple.
Kind of a crazy question to ask, but what ya'll think is the next wave? Right now everything is web/A.I. and Javascript (basically anything with a web browser or an interface to the web is using Javascript). I'm trying to imagine what the next meta/interface is going to be (probably a trillion dollar question tbh).