Python coding interview challenges
github.com
Python coding interview challenges
1–10 of 252 posts
Re: Python coding interview challenges
#2Re: Python coding interview challenges
#3Re: Python coding interview challenges
#4Re: Python coding interview challenges
#5The advent of all of these coding challenge excercises makes not being able to do one in an interview a real show stopper. Glad there's all this material to learn from.
It's one thing to "know" how to balance a binary tree because you've read up on and practiced the most common challenges - it's something else entirely to actually think through and understand a problem, then come up with a solution.
I'd much rather have someone who can describe the edge cases and the complexity of a problem but get the final solution slightly wrong (but hey, the know the edge cases so can write tests for it, right?), than someone who can regurgitate code they've written before without really understanding it.
Re: Python coding interview challenges
#6Re: Python coding interview challenges
#7"Before we hire you, we first need you to outwit this burmese python..."
Re: Python coding interview challenges
#8"Before we hire you, we first need you to outwit this burmese python..."
Re: Python coding interview challenges
#9Re: Python coding interview challenges
#10The advent of all of these coding challenge excercises makes not being able to do one in an interview a real show stopper. Glad there's all this material to learn from.
Not really. If anything it just makes coding challenges useless for distinguishing between people who can think, and people who can regurgitate. It's one thing to "know" how to balance a binary tree because you've read up on and practiced the most common challenges - it's something else entirely to actually think through and understand a problem, then come up with a solution. I'd much rather have someone who can desc…