python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Find max number in an array using function javascript
I need to use function that takes an array of numbers as an argument. The function is to return the largest value from the set (variable randomNumbers). I need to assign the result of the action to a ...
Stacey
Votes: 0
Answers: 1
Max and Group by functions in SQL Server
my sql got a bit rusty and I was wondering if there is a simple solution for my ask. I'm trying to get two unique UUIDs with with MAX ModifiedTime. Below is my code that I tried to simplify as much as...
user7948585
Votes: 0
Answers: 3
Scilab: Finding Max Number in CSV
Just started on scilab, I'm trying to extract csv file and search for the highest value from the data set in a specific column with print out of a line "The highest value is X."
function Max...
Andrew
Votes: 0
Answers: 1
Problem with returning a string, nothing is returned while storing max and min
public static String highLow(String s) {
String high = " ";
String low = " ";
int max = -10000;
int min = 10000;
char...
CoderLala
Votes: 0
Answers: 2