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,7 +1,8 @@
336,Palindrome Pairs,33.7%,Hard,0.09524900495801866, https://leetcode.com/problems/palindrome-pairs
999,Available Captures for Rook,66.7%,Easy,0.06736553182757604, https://leetcode.com/problems/available-captures-for-rook
72,Edit Distance,44.8%,Hard,0.039482058697133414, https://leetcode.com/problems/edit-distance
332,Reconstruct Itinerary,36.7%,Medium,0.013755375068485329, https://leetcode.com/problems/reconstruct-itinerary
273,Integer to English Words,27.1%,Hard,0.012081089250339716, https://leetcode.com/problems/integer-to-english-words
415,Add Strings,47.5%,Easy,0.007587289812159497, https://leetcode.com/problems/add-strings
91,Decode Ways,24.7%,Medium,0.005968385368349129, https://leetcode.com/problems/decode-ways
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
336,Palindrome Pairs,33.7%,Hard,0.09524900495801866, https://leetcode.com/problems/palindrome-pairs
999,Available Captures for Rook,66.7%,Easy,0.06736553182757604, https://leetcode.com/problems/available-captures-for-rook
72,Edit Distance,44.8%,Hard,0.039482058697133414, https://leetcode.com/problems/edit-distance
332,Reconstruct Itinerary,36.7%,Medium,0.013755375068485329, https://leetcode.com/problems/reconstruct-itinerary
273,Integer to English Words,27.1%,Hard,0.012081089250339716, https://leetcode.com/problems/integer-to-english-words
415,Add Strings,47.5%,Easy,0.007587289812159497, https://leetcode.com/problems/add-strings
91,Decode Ways,24.7%,Medium,0.005968385368349129, https://leetcode.com/problems/decode-ways
1 336 ID Palindrome Pairs Title 33.7% Acceptance Hard Difficulty 0.09524900495801866 Frequency https://leetcode.com/problems/palindrome-pairs Leetcode Question Link
2 999 336 Available Captures for Rook Palindrome Pairs 66.7% 33.7% Easy Hard 0.06736553182757604 0.09524900495801866 https://leetcode.com/problems/available-captures-for-rook https://leetcode.com/problems/palindrome-pairs
3 72 999 Edit Distance Available Captures for Rook 44.8% 66.7% Hard Easy 0.039482058697133414 0.06736553182757604 https://leetcode.com/problems/edit-distance https://leetcode.com/problems/available-captures-for-rook
4 332 72 Reconstruct Itinerary Edit Distance 36.7% 44.8% Medium Hard 0.013755375068485329 0.039482058697133414 https://leetcode.com/problems/reconstruct-itinerary https://leetcode.com/problems/edit-distance
5 273 332 Integer to English Words Reconstruct Itinerary 27.1% 36.7% Hard Medium 0.012081089250339716 0.013755375068485329 https://leetcode.com/problems/integer-to-english-words https://leetcode.com/problems/reconstruct-itinerary
6 415 273 Add Strings Integer to English Words 47.5% 27.1% Easy Hard 0.007587289812159497 0.012081089250339716 https://leetcode.com/problems/add-strings https://leetcode.com/problems/integer-to-english-words
7 91 415 Decode Ways Add Strings 24.7% 47.5% Medium Easy 0.005968385368349129 0.007587289812159497 https://leetcode.com/problems/decode-ways https://leetcode.com/problems/add-strings
8 91 Decode Ways 24.7% Medium 0.005968385368349129 https://leetcode.com/problems/decode-ways