We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbdcb1d commit 7a7e105Copy full SHA for 7a7e105
problem_2878.py
@@ -0,0 +1,10 @@
1
+import pandas as pd
2
+from typing import List
3
+import numpy as np
4
+
5
+#df = pd.DataFrame(np.random.rand(10,5),columns=['col1','col2','col3','col4','col5'])
6
7
+def getDataframeSize(players: pd.DataFrame) -> List[int]:
8
+ return list(players.shape)
9
10
+#print(getDataframeSize(df))
0 commit comments