Unit 1 Session 1 (Click for link to problem statements)
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: Write a function that takes a name as input and prints a greeting.
def greet_user(name):
print("Hello " + name)