Leet Repeet

Spaced repetition of leetcode problems for better problem retention which helps to be prepared at the next coding interview

Τι είναι το Leet Repeet;

Το Leet Repeet είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mridul Ghanshala, και η κύρια λειτουργία του είναι "Spaced repetition of leetcode problems for better problem retention which helps to be prepared at the next coding interview".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Leet Repeet

Λήψη αρχείων επέκτασης Leet Repeet σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Thank you so  much for all your love and emails.This was done as a side  project but I never knew we would get to 1000+ downloads. 

Very often users solve, optimise, learn coding problems on leetcode.com. However 5 days after learning the solution they completely forget what they learnt. It has nothing to do with the users memory but the fact that the problem wasn't reviewed again to make it permanent in the memory. 

Users also fail coding interviews because they face the same problem in coding interviews. They had solved several problems but they were not able to retain or remember the logic clearly as the knowledge and algorithms got dusty. 

So here is an extension to keep that knowledge sparkling forever.

Long term retention happens when we revisit those problems at regular intervals of time so that they get fixated in the memory.

This idea is explained by an algorithm called Spaced Repetition which has been implemented in this extension with a fair deal of flexibility where the user can select the repetition timeframe of the problem to be reviewed and the extension will show a comprehensive list of problems to be reviewed each day.

If you are fairly new to problem solving, coding, interview preparation this extension is what you need to crack those coding interviews and get that dream job as it will enhance your memory and with that when asked similar questions in the interview you would be able to recollect and devise the appropriate solution quickly. Several people also ask how to leetcode properly so this also helps with staying in a rhythm of problem solving and also gives a sense of satisfaction.

If you like this extension leave a rating :)
Good luck on your coding interview preparation.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Leet Repeet Leet Repeet
ID odpadfgphijikfmdaefmhpjdebahnmde
Επίσημο URL https://chromewebstore.google.com/detail/leet-repeet/odpadfgphijikfmdaefmhpjdebahnmde
Περιγραφή Spaced repetition of leetcode problems for better problem retention which helps to be prepared at the next coding interview
Μέγεθος Αρχείου 497 KB
Αριθμός Εγκαταστάσεων 1,150
Τρέχουσα Έκδοση 1.0.4
Τελευταία Ενημέρωση 2022-12-26
Ημερομηνία Δημοσίευσης 2020-04-12
Αξιολόγηση 4.33/5 Συνολικά 21 Αξιολογήσεις
Προγραμματιστής Mridul Ghanshala
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leet Repeet",
    "version": "1.0.4",
    "description": "Spaced repetition of leetcode problems for better problem retention which helps to be prepared at the next coding interview",
    "permissions": [
        "https:\/\/leetcode.com\/",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/16x16dark.png",
        "32": "images\/32x32dark.png",
        "48": "images\/48x48dark.png",
        "128": "images\/128x128dark.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/16x16dark.png",
            "32": "images\/32x32dark.png",
            "48": "images\/48x48dark.png",
            "128": "images\/128x128dark.png"
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/cdn.jsdelivr.net\/alasql\/0.2\/alasql.min.js 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2
}