Easy
Given the root of a binary tree, return the length of its diameter — the number of edges on the longest path between any two nodes (the path may not pass through the root).
root
Input: root = [1,2,3,4,5] Output: 3
Input: root = [1,2] Output: 1