Skip to content

Add solution for finding median of two sorted arrays #3

Add solution for finding median of two sorted arrays

Add solution for finding median of two sorted arrays #3

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 .