Site icon Social Hackers Academy

Problem Solving Technique in Coding

Problem Coding

People ask question. Confused person asking questions, crowd finding answers and question sign vector illustration. Collective brainstorm, mutual assistance concept. Public problem solution platform

Are you thinking about how you can improve your problem-solving skills or logic in coding? Or how can you start feeling more confident and comfortable in solving technical challenges and expressing your ideas clearly and adequately, especially in an interview?

After that, did you face this situation before; reading a technical question and saying yes, but it’s too easy to be solved, then when you start, you complicate things and end up starting everything from scratch or even give up and stop trying! 

If yes, in that case, let me give you some simple steps to apply to every question, from the easiest to the most difficult ones.

Our golden Rule: Do Not rush and just dive into coding.

  1. Read the problem (question) carefully, and define the problem. Why? Because if you do not know what is the required result, you will not realize when you have successfully solved it, which means you will be wasting more time and effort than needed.
  1. Read the question again and make sure you can determine what it is:
    • Input 
    • Output 
    • Edge cases -if we have any – (any assumption that might break your code or make it behaves in a different way than expected)
    • Constraints -if we have any- (time complexity, not using specific methods or built-in functions….etc.)

  2. Have a clear (step-by-step) plan before you start the implementation. How? 

i. Reword the problem in plain English. Above all, If you can explain the problem to someone else in plain English, this means you understand it.

ii. Also, you will have the chance to slow down and think carefully about the steps your program needs to follow to solve the problem.

iii. (slow down to speed up), As much as you put effort into your pseudocode, you will save a lot of time in writing the code itself.

See this example:

Write a function called add numbers that will take two numbers as parameters and return the summation as a result

//Pseudo code /* StartGet two numbers (declare two variables representing the) : First numberSecond number
Add them Print the answering.
*/

Testing each step in problem-solving will save you hours of coding, debugging and searching where the error occurred.

Now you may be wondering where we should do all these steps (whether when practising or in an interview?!!!)
In a word simply use the  White Board  (paper, online whiteboard, real whiteboard, etc.) and divide it into three columns:

See this demonstration for the previous example on a whiteboard

I: Two numbers

O: number (sum of two numbers)

E: none

C: none
Get two numbers (declare two variables representing the) : First number second number
Add them Print the answer
function addnumbers(){let n1 = Number(prompt(“Enter first number”));let n2 = Number(prompt(“Enter second number”));
 return(n1+n2);}

Finally, you might be following other techniques, which is fine and right. But always remember to arrive at the Z point from the A point. Therefore, you need to go through B, C and D to all the points in between, so do not rush and dive into coding immediately.

Source: https://www.geeksforgeeks.org/how-to-write-a-pseudo-code/

Exit mobile version