leetpulse is a spaced-repetition tool for coding problems. It helps you review and master problems by analyzing your submissions and scheduling optimal review dates.
You can test the app by submitting sample code for problems. Here's an example:
function twoSum(nums, target) { const map = {}; for (let i = 0; i < nums.length; i++) { const complement = target - nums[i]; if (map[complement] !== undefined) return [map[complement], i]; map[nums[i]] = i; } return []; }
Paste this code into the editor for the "Two Sum" problem and click Submit to see the analysis.
For any bugs or suggestions, contact the developer at leetpulse@gmail.com.