A Flask-based REST API server built to submit our answers for the UBS Global Coding Challenge 2025. The challenge contained a wide variety of questions including data structures & algorithms, game simulation, and cybersecurity CTFs.
- Framework: Flask
- Architecture: REST API
- Language: Python
- Python 3.7+
- pip package manager
- Clone the repository:
git clone https://github.com/LemonDrew/codeSDK.git
cd codeSDK- Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate- Install dependencies:
pip install -r requirements.txtpython app.pyThe server will start on http://localhost:8080 by default.