Yes, I guess we doWe have code blocks here I think?
Just got off the phone with dell. No tech phone screen, just come In and meet the team. I think they're thirsty
:(){:|: & };:
Hint: I don't, I think they're all fucking stupidI don't understand why you think that transversing a binary tree has more value on an interview than a Hanoi tower.
Or another of my favorites, escape a labyrinth
To be fair, he has an English degree and is one of our technical writers. Still, if you're documenting a software product, I think you should know how to code to some degree.I had to explain to a co-worker what scp is.
I can see that happening one day. It's something I've really thought about. I still find programming really fun so I'm not ready to give it up, however I've been mentoring a lot of people and I started to realize that a lot of times the role of a senior/principal isn't always to be a code rockstar but also to help the new guys progress in their careers. Early on I would be a bit salty that someone was promoted over me, but now I realize I should be thinking more team oriented. Person X being promoted doesn't affect me in any way unless it was a job we were both going for
You're given a 64 bit positive integer. I.E. not a straight up array of bits. So given maybe 108 or 76 or 67, etcCode:bool rechelper(bit[] data) { if (data.length = 1) { return data == 0; } bit[] firt = first half of data; bit[] second = second half the data; return rechelper(firt) XOR rechelper(second) }
The whole purpose is to use only bitwise operators...ok so convert it to bit then =)
fine
bit[] bla = BitConverter.GetBytes(long)