Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: AlgoExpert functionality #2

Closed
QasimWani opened this issue Nov 22, 2020 · 1 comment
Closed

Feature: AlgoExpert functionality #2

QasimWani opened this issue Nov 22, 2020 · 1 comment
Labels
feature What feature would you like LeetHub to have and why?

Comments

@QasimWani
Copy link
Owner

for sure!

  • this chrome extension took 2 days to build, so adding AlgoExpert functionality is trivial.
@QasimWani QasimWani added the feature What feature would you like LeetHub to have and why? label Nov 22, 2020
@QasimWani
Copy link
Owner Author

Parser for AlgoExpert:

function X(x)
{
    //x = document.getElementsByClassName("CodeMirror-lines");
    let data = "";
    for(let i = x.length - 3; i < x.length; i++)
    {
        let temp = x[i].innerText;
        data += temp;
    }
    return data;
}

QasimWani pushed a commit that referenced this issue Dec 3, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature What feature would you like LeetHub to have and why?
Projects
None yet
Development

No branches or pull requests

1 participant