8000 GitHub - coderbean/leetcode-helper: A chrome extension helps you have fun at leetcode.com and leetcode-cn.com
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

coderbean/leetcode-helper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Leetcode Helper

A chrome extension helps you have fun at leetcode.com and leetcode-cn.com.

https://chrome.google.com/webstore/detail/leetcode-helper/gleoepapfjkpcijfmchfabbnldejdnoj

Features

Unfortunately, there is only one feature for now.

  • Copy question content for markdown

Question page:

image

Then, you could click the Copy the question button to copy markdown text to clipboard.

The result for markdown:

### [344\. Reverse String](https://leetcode.com/problems/reverse-string/description/)

Difficulty: **Easy**

Write a function that takes a string as input and returns the string reversed.

**Example:**  
Given s = "hello", return "olleh".

#### My Solution

Language: **JavaScript**

/```javascript
/**
 * @param {string} s
 * @return {string}
 */
var reverseString = function(s) {
    return s.split('').reverse().join('')
};
/```

installation

Chrome webstore

https://chrome.google.com/webstore/detail/leetcode-helper/gleoepapfjkpcijfmchfabbnldejdnoj

Manual

  • Clone or download this project to local.
  • Open chrome://extensions/ in your chrome
  • Drag the project folder to the browser.

Then, open a problem page in leetcode, you would see the button.

About

A chrome extension helps you have fun at leetcode.com and leetcode-cn.com

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 66.9%
  • JavaScript 33.1%
0