mirror of
https://github.com/krishnadey30/LeetCode-Questions-CompanyWise.git
synced 2025-12-28 05:34:42 +00:00
## 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)
```
1.0 KiB
1.0 KiB
| 1 | ID | Title | Acceptance | Difficulty | Frequency | Leetcode Question Link |
|---|---|---|---|---|---|---|
| 2 | 166 | Fraction to Recurring Decimal | 21.6% | Medium | 0.3214580219607569 | https://leetcode.com/problems/fraction-to-recurring-decimal |
| 3 | 945 | Minimum Increment to Make Array Unique | 46.3% | Medium | 0.24996776739863846 | https://leetcode.com/problems/minimum-increment-to-make-array-unique |
| 4 | 691 | Stickers to Spell Word | 42.9% | Hard | 0.2131528906392817 | https://leetcode.com/problems/stickers-to-spell-word |
| 5 | 592 | Fraction Addition and Subtraction | 49.0% | Medium | 0.1394125430225106 | https://leetcode.com/problems/fraction-addition-and-subtraction |
| 6 | 598 | Range Addition II | 49.6% | Easy | 0.0863907376989368 | https://leetcode.com/problems/range-addition-ii |
| 7 | 14 | Longest Common Prefix | 35.4% | Easy | 0.012650390082165711 | https://leetcode.com/problems/longest-common-prefix |
| 8 | 234 | Palindrome Linked List | 39.3% | Easy | 0.009716151141728767 | https://leetcode.com/problems/palindrome-linked-list |
| 9 | 23 | Merge k Sorted Lists | 40.2% | Hard | 0.008699909875545938 | https://leetcode.com/problems/merge-k-sorted-lists |