├── .gitignore ├── 100-pandas-puzzles-with-solutions.ipynb ├── 100-pandas-puzzles.ipynb ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── img └── candle.jpg └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/* 2 | -------------------------------------------------------------------------------- /100-pandas-puzzles-with-solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajcr/100-pandas-puzzles/HEAD/100-pandas-puzzles-with-solutions.ipynb -------------------------------------------------------------------------------- /100-pandas-puzzles.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajcr/100-pandas-puzzles/HEAD/100-pandas-puzzles.ipynb -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajcr/100-pandas-puzzles/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajcr/100-pandas-puzzles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajcr/100-pandas-puzzles/HEAD/README.md -------------------------------------------------------------------------------- /img/candle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajcr/100-pandas-puzzles/HEAD/img/candle.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajcr/100-pandas-puzzles/HEAD/requirements.txt --------------------------------------------------------------------------------