LeetCode-Questions-CompanyWise/didi_2year.csv
Krishna Kumar Dey fb5f78b55e
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)

```
2023-04-01 11:07:49 +05:30

1.2 KiB

1IDTitleAcceptanceDifficultyFrequencyLeetcode Question Link
2364Nested List Weight Sum II62.8%Medium0.12431632201386382https://leetcode.com/problems/nested-list-weight-sum-ii
31293Shortest Path in a Grid with Obstacles Elimination42.8%Hard0.08167803101426718https://leetcode.com/problems/shortest-path-in-a-grid-with-obstacles-elimination
4815Bus Routes42.5%Hard0.06127490750055161https://leetcode.com/problems/bus-routes
51374Generate a String With Characters That Have Odd Counts75.4%Easy0.05887900525002278https://leetcode.com/problems/generate-a-string-with-characters-that-have-odd-counts
6402Remove K Digits28.4%Medium0.016240714250426138https://leetcode.com/problems/remove-k-digits
7863All Nodes Distance K in Binary Tree55.4%Medium0.0161554402222852https://leetcode.com/problems/all-nodes-distance-k-in-binary-tree
8116Populating Next Right Pointers in Each Node45.2%Medium0.007006509657930414https://leetcode.com/problems/populating-next-right-pointers-in-each-node
94Median of Two Sorted Arrays29.6%Hard0.00371713094107092https://leetcode.com/problems/median-of-two-sorted-arrays
101Two Sum45.6%Easy0.001767235914611495https://leetcode.com/problems/two-sum