Skip to content

Add solutions for binary search problems: sqrt and arrange coins #7

Add solutions for binary search problems: sqrt and arrange coins

Add solutions for binary search problems: sqrt and arrange coins #7

Workflow file for this run

name: Format Check
on: [push, pull_request]
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install Black
run: pip install black
- name: Run Black
run: black --check .