113
How do I pass a coding test?
(lemmy.world)
A loosely moderated place to ask open-ended questions
If your post meets the following criteria, it's welcome here!
Looking for support?
Looking for a community?
~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~
The type of questions are really bizarre. Time pressure also.
I am a mobile dev so my day to day is dealing with UI, api requests, writing test cases, CI/CD stuff...
This is one example I remember being in a test: https://www.geeksforgeeks.org/the-skyline-problem-using-divide-and-conquer-algorithm/
In that case it was books in a shelf and some other additions but yeah it's not something that I relate to at all.
Yeah, those kind of questions are silly and don’t reflect problems that happen in real life.
My advice when you get a question similar to this is to have a pen and paper at hand. Draw a few easy examples and find a solve those systematically by hand. From there you go to harder and harder examples and adapt your system for those examples. Try to find examples where your system fails.
Once you’re confident you’ve found all corner cases you can start to write down the algorithm.
That’s the advice I can give. Hope it helps!
Definitely helpful! Thanks
When I think about it, what I just wrote is basically test driven development, but by hand on a piece of paper.