Skip to content

Commit

Permalink
Update line break
Browse files Browse the repository at this point in the history
  • Loading branch information
yolophg committed May 5, 2024
1 parent cd47959 commit 230d528
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion best-time-to-buy-and-sell-stock/yolophg.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ var maxProfit = function(prices) {
}
}
return profit;
};
};
2 changes: 1 addition & 1 deletion contains-duplicate/yolophg.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ var containsDuplicate = function(nums) {
}
}
return false;
};
};
2 changes: 1 addition & 1 deletion two-sum/yolophg.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ var twoSum = function(nums, target) {
}

return [];
};
};
2 changes: 1 addition & 1 deletion valid-anagram/yolophg.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ var isAnagram = function(s, t) {

// compare if these are same and return
return JSON.stringify(firstList) === JSON.stringify(secondList);
};
};
2 changes: 1 addition & 1 deletion valid-palindrome/yolophg.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ var isPalindrome = function(s) {
}
}
return result;
};
};

0 comments on commit 230d528

Please sign in to comment.