{"id":26770507,"url":"https://github.com/utkarsh5026/smash-leetcode","last_synced_at":"2026-04-12T13:03:03.800Z","repository":{"id":283477578,"uuid":"941861064","full_name":"utkarsh5026/Smash-LeetCode","owner":"utkarsh5026","description":"Smash the LeetCode 👊 with your pretty fingers and with AI","archived":false,"fork":false,"pushed_at":"2025-03-20T13:40:01.000Z","size":599,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-20T13:44:04.193Z","etag":null,"topics":["client-server","fastapi","langchain","leetcode","leetcode-solutions","llm","python","react","redux","shadcn-ui","tailwind","typescript","vite"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/utkarsh5026.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}},"created_at":"2025-03-03T07:09:49.000Z","updated_at":"2025-03-20T13:40:05.000Z","dependencies_parsed_at":"2025-03-20T13:44:06.875Z","dependency_job_id":null,"html_url":"https://github.com/utkarsh5026/Smash-LeetCode","commit_stats":null,"previous_names":["utkarsh5026/smash-leetcode"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkarsh5026%2FSmash-LeetCode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkarsh5026%2FSmash-LeetCode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkarsh5026%2FSmash-LeetCode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkarsh5026%2FSmash-LeetCode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/utkarsh5026","download_url":"https://codeload.github.com/utkarsh5026/Smash-LeetCode/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246112665,"owners_count":20725301,"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","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":["client-server","fastapi","langchain","leetcode","leetcode-solutions","llm","python","react","redux","shadcn-ui","tailwind","typescript","vite"],"created_at":"2025-03-28T23:15:18.715Z","updated_at":"2026-04-12T13:03:03.760Z","avatar_url":"https://github.com/utkarsh5026.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 👊 Smash LeetCode\n\nA modern, AI-powered platform to help you master coding challenges and ace your technical interviews.\n\n![Smash LeetCode Banner](./images/home-page.png)\n![Leetcode Problems](./images/problems.png)\n\n## 🌟 Overview\n\nSmash LeetCode is my passion project built to make the process of learning algorithms and data structures more intuitive and enjoyable. As someone who's gone through the grind of technical interviews, I wanted to create a tool that I wish I had during my own preparation journey.\n\nThis app combines the best of LeetCode-style problems with an AI assistant that can:\n- Generate optimized solutions in multiple programming languages\n- Provide step-by-step explanations of algorithms\n- Give personalized hints when you're stuck\n- Analyze your code and suggest improvements\n\n## ✨ Features\n\n### 💻 Curated Coding Challenges\n- 200+ hand-picked problems covering essential algorithms and data structures\n- Problems organized by difficulty (Easy, Medium, Hard) and topic tags\n- Detailed problem descriptions with examples and constraints\n\n### 🤖 AI-Powered Solutions\n- Generate solutions in Python, JavaScript, Java, C++, and more\n- Multiple solution approaches with time and space complexity analysis\n- Step-by-step explanations in plain English\n\n### 🎯 Interactive Learning\n- Code editor with syntax highlighting\n- Customizable generation options for different solution approaches\n- Real-time chat interface for asking questions about problems\n\n### 📊 Progress Tracking\n- Track your solved problems and success rate\n- Identify strengths and weaknesses by topic\n- Focus on improving specific areas\n\n## 🛠️ Tech Stack\n\nI built this application using modern technologies to ensure a smooth, responsive experience:\n\n### Frontend\n- **React** with **TypeScript** for type safety\n- **Tailwind CSS** with shadcn/ui components for a sleek UI\n- **Framer Motion** for smooth animations\n- **Redux Toolkit** for state management\n\n### Backend\n- **FastAPI** for high-performance API endpoints\n- **SQLAlchemy** for database interactions\n- **LangChain** for LLM orchestration\n- **OpenAI API** (GPT-4o models) for AI assistance\n\n## 🚀 Getting Started\n\n### Prerequisites\n- Node.js 18+\n- Python 3.12+\n- OpenAI API key\n\n### Installation\n\n#### Client Setup\n```bash\n# Navigate to client directory\ncd client\n\n# Install dependencies\nnpm install\n\n# Start development server\nnpm run dev\n```\n\n#### Server Setup\n```bash\n# Navigate to server directory\ncd server\n\n# Create and activate virtual environment\npython -m venv venv\nsource venv/bin/activate  # On Windows: venv\\Scripts\\activate\n\n# Install dependencies\npip install -r requirements.txt\n# Or if using Poetry\npoetry install\n\n# Set up environment variables\ncp .env.example .env\n# Edit .env with your OpenAI API key\n\n# Start the server\npython -m src.main\n```\n\n## 📝 Project Structure\n\n```\nsmash-leetcode/\n├── client/                # React frontend\n│   ├── src/\n│   │   ├── components/    # React components\n│   │   ├── store/         # Redux store\n│   │   ├── config/        # Configuration files\n│   │   └── lib/           # Utility functions\n│   └── public/            # Static assets\n└── server/                # FastAPI backend\n    ├── src/\n    │   ├── llm/           # LLM integration\n    │   ├── problems/      # Problem definitions\n    │   ├── solution/      # Solution generation\n    │   ├── db/            # Database models\n    │   ├── cache/         # Caching utilities\n    │   └── routes/        # API endpoints\n    └── tests/             # Backend tests\n```\n\n## 🎨 UI Showcase\n\n### Problem List View\n![Problem List](https://i.imgur.com/TBDWTv7.png)\n\n### Problem Detail View\n![Problem Detail](https://i.imgur.com/nV2PjRx.png)\n\n### Solution Generation\n![Solution Generation](https://i.imgur.com/6LvWpKZ.png)\n\n## 🤝 Contributing\n\nI'd love your contributions to make Smash LeetCode even better! Here's how you can help:\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n### Development Guidelines\n- Follow the existing code style\n- Write meaningful commit messages\n- Add comments for complex logic\n- Test your changes thoroughly\n\n## 📈 Future Plans\n\nI'm constantly working to improve Smash LeetCode. Some features I'm planning to add:\n\n- User accounts and progress tracking\n- Code execution and test cases\n- Spaced repetition system for efficient learning\n- Interview simulation mode\n- Community features (discussions, user-submitted solutions)\n- Mobile app version\n\n## 🔒 License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## 🙏 Acknowledgements\n\nI couldn't have built this without these amazing resources:\n\n- [LeetCode](https://leetcode.com/) for inspiration\n- [OpenAI](https://openai.com/) for their powerful GPT models\n- [shadcn/ui](https://ui.shadcn.com/) for beautiful UI components\n- [FastAPI](https://fastapi.tiangolo.com/) for the robust backend framework\n- And all the open-source libraries that made this possible!\n\n---\n\nIf you find this project helpful, please consider giving it a star! ⭐ \nFeel free to reach out if you have any questions or suggestions.\n\nHappy coding! 🚀","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futkarsh5026%2Fsmash-leetcode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Futkarsh5026%2Fsmash-leetcode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futkarsh5026%2Fsmash-leetcode/lists"}