Skip to content

Commit 7a7e105

Browse files
authored
Create problem_2878.py
1 parent fbdcb1d commit 7a7e105

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

problem_2878.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)