Completed Backtracking-1 - #1129
Conversation
Combination Sum (Combination-Sum.java)Your solution is excellent and demonstrates a good understanding of backtracking. Here are some strengths and areas for improvement: Strengths:
Areas for Improvement:
Overall, your solution is efficient and correct. Keep up the good work! VERDICT: PASS Operations and expressions (ExpressionAddOperators.java)Your approach is on the right track, and you have correctly identified the need to handle numbers without leading zeros. However, there are a few critical issues:
Here is how you can modify your code:
Example modification: Also, remember to call the helper with a Your current solution will not produce correct results due to the lack of backtracking. Please revise your code to use VERDICT: NEEDS_IMPROVEMENT |
No description provided.