{"id":31786494,"url":"https://github.com/mustafaaly7/dsa-practice-javascript","last_synced_at":"2025-10-10T12:59:21.487Z","repository":{"id":318674477,"uuid":"1072298756","full_name":"mustafaaly7/dsa-practice-javascript","owner":"mustafaaly7","description":"A personal collection of core DSA problems implemented in JavaScript — focused on logic building, array manipulation, loops, and fundamental algorithms.  Built to prepare for coding interviews and strengthen problem-solving skills from scratch.","archived":false,"fork":false,"pushed_at":"2025-10-08T14:34:12.000Z","size":4,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-08T16:08:57.493Z","etag":null,"topics":["advanced-programming","basics-of-javascript","dsa","dsa-practice","interview-questions","practice","questions-and-answers","tricky-problems"],"latest_commit_sha":null,"homepage":"https://mustafa-ali-portfolio.vercel.app/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mustafaaly7.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-08T14:26:10.000Z","updated_at":"2025-10-08T14:36:10.000Z","dependencies_parsed_at":"2025-10-08T16:09:13.662Z","dependency_job_id":"e66a31f8-a494-47f2-831d-b697d58bb12f","html_url":"https://github.com/mustafaaly7/dsa-practice-javascript","commit_stats":null,"previous_names":["mustafaaly7/dsa-practice-javascript"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/mustafaaly7/dsa-practice-javascript","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustafaaly7%2Fdsa-practice-javascript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustafaaly7%2Fdsa-practice-javascript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustafaaly7%2Fdsa-practice-javascript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustafaaly7%2Fdsa-practice-javascript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mustafaaly7","download_url":"https://codeload.github.com/mustafaaly7/dsa-practice-javascript/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustafaaly7%2Fdsa-practice-javascript/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279003900,"owners_count":26083642,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["advanced-programming","basics-of-javascript","dsa","dsa-practice","interview-questions","practice","questions-and-answers","tricky-problems"],"created_at":"2025-10-10T12:59:20.520Z","updated_at":"2025-10-10T12:59:21.480Z","avatar_url":"https://github.com/mustafaaly7.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🧠 DSA Practice in JavaScript\n\nA structured collection of my **Data Structures \u0026 Algorithms** practice problems written in **JavaScript**.\n\nThis repository helps me prepare for **coding interviews**, **logic-based tests**, and **algorithmic thinking** by solving core problems without relying on prebuilt methods.\n\n---\n\n## 📂 Structure\n\n| Folder | Description |\n|--------|--------------|\n| `01-Basics/` | Simple array and loop-based problems — max, min, sum, even/odd separation |\n| `02-Intermediate/` | Problems involving logic and conditions — missing number, rotation, sorting checks |\n| `03-Advanced/` | Algorithmic thinking — Kadane’s, pair sums, max differences, and more |\n\n---\n\n## 🧩 Topics Covered\n- Array traversal and manipulation  \n- Conditional logic and iterations  \n- Searching and sorting logic  \n- Basic algorithm patterns (max/min, sums, frequency, rotation)\n- Problem-solving using pure JavaScript (no libraries)\n\n---\n\n## 🧠 Example Problem\n\n```js\n// find-max.js\nconst arr = [10, 5, 4, 6, 0, 9, 7, 100];\nlet maxVal = arr[0];\n\nfor (let i = 0; i \u003c arr.length; i++) {\n  if (arr[i] \u003e maxVal) {\n    maxVal = arr[i];\n  }\n}\n\nconsole.log(\"Maximum value:\", maxVal); // 100\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmustafaaly7%2Fdsa-practice-javascript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmustafaaly7%2Fdsa-practice-javascript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmustafaaly7%2Fdsa-practice-javascript/lists"}