allcoding1
27K subscribers
2.2K photos
2 videos
77 files
859 links
Download Telegram
Accenture Hackdiva hiring 2023 &. 2024 Batch

Apply link
https://indiacampus.accenture.com/events/hackdiva/
👍1
Amazon ML Exam Ans
1) it is high variance

A and C
2) 0.33
1/6
👍1
7.08
9
👍1
A
def count_commas(n):
    total_commas = 0
   
    for number in range(1, n + 1):
        number_with_commas = "{:,}".format(number)
        total_commas += number_with_commas.count(',')
   
    return total_commas

# Example usage:
N = 1010
print(count_commas(N))  # Output: 11
👍3
4A
A
62.31
finding commas