LC 230. Kth Smallest Element in a BST
https://leetcode.com/problems/kth-smallest-element-in-a-bst/?envType=study-plan-v2&envId=top-interview-150
class Solution {
public:
int c = 0;
int ans = 0;
int kthSmallest(TreeNode* root, int k)