We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Unit 1 Session A
Understand what the interviewer is asking for by using test cases and questions about the problem.
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Implement a function to calculate a product, then return the result.
def product(a, b): return a * b