7 kyu
By 3, or not by 3? That is the question . . .
4,439 of 7,692DaveGuymon
Description:
A trick I learned in elementary school to determine whether or not a number was divisible by three is to add all of the integers in the number together and to divide the resulting sum by three. If there is no remainder from dividing the sum by three, then the original number is divisible by three as well.
Given a series of digits as a string, determine if the number represented by the string is divisible by three.
Example:
"123" -> true
"8409" -> true
"100853" -> false
"33333333" -> true
"7" -> false
Try to avoid using the % (modulo) operator.
Arrays
Strings
Fundamentals
Similar Kata:
Stats:
Created | Oct 31, 2017 |
Published | Oct 31, 2017 |
Warriors Trained | 10490 |
Total Skips | 260 |
Total Code Submissions | 33056 |
Total Times Completed | 7692 |
JavaScript Completions | 4439 |
C# Completions | 595 |
Haskell Completions | 125 |
Julia Completions | 38 |
C Completions | 271 |
PHP Completions | 350 |
Python Completions | 1970 |
Ruby Completions | 104 |
COBOL Completions | 6 |
Dart Completions | 21 |
Total Stars | 87 |
% of votes with a positive feedback rating | 88% of 1136 |
Total "Very Satisfied" Votes | 912 |
Total "Somewhat Satisfied" Votes | 165 |
Total "Not Satisfied" Votes | 59 |
Total Rank Assessments | 19 |
Average Assessed Rank | 7 kyu |
Highest Assessed Rank | 7 kyu |
Lowest Assessed Rank | 8 kyu |