12 Nov 2023PythonUnknown

Dungeon Game

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.

available solution files

  • Python dungeon-game/solution.py

Solution files

Pythondungeon-game/solution.py
import pandas as pd
from typing import List

def getDataframeSize(players: pd.DataFrame) -> List[int]:
    rows, columns = players.shape
    return [rows, columns]