This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Google Code Jam Template. | |
| Running regular solution locally with sample file: | |
| cat qx-sample.txt | python3 qx.py -d | |
| Where `qx-sample.txt` is a text file with input samples and | |
| `qx.py` is the file containing the runnable solution. | |
| Running interactive solution locally with test tool: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - (void)applyMapViewMemoryHotFix { | |
| switch (self.mapView.mapType) { | |
| case MKMapTypeHybrid: | |
| self.mapView.mapType = MKMapTypeStandard; | |
| break; | |
| case MKMapTypeStandard: | |
| self.mapView.mapType = MKMapTypeHybrid; | |
| break; | |
| default: | |
| break; |