LEARNING OUTCOME
Candidates will understand the effect of their coding style on the Test scores.
While writing a solution for a programming-related question
Your coding style doesn't affect your marks as long as your solution is passing all the Test cases.
However, you must understand that your code might exceed the compile-time limit in some situations. In such a scenario, you will be encountered with TLE(Time Limit Exceeded) error.
To avoid this error, you must write an optimized code instead of writing Brute-force solutions for problems that are more complex.
Read More Understanding the Code Editor