Files
LeetCode-Questions-CompanyWise/spotify_6months.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.4 KiB

1IDTitleAcceptanceDifficultyFrequencyLeetcode Question Link
2286Walls and Gates54.5%Medium0.04493831094219302https://leetcode.com/problems/walls-and-gates
3383Ransom Note53.1%Easy0.0326012144306243https://leetcode.com/problems/ransom-note
4784Letter Case Permutation64.6%Medium0.02026411791905559https://leetcode.com/problems/letter-case-permutation
5443String Compression41.3%Easy0.01390843004613198https://leetcode.com/problems/string-compression
622Generate Parentheses62.7%Medium0.009785877810632554https://leetcode.com/problems/generate-parentheses
7206Reverse Linked List62.5%Easy0.009326794511974934https://leetcode.com/problems/reverse-linked-list
820Valid Parentheses39.0%Easy0.009170695326061695https://leetcode.com/problems/valid-parentheses
9128Longest Consecutive Sequence45.1%Hard0.009051883485315484https://leetcode.com/problems/longest-consecutive-sequence
103Longest Substring Without Repeating Characters30.4%Medium0.006208067119374334https://leetcode.com/problems/longest-substring-without-repeating-characters
11127Word Ladder29.6%Medium0.005979091056058075https://leetcode.com/problems/word-ladder
12215Kth Largest Element in an Array55.4%Medium0.003902443976931749https://leetcode.com/problems/kth-largest-element-in-an-array
13347Top K Frequent Elements61.2%Medium0.0014856636219477439https://leetcode.com/problems/top-k-frequent-elements