This file contains 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
import sys | |
import math | |
class Robot: | |
MAX_FUEL = 200 | |
BASE_X = 0 | |
BASE_Y = 0 | |
BASE = (BASE_X, BASE_Y) | |
CAR_WEIGHT = 5 | |
SAMPLE_WEIGHT = 10 |
This file has been truncated, but you can view the full file.
This file contains 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
{"index": { "_id": 10259 } } | |
{"id": 10259, "cuisine": "greek", "ingredients": ["romaine lettuce", "black olives", "grape tomatoes", "garlic", "pepper", "purple onion", "seasoning", "garbanzo beans", "feta cheese crumbles"]} | |
{"index": { "_id": 25693 } } | |
{"id": 25693, "cuisine": "southern_us", "ingredients": ["plain flour", "ground pepper", "salt", "tomatoes", "ground black pepper", "thyme", "eggs", "green tomatoes", "yellow corn meal", "milk", "vegetable oil"]} | |
{"index": { "_id": 20130 } } | |
{"id": 20130, "cuisine": "filipino", "ingredients": ["eggs", "pepper", "salt", "mayonaise", "cooking oil", "green chilies", "grilled chicken breasts", "garlic powder", "yellow onion", "soy sauce", "butter", "chicken livers"]} | |
{"index": { "_id": 22213 } } | |
{"id": 22213, "cuisine": "indian", "ingredients": ["water", "vegetable oil", "wheat", "salt"]} | |
{"index": { "_id": 13162 } } |
This file contains 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
DELETE test | |
POST test | |
{ | |
"settings": { | |
"number_of_shards": 1, | |
"index": { | |
"number_of_replicas": "0" | |
} | |
}, |