Skip to content

Commit 230d528

Browse files
committed
Update line break
1 parent cd47959 commit 230d528

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

best-time-to-buy-and-sell-stock/yolophg.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ var maxProfit = function(prices) {
1313
}
1414
}
1515
return profit;
16-
};
16+
};

contains-duplicate/yolophg.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ var containsDuplicate = function(nums) {
1212
}
1313
}
1414
return false;
15-
};
15+
};

two-sum/yolophg.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ var twoSum = function(nums, target) {
1313
}
1414

1515
return [];
16-
};
16+
};

valid-anagram/yolophg.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ var isAnagram = function(s, t) {
44

55
// compare if these are same and return
66
return JSON.stringify(firstList) === JSON.stringify(secondList);
7-
};
7+
};

valid-palindrome/yolophg.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ var isPalindrome = function(s) {
1616
}
1717
}
1818
return result;
19-
};
19+
};

0 commit comments

Comments
 (0)