Prototype based Javascript min(...), max(...) functions
Use cases
min(1,-1,2,3,4) == -1
max(2,10) == 10
function min() { return $A(arguments).min(); } function max() { return $A(arguments).max(); }
2695 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)
function min() { return $A(arguments).min(); } function max() { return $A(arguments).max(); }
#define COUNT_IF(ITERATION, CONDITION, COUNT) {COUNT =0; ITERATION {if(CONDITION) COUNT++;}} /* ex: COUNT_IF( for(i=0;i++;i<10), i%2==0, evens) [counting the number of evens.] */ #define SUM(ITERATION, EXPRESSION, SUMM) {SUMM =0; ITERATION {SUMM +=(EXPRESSION);}} /* if ITERATION is an empty iteration, the sum is 0 SUM( for(i=0;i<60;i++) if(zik[i]==sol[i]) , score[i], actual_score ) */ #define MAX_ELEM(ITERATION, EXPRESSION, MAX_VALUE, POSITION) { \ bool first233496 = true; \ ITERATION { \ if(first233496){ first233496 = false; POSITION ; MAX_VALUE =(EXPRESSION); } \ else if((EXPRESSION)> MAX_VALUE ){ POSITION ; MAX_VALUE =(EXPRESSION); } \ } \ } /* if ITERATION is an empty iteration, this macro does not work. ex: MAX_ELEM(for(x=0;x<5;x++) for(y=0;y<5;y++) , x-2*y , maximum , {m_x=x;m_y=y;} ); [ Set (m_x,m_y,maximum) := (x,y,x-2*y) when x-2*y achieves maximum value] ex: MAX_ELEM( ON(i,10), (10-v[i])*v[i], d, k=i); */