[LeetCode] Pandas / 2887. Fill missing data

2024. 7. 8. 15:00Coding/LeetCode-Pandas

문제 링크

https://leetcode.com/problems/fill-missing-data/description/

 

문제 

 

 

코드 

import pandas as pd

def fillMissingValues(products: pd.DataFrame) -> pd.DataFrame:
    products["quantity"]=products["quantity"].fillna(0)
    return products