You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is reserved for developers who are new to AlgoBuddy or open-source contributing.
Description of the Issue
The visualizer for 3Sum (LeetCode #15) is currently in Developer Mode ([EXP]). We need to audit its step generator, verify active line highlighting, add an automated unit test, and promote it to Public Release status (AuditStatus::Audited).
First Timers Only
This issue is reserved for developers who are new to AlgoBuddy or open-source contributing.
Description of the Issue
The visualizer for 3Sum (LeetCode #15) is currently in Developer Mode (
[EXP]). We need to audit its step generator, verify active line highlighting, add an automated unit test, and promote it to Public Release status (AuditStatus::Audited).Implementation Steps
cargo run -- --devand select 3Sum (Add category completion ratios to NeetCode Mastery Dashboard #15).i,left,right) and triplet accumulation match execution steps.src/app.rsunder#[cfg(test)] mod testsand add a unit test asserting step output for[-1,0,1,2,-1,-4].src/model/problem.rsand updateaudit_status(&self)to includeProblem::ThreeSum.cargo testto verify all tests pass.Acceptance Criteria
cargo fmt --all -- --checkcompletes without warnings.cargo testpasses 100% of unit tests.dev.Step-by-Step Contribution Guide
devnamedaudit-[problem-slug].cargo fmt --allandcargo testlocally to verify build health.devbranch.Additional Information