We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 165c759 commit c083161Copy full SHA for c083161
scripts/algorithms/A/Add Digits/Add Digits.js
@@ -1,3 +1,4 @@
1
+// Runtime: 101 ms (Top 63.77%) | Memory: 43.2 MB (Top 91.64%)
2
var addDigits = function(num) {
3
return 1 + (num - 1) % 9;
-};
4
+};
0 commit comments