A web application to improve your competitive programming skills and to help you prepare for interviews.
The application is built using FastAPI and React and uses codeforces and acodedaily APIs to fetch problems.
cd frontend
cd my-app
yarn install
yarn start
cd backend
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn CF_ACD:app --reload