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,11 +1,12 @@
336,Palindrome Pairs,33.7%,Hard,0.10501458755636292, https://leetcode.com/problems/palindrome-pairs
72,Edit Distance,44.8%,Hard,0.08673866592531046, https://leetcode.com/problems/edit-distance
271,Encode and Decode Strings,31.5%,Medium,0.07197349962508924, https://leetcode.com/problems/encode-and-decode-strings
999,Available Captures for Rook,66.7%,Easy,0.06736553182757604, https://leetcode.com/problems/available-captures-for-rook
969,Pancake Sorting,67.5%,Medium,0.04908961019652358, https://leetcode.com/problems/pancake-sorting
165,Compare Version Numbers,27.4%,Medium,0.0351873674509732, https://leetcode.com/problems/compare-version-numbers
273,Integer to English Words,27.1%,Hard,0.026980053764546055, https://leetcode.com/problems/integer-to-english-words
415,Add Strings,47.5%,Easy,0.016991158247219373, https://leetcode.com/problems/add-strings
332,Reconstruct Itinerary,36.7%,Medium,0.013755375068485329, https://leetcode.com/problems/reconstruct-itinerary
91,Decode Ways,24.7%,Medium,0.013379120336324091, https://leetcode.com/problems/decode-ways
17,Letter Combinations of a Phone Number,46.8%,Medium,0.0044018999217624675, https://leetcode.com/problems/letter-combinations-of-a-phone-number
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
336,Palindrome Pairs,33.7%,Hard,0.10501458755636292, https://leetcode.com/problems/palindrome-pairs
72,Edit Distance,44.8%,Hard,0.08673866592531046, https://leetcode.com/problems/edit-distance
271,Encode and Decode Strings,31.5%,Medium,0.07197349962508924, https://leetcode.com/problems/encode-and-decode-strings
999,Available Captures for Rook,66.7%,Easy,0.06736553182757604, https://leetcode.com/problems/available-captures-for-rook
969,Pancake Sorting,67.5%,Medium,0.04908961019652358, https://leetcode.com/problems/pancake-sorting
165,Compare Version Numbers,27.4%,Medium,0.0351873674509732, https://leetcode.com/problems/compare-version-numbers
273,Integer to English Words,27.1%,Hard,0.026980053764546055, https://leetcode.com/problems/integer-to-english-words
415,Add Strings,47.5%,Easy,0.016991158247219373, https://leetcode.com/problems/add-strings
332,Reconstruct Itinerary,36.7%,Medium,0.013755375068485329, https://leetcode.com/problems/reconstruct-itinerary
91,Decode Ways,24.7%,Medium,0.013379120336324091, https://leetcode.com/problems/decode-ways
17,Letter Combinations of a Phone Number,46.8%,Medium,0.0044018999217624675, https://leetcode.com/problems/letter-combinations-of-a-phone-number
1 336 ID Palindrome Pairs Title 33.7% Acceptance Hard Difficulty 0.10501458755636292 Frequency https://leetcode.com/problems/palindrome-pairs Leetcode Question Link
2 72 336 Edit Distance Palindrome Pairs 44.8% 33.7% Hard Hard 0.08673866592531046 0.10501458755636292 https://leetcode.com/problems/edit-distance https://leetcode.com/problems/palindrome-pairs
3 271 72 Encode and Decode Strings Edit Distance 31.5% 44.8% Medium Hard 0.07197349962508924 0.08673866592531046 https://leetcode.com/problems/encode-and-decode-strings https://leetcode.com/problems/edit-distance
4 999 271 Available Captures for Rook Encode and Decode Strings 66.7% 31.5% Easy Medium 0.06736553182757604 0.07197349962508924 https://leetcode.com/problems/available-captures-for-rook https://leetcode.com/problems/encode-and-decode-strings
5 969 999 Pancake Sorting Available Captures for Rook 67.5% 66.7% Medium Easy 0.04908961019652358 0.06736553182757604 https://leetcode.com/problems/pancake-sorting https://leetcode.com/problems/available-captures-for-rook
6 165 969 Compare Version Numbers Pancake Sorting 27.4% 67.5% Medium Medium 0.0351873674509732 0.04908961019652358 https://leetcode.com/problems/compare-version-numbers https://leetcode.com/problems/pancake-sorting
7 273 165 Integer to English Words Compare Version Numbers 27.1% 27.4% Hard Medium 0.026980053764546055 0.0351873674509732 https://leetcode.com/problems/integer-to-english-words https://leetcode.com/problems/compare-version-numbers
8 415 273 Add Strings Integer to English Words 47.5% 27.1% Easy Hard 0.016991158247219373 0.026980053764546055 https://leetcode.com/problems/add-strings https://leetcode.com/problems/integer-to-english-words
9 332 415 Reconstruct Itinerary Add Strings 36.7% 47.5% Medium Easy 0.013755375068485329 0.016991158247219373 https://leetcode.com/problems/reconstruct-itinerary https://leetcode.com/problems/add-strings
10 91 332 Decode Ways Reconstruct Itinerary 24.7% 36.7% Medium Medium 0.013379120336324091 0.013755375068485329 https://leetcode.com/problems/decode-ways https://leetcode.com/problems/reconstruct-itinerary
11 17 91 Letter Combinations of a Phone Number Decode Ways 46.8% 24.7% Medium Medium 0.0044018999217624675 0.013379120336324091 https://leetcode.com/problems/letter-combinations-of-a-phone-number https://leetcode.com/problems/decode-ways
12 17 Letter Combinations of a Phone Number 46.8% Medium 0.0044018999217624675 https://leetcode.com/problems/letter-combinations-of-a-phone-number