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
# print the list of all files in the leetcode directory | |
import os | |
import pathlib | |
import glob | |
import itertools | |
files = pathlib.Path("leetcode") | |
file_ext = ['cpp', 'py', 'postgresql'] | |
new_folder = './leetcode-solutions' |