diff --git a/README.md b/README.md index 7975ba9..6d8583b 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,19 @@ Lastly, you can get minus points. If a row contains at least one colored tile, a That should help you decide which blocks to drop, and where! +The rewards are like follows: + +| Emoji | Color code | Points | Multiplication factor | +|-------|------------|--------|-----------------------| +| 🟦 | "B" | 100 | 0 | +| 🟨 | "Y" | 1 | 3 | +| 🟩 | "G" | 1 | 1 | +| 🟪 | "P" | 5 | 2 | +| 🟧 | "O" | 5 | 3 | +| 🟥 | "R" | 8 | 4 | + +Good luck! 💪🏻 + ## Your Solution 💻 Your solution should be a `.txt` file where each line specifies which block (by block ID) to drop in the field, and at which x-coordinate. To clarify, the *bottom left* of the block will be dropped at the provided x-coordinate in the field. diff --git a/quick_start.ipynb b/quick_start.ipynb index 25e7180..1c4c4f5 100644 --- a/quick_start.ipynb +++ b/quick_start.ipynb @@ -9,7 +9,21 @@ "# PyData DropBlox coding competition 🧱\n", "This Notebook shows you how to generate submissions. The real optimization work is up to you! ✌🏻 \n", "\n", - "> Hosted by [GoDataDriven](https://godatadriven.com/) for PyConDE & PyData Berlin 2022.\n" + "> Hosted by [GoDataDriven](https://godatadriven.com/) for PyConDE & PyData Berlin 2022.\n", + "\n", + "\n", + "The rewards are like follows:\n", + "\n", + "| Emoji | Color code | Points | Multiplication factor |\n", + "|-------|------------|--------|-----------------------|\n", + "| 🟦 | \"B\" | 100 | 0 |\n", + "| 🟨 | \"Y\" | 1 | 3 |\n", + "| 🟩 | \"G\" | 1 | 1 |\n", + "| 🟪 | \"P\" | 5 | 2 |\n", + "| 🟧 | \"O\" | 5 | 3 |\n", + "| 🟥 | \"R\" | 8 | 4 |\n", + "\n", + "Good luck! 💪🏻" ] }, {