Questions tagged [maximize]

Maximize refers to the process of increasing a certain value to its fullest, biggest, or greatest (max).

396 questions
-3
votes
2 answers

Detect if browser window is maximized and at default (100%) zoom

I know it sounds weird but there really is a reason and it is in the users' best interest. I know that having the browser automatically maximize and set 100% might be problematic but how about making so that if the window is not maximized and the…
Mike Pala
  • 766
  • 1
  • 11
  • 39
-3
votes
1 answer

Using Python to find a global maximum from array of variables and functional values

In the case of my problem, I have a dataset with a function dependent on 4 variables. The dataset is in the form of an array whose rows have 5 columns, where columns 0,1,2,3 are input values and column 4 contains the output. I want to find the…
-3
votes
2 answers

Maximize absolute difference

Given an array of coins each having some value.Array size is N. You can change the value of any any coin except the first and last coin. You can change the value of ith coin to half of sum of value of (i-1)th and (i+1)th coin but for doing so, two…
Abhishek N
  • 57
  • 1
  • 8
-3
votes
1 answer

Maximize a1^a2^a3…^an where a1,a2,…,an is a permutation of {b1,b2,…,bn}

Maximize a1^a2^a3…^an where a1,a2,…,an is a permutation of {b1,b2,…,bn} Here is the complete description of the question you are given set B = {b1,b2..................bn} . Return permutation of B which maximizes a1^a2^a3........^an where…
-4
votes
1 answer

Modified maximum cost after replacement

Initial cost of items is provided by an array denoting cost of each items. These costs can be altered as if we are allowed to change the cost according to the offer applicable on the given day.(More clarification through example) For e.g., Cost of…
MetaD
  • 87
  • 1
  • 8
-4
votes
1 answer

Writing program to choose values from a list of integers

I have a list of integers, representing the yearly profit (in kilo euro) of n businesses (shops) along the high street in the City centre. I am given 4 (four) businesses ("for free"), that neighbour one another. The problem is to calculate which 4 I…
1 2 3
26
27