0
Mazin Ghazi Posted 9 years ago
Grammar

How to describe sorting?

I have a group of shapes in the Cartesian space, each shape has a maximum X value and a minimum X value. I would like to sorting them based on their maximum X value, so if the maximum X of the shape (a) is bigger than all the other maximum X of the other shapes, then shape (a) comes first.

Please, how can I describe it in formal academic writing?

  

Top answer

Given an unordered list of shapes where a (sub) i is the maximum X value of the i th shape, perform the operation as shown below. ( In line (3) invert the comparison operator so the larger elements, not the smaller ones) will come first in the list.

  • Given an unordered list of shapes where a (sub) i is the maximum X value of the i th shape, perform the operation as shown below.
  • ( In line (3) invert the comparison operator so the larger elements, not the smaller ones) will come first in the list.
Free · every Monday

Get the Weekly English Kit 📬

New words, one handy idiom, and a 2-minute quiz — delivered to your inbox to keep your streak alive.

1 Answers
0

Given an unordered list of shapes where a (sub) i is the maximum X value of the i th shape, perform the operation as shown below. ( In line (3) invert the comparison operator so the larger elements, not the smaller ones) will come first in the list.

Related Questions