We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6c3564 commit b0c466fCopy full SHA for b0c466f
leetcode.el
@@ -452,7 +452,7 @@ VALUE should be the referer."
452
"Make TITLE a slug title.
453
Such as 'Two Sum' will be converted to 'two-sum'. 'Pow(x, n)' will be 'powx-n'"
454
(let* ((str1 (replace-regexp-in-string "[\s-]+" "-" (downcase title)))
455
- (res (replace-regexp-in-string "[(),]" "" str1)))
+ (res (replace-regexp-in-string "[(),']" "" str1)))
456
res))
457
458
(defun leetcode--replace-in-buffer (regex to)
0 commit comments