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 @@
991,Broken Calculator,45.6%,Medium,0.3917108530690627, https://leetcode.com/problems/broken-calculator
1052,Grumpy Bookstore Owner,55.4%,Medium,0.20881791529768876, https://leetcode.com/problems/grumpy-bookstore-owner
403,Frog Jump,39.7%,Hard,0.0259249775263148, https://leetcode.com/problems/frog-jump
55,Jump Game,34.6%,Medium,0.011265609194218986, https://leetcode.com/problems/jump-game
45,Jump Game II,30.6%,Hard,0.009546611883579968, https://leetcode.com/problems/jump-game-ii
5,Longest Palindromic Substring,29.5%,Medium,0.002279333142507479, https://leetcode.com/problems/longest-palindromic-substring
ID,Title,Acceptance,Difficulty,Frequency,Leetcode Question Link
991,Broken Calculator,45.6%,Medium,0.3917108530690627, https://leetcode.com/problems/broken-calculator
1052,Grumpy Bookstore Owner,55.4%,Medium,0.20881791529768876, https://leetcode.com/problems/grumpy-bookstore-owner
403,Frog Jump,39.7%,Hard,0.0259249775263148, https://leetcode.com/problems/frog-jump
55,Jump Game,34.6%,Medium,0.011265609194218986, https://leetcode.com/problems/jump-game
45,Jump Game II,30.6%,Hard,0.009546611883579968, https://leetcode.com/problems/jump-game-ii
5,Longest Palindromic Substring,29.5%,Medium,0.002279333142507479, https://leetcode.com/problems/longest-palindromic-substring
1 991 ID Broken Calculator Title 45.6% Acceptance Medium Difficulty 0.3917108530690627 Frequency https://leetcode.com/problems/broken-calculator Leetcode Question Link
2 1052 991 Grumpy Bookstore Owner Broken Calculator 55.4% 45.6% Medium Medium 0.20881791529768876 0.3917108530690627 https://leetcode.com/problems/grumpy-bookstore-owner https://leetcode.com/problems/broken-calculator
3 403 1052 Frog Jump Grumpy Bookstore Owner 39.7% 55.4% Hard Medium 0.0259249775263148 0.20881791529768876 https://leetcode.com/problems/frog-jump https://leetcode.com/problems/grumpy-bookstore-owner
4 55 403 Jump Game Frog Jump 34.6% 39.7% Medium Hard 0.011265609194218986 0.0259249775263148 https://leetcode.com/problems/jump-game https://leetcode.com/problems/frog-jump
5 45 55 Jump Game II Jump Game 30.6% 34.6% Hard Medium 0.009546611883579968 0.011265609194218986 https://leetcode.com/problems/jump-game-ii https://leetcode.com/problems/jump-game
6 5 45 Longest Palindromic Substring Jump Game II 29.5% 30.6% Medium Hard 0.002279333142507479 0.009546611883579968 https://leetcode.com/problems/longest-palindromic-substring https://leetcode.com/problems/jump-game-ii
7 5 Longest Palindromic Substring 29.5% Medium 0.002279333142507479 https://leetcode.com/problems/longest-palindromic-substring