Cont. of I've been learning Python on and off for about 6 months now and Linux for 2 months. I'm pretty good automating things on my vps in Python scripts. Here's an example of my attempt to solve fizzbuzz:
for i in range(1,100): x = i / 15 if x == int(x): print ("fizzbuzz") else: x = i / 5 if x == int(x): print ("fizz") else: x = i / 3 if x == int(x): print("buzz") else: print(i)
That's just a technicality, not a code problem. I would imagine that I'm above at least 50% of people who get hired simply with my code alone.
Julian Rivera
Don't call us, we'll call you. Security will escort you out.
Sebastian Sanders
Im serious. It literally took me 5 seconds to come up with that fizzbuzz solution and 1 minute to write it. I've seen the other solutions before, when I was watching YouTube videos but haven't looked at it in a while.
I'm not trying to brag but surely it can't be that bad that no one would hire me?
Kevin Morgan
Cunt fuck off. This isn't your blog why the fuck aren't mods banning this garbage.
Ryder Russell
im sure your trolling but you will never get questions this easy in an interview. if you want examples filter leetcode by medium/hard to get an idea of the type of questions they'll be asking you.
Zachary Baker
...serious question! how much codelines you wrote in this time period? just asking because in the same situation but different project.