_0335

package
v0.0.0-...-a49be92 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 20, 2024 License: MIT Imports: 0 Imported by: 0

README

路径交叉

给你一个整数数组 distance__。

X-Y 平面上的点 (0,0) 开始,先向北移动 distance[0] 米,然后向西移动 distance[1] 米,向南移动 distance[2] 米,向东移动 distance[3] 米,持续移动。也就是说,每次移动后你的方位会发生逆时针变化。

判断你所经过的路径是否相交。如果相交,返回 true ;否则,返回 false

示例 1:

``` 输入:distance = [2,1,1,2] 输出:true


**示例 2:**

![](https://assets.leetcode.com/uploads/2021/03/14/selfcross2-plane.jpg)```
输入:distance = [1,2,3,4]
输出:false

示例 3:

``` 输入:distance = [1,1,1,1] 输出:true




**提示:**

* `1 <= distance.length <= 105`
* `1 <= distance[i] <= 105`

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL