Skip to content
View mostafaebrahimi's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report mostafaebrahimi

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
mostafaebrahimi/README.md

banner

Terminal boot sequence: docker compose up mostafa — backend, data, ai, infra and frontend services all start healthy

10+ years building production systems — now focused on LLM-powered automation, AI agents, and the platforms they run on.

🤖 AI Engineering

OpenAI Claude AI Agents RAG Structured Extraction Voice Agents

⚙️ Backend & Languages

backend

🗄️ Data

data

☁️ Infrastructure & Orchestration

infra

footer

Pinned Loading

  1. smallest positive integer (greater t... smallest positive integer (greater than 0) that does not occur in A.
    1
    function solution(A) {
    2
      let min = Math.min.apply(null, A);
    3
      return findMinOfNotOccuredInArray(0, min, A);
    4
    }
    5