LeetCode1523. Count Odd Numbers in an Interval Range
文章目录一、题目二、题解一、题目Giventwonon-negativeintegerslowandhigh.Returnthecountofoddnumbersbetweenlowandhigh(inclusive).Example1:Input:low=3,high=7Output:3Explanation:Theoddnumbersbetween3and7are[3,5,7].Example