The tutorial covers how to check if a binary tree is a sum tree or not.A sum tree is a tree where the parent node value is equal to the sum of its left sub tree and right sub tree.The example in the tutorial demonstrates a sum tree and explains the condition that needs to be satisfied for internal nodes.Only leaf nodes do not need to satisfy this condition.