diff --git a/best-time-to-buy-and-sell-stock/yolophg.js b/best-time-to-buy-and-sell-stock/yolophg.js index b3854252f..d92ab7c26 100644 --- a/best-time-to-buy-and-sell-stock/yolophg.js +++ b/best-time-to-buy-and-sell-stock/yolophg.js @@ -13,4 +13,4 @@ var maxProfit = function(prices) { } } return profit; -}; \ No newline at end of file +}; diff --git a/contains-duplicate/yolophg.js b/contains-duplicate/yolophg.js index 978ca68d7..5a8f2de1e 100644 --- a/contains-duplicate/yolophg.js +++ b/contains-duplicate/yolophg.js @@ -12,4 +12,4 @@ var containsDuplicate = function(nums) { } } return false; -}; \ No newline at end of file +}; diff --git a/two-sum/yolophg.js b/two-sum/yolophg.js index a1753aa2a..bf50f4111 100644 --- a/two-sum/yolophg.js +++ b/two-sum/yolophg.js @@ -13,4 +13,4 @@ var twoSum = function(nums, target) { } return []; -}; \ No newline at end of file +}; diff --git a/valid-anagram/yolophg.js b/valid-anagram/yolophg.js index bbf1d3fa8..c402689ea 100644 --- a/valid-anagram/yolophg.js +++ b/valid-anagram/yolophg.js @@ -4,4 +4,4 @@ var isAnagram = function(s, t) { // compare if these are same and return return JSON.stringify(firstList) === JSON.stringify(secondList); -}; \ No newline at end of file +}; diff --git a/valid-palindrome/yolophg.js b/valid-palindrome/yolophg.js index a5cc8cfdb..6688e1b8f 100644 --- a/valid-palindrome/yolophg.js +++ b/valid-palindrome/yolophg.js @@ -16,4 +16,4 @@ var isPalindrome = function(s) { } } return result; -}; \ No newline at end of file +};