Chore: Add headers to all the files (#54)

## Description
- Add headers to all the CSV files

## Script used
```py
import csv
import os

# Set the path of the folder containing the CSV files
folder_path = "./LeetCode-Questions-CompanyWise"
headers = [
    "ID",
    "Title",
    "Acceptance",
    "Difficulty",
    "Frequency",
    "Leetcode Question Link",
]

# Loop through all the CSV files in the folder
for file_name in os.listdir(folder_path):
    if file_name.endswith(".csv"):
        # Read the CSV file into a list of rows
        file_path = os.path.join(folder_path, file_name)
        with open(file_path, "r") as f:
            reader = csv.reader(f)
            rows = list(reader)

        has_headers = False
        if len(rows) > 0 and rows[0] == headers:
            has_headers = True

        if not has_headers:
            rows.insert(0, headers)

            # Write the list of rows back to the CSV file
            with open(file_path, "w", newline="") as f:
                writer = csv.writer(f)
                writer.writerows(rows)

```
This commit is contained in:
Krishna Kumar Dey
2023-04-01 11:07:49 +05:30
committed by GitHub
parent 0aeadbd612
commit fb5f78b55e
534 changed files with 20291 additions and 19757 deletions

View File

@@ -1,6 +1,7 @@
545,Boundary of Binary Tree,38.9%,Medium,0.03736177747025919, https://leetcode.com/problems/boundary-of-binary-tree
472,Concatenated Words,43.7%,Hard,0.024011429628186427, https://leetcode.com/problems/concatenated-words
140,Word Break II,32.6%,Hard,0.010661081786113668, https://leetcode.com/problems/word-break-ii
937,Reorder Data in Log Files,54.3%,Easy,0.00802733590076424, https://leetcode.com/problems/reorder-data-in-log-files
73,Set Matrix Zeroes,43.1%,Medium,0.006699070439072842, https://leetcode.com/problems/set-matrix-zeroes
200,Number of Islands,46.8%,Medium,0.002765297303115152, https://leetcode.com/problems/number-of-islands
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
545,Boundary of Binary Tree,38.9%,Medium,0.03736177747025919, https://leetcode.com/problems/boundary-of-binary-tree
472,Concatenated Words,43.7%,Hard,0.024011429628186427, https://leetcode.com/problems/concatenated-words
140,Word Break II,32.6%,Hard,0.010661081786113668, https://leetcode.com/problems/word-break-ii
937,Reorder Data in Log Files,54.3%,Easy,0.00802733590076424, https://leetcode.com/problems/reorder-data-in-log-files
73,Set Matrix Zeroes,43.1%,Medium,0.006699070439072842, https://leetcode.com/problems/set-matrix-zeroes
200,Number of Islands,46.8%,Medium,0.002765297303115152, https://leetcode.com/problems/number-of-islands
1 545 ID Boundary of Binary Tree Title 38.9% Acceptance Medium Difficulty 0.03736177747025919 Frequency https://leetcode.com/problems/boundary-of-binary-tree Leetcode Question Link
2 472 545 Concatenated Words Boundary of Binary Tree 43.7% 38.9% Hard Medium 0.024011429628186427 0.03736177747025919 https://leetcode.com/problems/concatenated-words https://leetcode.com/problems/boundary-of-binary-tree
3 140 472 Word Break II Concatenated Words 32.6% 43.7% Hard Hard 0.010661081786113668 0.024011429628186427 https://leetcode.com/problems/word-break-ii https://leetcode.com/problems/concatenated-words
4 937 140 Reorder Data in Log Files Word Break II 54.3% 32.6% Easy Hard 0.00802733590076424 0.010661081786113668 https://leetcode.com/problems/reorder-data-in-log-files https://leetcode.com/problems/word-break-ii
5 73 937 Set Matrix Zeroes Reorder Data in Log Files 43.1% 54.3% Medium Easy 0.006699070439072842 0.00802733590076424 https://leetcode.com/problems/set-matrix-zeroes https://leetcode.com/problems/reorder-data-in-log-files
6 200 73 Number of Islands Set Matrix Zeroes 46.8% 43.1% Medium Medium 0.002765297303115152 0.006699070439072842 https://leetcode.com/problems/number-of-islands https://leetcode.com/problems/set-matrix-zeroes
7 200 Number of Islands 46.8% Medium 0.002765297303115152 https://leetcode.com/problems/number-of-islands