{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Ch13 Lab\n",
    "\n",
    "Build a small task-management simulation.\n",
    "\n",
    "Requirements:\n",
    "\n",
    "- Use a queue for incoming tasks.\n",
    "- Use a stack for undo history.\n",
    "- Use a dictionary to store task metadata by task ID.\n",
    "- Demonstrate adding three tasks, completing two tasks, undoing one action, and looking up one task by ID.\n",
    "- Include short comments explaining why each structure was chosen."
   ],
   "id": "f6201640"
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "name": "python",
   "version": "3.11.0"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
