Skip to content

Algorithm

Algorithms are detailed sets of guidelines created for a computer program to complete tasks efficiently and thoroughly.

Here are 7,358 public repositories matching this topic...

cclauss
cclauss commented Jul 28, 2019

The following do not yet have any pytests:

  • boolean_algebra
  • digital_image_processing
  • divide_and_conquer
  • hashes
  • linear_algebra #1124
  • networking_flow #1126
  • traversals
  • file_transfer_protocol # This might be difficult
  • machine_learning
  • neural_network

For ease of review, please only modify one directory per pull request.

azl397985856
azl397985856 commented Sep 30, 2019

给定一个原区间[x, y] (y>=x) 和 N个无序的目标区间[x1, y1],[x2, y2],[x3, y3] ... [xn, yn] 判断原区间是否在目标区间内(即\bigcup_{i=1}^{n}[x_i, y_i]是否成立)

例如给定原区间[1,6]和无序的目标区间[2, 3] , [1, 2], [3, 9]. 即可认为区间[1, 6]在[2, 3] , [1, 2], [3, 9]内, 如图所示:

image

PizzaBrandon
PizzaBrandon commented Jan 2, 2019

A short (3 point) closed linestring (rare, but does happen) throws an exception in clean-coords due to the code assuming it's a polygon.

Problem occurs due to https://github.com/Turfjs/turf/blob/master/packages/turf-clean-coords/index.ts#L118 assuming the first and last points matching means it's a polygon.

This can also happen with a linestring that is cleaned to < 4 points. Discovered thi

You can’t perform that action at this time.