Hello,
For task 1e, the format example shows the CREATE TABLE statement without spaces inside parentheses: CREATE TABLE students(ID INT PRIMARY KEY NOT NULL, NAME TEXT NOT NULL)
However, the actual output from the database includes spaces, so it would look more like: CREATE TABLE students( ID INT PRIMARY KEY NOT NULL, NAME TEXT NOT NULL ).
Should we remove these spaces to match the format example or submit the definition exactly as retrieved from the database?
Thanks!