Cont. of >>71345981

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)


How do I get a job now?

Attached: 298E2E44-276D-4216-864B-571DE0AC9053.png (815x476, 31K)

that only goes till 99. you failed already.

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.

Don't call us, we'll call you.
Security will escort you out.

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?

Cunt fuck off. This isn't your blog why the fuck aren't mods banning this garbage.

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.

...serious question! how much codelines you wrote in this time period? just asking because in the same situation but different project.

Attached: 1411248860004.jpg (500x335, 19K)

how do i learn linux, pls tell me

Probably a couple of thousand. You?

Thanks, I'll check out leetcode. And I'll check out leetcode.