Update odd-or-even-number.c

pull/1195/head
Rohan Janardhan 2023-07-04 22:11:44 +05:30 committed by GitHub
parent 8e916daae1
commit fa355a0daa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
*
* Odd numbers are whole numbers that cannot be divided exactly by 2. If the number is not divisible by 2 entirely,
* it'll leave a remainder 1.
* Even numbers are whole numbers that can be divided exactly by 2. If we divide the number by 2, it'll leave a remander 0.
* Even numbers are whole numbers that can be divided exactly by 2. If we divide the number by 2, it'll leave a remainder 0.
*
* Complexity -> O(1)
* _______________________________
@ -29,4 +29,4 @@ int main()
}
return 0;
}
}