Showing 3 of 12 questions
Implement a SQL class that supports basic database operations: creating tables, inserting rows, deleting rows based on a condition, and selecting specific columns from rows that match a condition.
#1. Design SQL
You're given a list that can contain integers or other nested lists. Implement an iterator to flatten this structure and yield only the integers one by one.
#2. Flatten Nested List Iterator
Simulate a simplified Excel sheet and implement the SUM formula. You'll need to parse cell ranges and calculate their sum.
#3. Design Excel Sum Formula