I searched and could only find an answer for the problem with repetition of the following question.
How many 3-digit odd numbers greater than 600 can be created using the digits 2,3,4,5,6, and 7? Repetition of digits is not allowed.
I found the correct answer, $20$, by creating a tree, but I am wondering if there is a more elegant way of counting this.
If you don't worry whether the number is even or odd, just that it's bigger than $600$, then the count is $2\cdot5\cdot4=40$, since the first digit must be $6$ or $7$ and the other two can be anything (that's not already been used). Since there are the same number of even and odd digits (three of each), and also the same number available for the lead digit (one of each), the result is symmetric between even and odd, so the number of each is $40/2=20$.
Remark: This only works as nicely as it does because of the symmetry (i.e., equality) in the counts of even and odd digits. If you were using the digits $1$ to $7$, say, or $2$ to $8$ it wouldn't work, and you'd have to go with something case-based.