索引index
查看集群状态:
GET _cat/health查看所有index: 说明:v是用来要求在结果中返回表头
GET _cat/indices?v
GET _aliases查看dev开头的index:
GET _cat/indices/dev*删除指定index:
DELETE test_omp复制或…
题目: 题解:
class Solution:def canMeasureWater(self, x: int, y: int, z: int) -> bool:if x y < z:return Falseif x 0 or y 0:return z 0 or x y zreturn z % math.gcd(x, y) 0