Solved
SQL1
Python0
Milestones
First interview
976 runs in the past 26 weeksActive days: 11 · Max streak: 3
MarAprMayJunJulAugSep
Recent solves
Create a variable called lines and set it to the string "Line 1\nLine 2" (using the \n escape sequen
Python · medium · lesson
A variable called city is provided
Python · medium · lesson
Define get_greeting(name) that returns 'Hello, ' + name (do NOT use print inside the function)
Python · medium · lesson
Define a function triple(n) with the docstring 'Triple the input value.' that returns n * 3
Python · medium · lesson
Define area(w, h) returning w * h
Python · medium · lesson
Define square(n) returning n * n and add_one(n) returning n + 1
Python · medium · lesson
Define categorize(score) that returns 'pass' if score >= 60, otherwise 'fail'
Python · medium · lesson
Define a function add(a, b) that returns a + b
Python · medium · lesson
Define a function double(n) that returns n * 2
Python · medium · lesson
Build an order-line formatter from two functions
Python · medium · lesson