This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### Windows 10 requirements #### | |
# -> python3 (from Microsoft Store (python 3.8) or official Python website) | |
# -> youtube_dl (Pip: pip install --upgrade youtube_dl) | |
# -> ffmpeg (Choco: choco install ffmpeg) | |
# Launch program with cmd: python3 path\to\mp3Downloader.py | |
from __future__ import unicode_literals | |
import youtube_dl | |
from tkinter import * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program merge_sort; | |
const | |
dim = 9; | |
var | |
v: array [1..dim] of integer = (5, 9, 1, 3, 4, 6, 6, 3, 2); | |
i: integer; | |
procedure MergeSort(min, max: integer); |