You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Understand what the interviewer is asking for by using test cases and questions about the problem.
Will the input always be a number?
Yes.
P-lan
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Create a function that converts a Celsius temperature into Kelvin and Fahrenheit.
1) Create an empty list to store the output.
2) Calculate the Kelvin and Fahrenheit values
3) Add each value to the end of the output list
4) Return the output list
⚠️ Common Mistakes
Make sure you pay attention to order of operations!