Browse Source

Add scoring scheme table 📜

pull/1/head
Jeroen Overschie 4 years ago
parent
commit
609a7111fe
No known key found for this signature in database
GPG Key ID: 3C6628AF1BF86633
  1. 13
      README.md
  2. 16
      quick_start.ipynb

13
README.md

@ -60,6 +60,19 @@ Lastly, you can get minus points. If a row contains at least one colored tile, a @@ -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.

16
quick_start.ipynb

@ -9,7 +9,21 @@ @@ -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! 💪🏻"
]
},
{

Loading…
Cancel
Save