Hi,
We need 3 digit numbers greater than 700 which have all 3 different digits and number should be odd.
Let's fix hundreds places as 7,8 and 9, find EVEN/ODD combinations at tens and units place will be ODD-
7AB --> hundreds place is fixed, tens place can be even/odd and unit place will be odd
7EO- 1*4(2,4,6,8) * 4 (1,3,5,9) =16
7OO- 1* 4 (1,3,5,9) * 3 (remaining 3 digits from odd list after using 1 odd digit at Tens place) = 12
8CD-->hundreds place is fixed, tens place can be even/odd and unit place will be odd
8EO- 1* 3(2,4,6) * 5(1,3,5,7,9) = 15
8OO- 1* 5(1,3,5,7,9) * 4 (remaining 4 digits from odd list after using 1 odd digit at Tens place) = 20
9EF-->hundreds place is fixed, tens place can be even/odd and unit place will be odd
9EO- 1*4(2,4,6,8) * 4 (1,3,5,7) =16
9OO- 1* 4 (1,3,5,7) * 3 (remaining 3 digits from odd list after using 1 odd digit at Tens place) = 12
Add all values- 16+12+15+20+16+12 = 91