1767. Find the Subtasks That Did Not Execute
Description
+----------------+---------+
| Column Name | Type |
+----------------+---------+
| task\_id | int |
| subtasks\_count | int |
+----------------+---------+
task\_id is the primary key for this table.
Each row in this table indicates that task\_id was divided into subtasks\_count subtasks labelled from 1 to subtasks\_count.
It is guaranteed that 2 <= subtasks\_count <= 20.+---------------+---------+
| Column Name | Type |
+---------------+---------+
| task\_id | int |
| subtask\_id | int |
+---------------+---------+
(task\_id, subtask\_id) is the primary key for this table.
Each row in this table indicates that for the task task\_id, the subtask with ID subtask\_id was executed successfully.
It is **guaranteed** that subtask\_id <= subtasks\_count for each task\_id.ac
Last updated