Answers for "maximum number in array"

17

max value in array javascript

// For large data, it's better to use reduce. Supose arr has a large data in this case:
const arr = [1, 5, 3, 5, 2];
const max = arr.reduce((a, b) => { return Math.max(a, b) });

// For arrays with relatively few elements you can use apply: 
const max = Math.max.apply(null, arr);

// or spread operator:
const max = Math.max(...arr);
Posted by: Guest on November-27-2020
2

Find the maximum number of an array js

var arr = [1, 2, 3];
var max = arr.reduce(function(a, b) {
  return Math.max(a, b);
});
Posted by: Guest on October-22-2020
6

find maximum number in array

#include <stdio.h>
int main() {
    int i, n;
    float arr[100];
    printf("Enter the number of elements (1 to 100): ");
    scanf("%d", &n);

    for (i = 0; i < n; ++i) {
        printf("Enter number%d: ", i + 1);
        scanf("%f", &arr[i]);
    }

    // storing the largest number to arr[0]
    for (i = 1; i < n; ++i) {
        if (arr[0] < arr[i])
            arr[0] = arr[i];
    }

    printf("Largest element = %.2f", arr[0]);

    return 0;
}
Posted by: Guest on April-28-2020
1

Find Maximum array

Array -- Find Maximum
Write a method that can find the maximum number from an int Array
Solution 1:
public static void main(String[] args) {
    int[] arr = new int[]{2,4,6,8,20};
    System.out.println(maxValue(arr));

public static int maxValue( int[]  n ) {
int max = Integer.MIN_VALUE;
for(int each: n)
if(each > max)
max = each;
 
return max;
}
 
Solution 2:
public static int maxValue( int[]  n ) {
Arrays.sort( n );
return  n [ n.lenth-1 ];
}
Posted by: Guest on September-29-2021
4

js max value of array

let numbers = [4, 13, 27, 0, -5]; // Get max value of an array in Javascript

Math.max.apply(null, numbers); // returns 27
Posted by: Guest on March-25-2020
1

Find the maximum number of an array js

function getMaxOfArray(numArray) {
    return Math.max.apply(null, numArray);
}
Posted by: Guest on October-22-2020

Code answers related to "maximum number in array"

Browse Popular Code Answers by Language