All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g2801_2900.s2888_reshape_data_concatenate.solution.py Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
# #Easy #2023_12_23_Time_441_ms_(96.26%)_Space_59_MB_(97.37%)

import pandas as pd

def concatenateTables(df1: pd.DataFrame, df2: pd.DataFrame) -> pd.DataFrame:
    return pd.concat([df1, df2], ignore_index=True)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy