Skip to content

Commit be683f2

Browse files
authored
Extra space removed.
1 parent 9d0408b commit be683f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: javascript/2125-number-of-laser-beams-in-a-bank.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var numberOfBeams = function(bank) {
1010
let totalBeams = 0;
1111

1212
let left = 0;
13-
let right = left + 1;
13+
let right = left + 1;
1414

1515
const countBeam = (beam) => {
1616
return beam.split("").filter((b) => b === "1").length;

0 commit comments

Comments
 (0)