Update math/finding_number_of_digits_in_a_number.cpp

typo changes

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
futoid
2023-03-03 09:33:20 +05:30
committed by GitHub
parent bf0c06bcce
commit 6280bc6196

View File

@@ -45,7 +45,7 @@ uint64_t finding_number_of_digits_in_a_number(uint64_t n) {
/**
* @brief This function finds the number of digits
* in constant time
* TC :O(1)
* TC: O(1)
* @param n the number to check its digits
* @returns the digits count
*/