Skip to content

Commit a3527c7

Browse files
committed
docs: update Solution.js
1 parent fdba63f commit a3527c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: solution/0002.Add Two Numbers/Solution.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Author: Mcnwork2018
1616
*/
1717
var addTwoNumbers = function (l1, l2) {
18-
let c1 = l1, c2 = l2,c3 = 0, l3 = 0, carry = 0;
18+
let c1 = l1, c2 = l2, c3 = 0, l3 = 0, carry = 0;
1919
while (c1 || c2 || carry) {
2020
var v1 = 0, v2 = 0;
2121
if (c1) {

0 commit comments

Comments
 (0)