Top "Min" questions

Minimum value.

Most efficient way to find the greatest of three ints

Below is my pseudo code. function highest(i, j, k) { if(i > j && i > k) { return …

c++ performance max min
is there a method to get the Max and Min of an NSMutableArray

Is there a way in iOS for me to get the Max and Min values of an NSMutableArray of double …

ios nsmutablearray max min
PowerPivot DAX - Dynamic Ranking Per Group (Min Per Group)

I am searching for a method to utilize within Microsoft PowerPivot 2010 that will allow me to perform dynamic ranking that …

min powerpivot dax rank
Find max/min of vector of vectors

What is the most efficient and standard (C++11/14) way to find the max/min item of vector of vectors? std::…

c++ c++11 vector max min
Find closest value to 0 in range of values in Excel (with non-numeric fields)

I have a range of cells in Excel with various positive and negative numbers. The value of the cell is …

excel min absolute-value
Using MIN/MAX in excel array formula

I have a simple array formula in excel that doesn't work in the way I wish. In columns A and …

excel max min array-formulas
Retrieve largest negative number and smallest positive number from list

Given a list of integers, e.g.: lst = [-5, -1, -13, -11, 4, 8, 16, 32] is there a Pythonic way of retrieving the …

python list max min negative-number
Python min/max on None type

I noticed that while the 'max' function do well on None type: In [1]: max(None, 1) Out[1]: 1 'min' function doesn't return …

python min nonetype
Octave: find the minimum value in a row, and also it's index

How would one find the minimum value in each row, and also the index of the minimum value? octave:1> …

find octave min indices
Get more info from a MAX(ID), MIN(ID) MYSQL query?

How to get more columns from MAX(ID), MIN(ID) MYSQL query? Currently I get only two values: MAX(ID) &…

mysql max min