We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdba63f commit a3527c7Copy full SHA for a3527c7
solution/0002.Add Two Numbers/Solution.js
@@ -15,7 +15,7 @@
15
* Author: Mcnwork2018
16
*/
17
var addTwoNumbers = function (l1, l2) {
18
- let c1 = l1, c2 = l2,c3 = 0, l3 = 0, carry = 0;
+ let c1 = l1, c2 = l2, c3 = 0, l3 = 0, carry = 0;
19
while (c1 || c2 || carry) {
20
var v1 = 0, v2 = 0;
21
if (c1) {
0 commit comments