this entry collects the solution files i have for dungeon game. i may expand it with a fuller write-up later, but the implementation files are already here.
available solution files
- Python
dungeon-game/solution.py
notes and solution files for dungeon game.
this entry collects the solution files i have for dungeon game. i may expand it with a fuller write-up later, but the implementation files are already here.
dungeon-game/solution.pyimport pandas as pd
from typing import List
def getDataframeSize(players: pd.DataFrame) -> List[int]:
rows, columns = players.shape
return [rows, columns]