Tagged Questions
The maximum value is an extreme value in a given function or dataset.
77
votes
4answers
17k views
Maximum length of a valid email address
What is the maximum length of a valid email address? Is it defined by any standard?
55
votes
2answers
13k views
Maximum length of the textual representation of an IPv6 address? [closed]
I want to store the data returned by $_SERVER["REMOTE_ADDR"] in PHP into a DB field, pretty simple task, really. The problem is that I can't find any proper information about the maximum length of the ...
21
votes
4answers
611 views
Which maximum does Python pick in the case of a tie?
When using the max() function in Python to find the maximum value in a list (or tuple, dict etc.) and there is a tie for maximum value, which one does Python pick? Is it random?
This is relevant if, ...
19
votes
5answers
9k views
Getting key with maximum value in dictionary?
I have a dictionary: keys are strings, values are integers. Example: stats = {'a':1000, 'b':3000, 'c': 100}.
I'd like to get 'b' as an answer, since it's the key with a higher value.
I did the ...
18
votes
3answers
3k views
Aggregate Relational Algebra (Maximum)
I am currently working on a homework assignment that requires a selection to occur that pulls out an element containing a specific attribute of maximum value compared to all other records. I've read a ...
17
votes
5answers
4k views
Does sleep time count for execution time limit?
I have two questions concerning the sleep() function in PHP:
Does the sleep time affect the maximum execution time limit of my PHP scripts? Sometimes, PHP shows the message "maximum execution time ...
13
votes
4answers
2k views
Maximum Year in Expry Date of Credit Card
Various online services have different values for maximum year of expiry, when it comes to Credit Cards.
For instance:
Basecamp: +15 years (2025)
Amazon: +20 years (2030)
Paypal: +19 years (2029)
...
11
votes
8answers
562 views
Algorithm to locate local maxima
I have data that always looks something like this:
I need an algorithm to locate the three peaks.
The x-axis is actually a camera position and the y-axis is a measure of image focus/contrast at ...
9
votes
5answers
6k views
Getting the submatrix with maximum sum?
Input: A 2-dimensional array NxN - Matrix - with positive and negative elements.Output: A submatrix of any size such that its summation is the maximum among all possible submatrices.
Requirement: ...
8
votes
4answers
285 views
Python - find the item with maximum occurrences
In Python, I have a list
L = [1, 2, 45, 55, 5, 4, 4, 4, 4, 4, 4, 5456, 56, 6, 7, 67]
I want to figure out the number which occurred the maximum number of times. I am able to solve it but I need ...
8
votes
3answers
736 views
Php trapping maximun execution time error
Is there a way in PHP to trap the fatal error when the max execution time is reached and give the user a better message?
7
votes
7answers
2k views
What is the easiest way to get a key with the highest value from a hash in Perl?
What is the easiest way to get a key with the highest value from a hash in Perl?
7
votes
4answers
2k views
In Ruby, what is the cleanest way of obtaining the index of the largest value in an array?
If a is the array, I want a.index(a.max), but something more Ruby-like. It should be obvious, but I'm having trouble finding the answer at so and elsewhere. Obviously, I am new to Ruby.
Cary
7
votes
8answers
15k views
How many socket connections possible?
Has anyone an idea how many tcp-socket connections are possible on a modern standard root server? (There is in general less traffic on each connection, but all the connections have to be up all the ...
6
votes
2answers
366 views
What is the maximum amount memory Adobe AIR can utilize?
I've been doing some rapid prototyping for a game I'm thinking of building. one of the main things i want to do is map generation for a tile type map. While generating the map i end up using large ...
6
votes
1answer
704 views
Two-dimensional maximum subarray
Bentley's Programming Pearls (2nd ed.), in the chapter about the maximum subarray problem, describes its two-dimensional version:
...we are given an n × n array of reals, and we must find the ...
6
votes
2answers
234 views
maximum number of dominoes can be placed inside a figure
Suppose some figure on the squared paper. Sides of the figure go straight on the lines of squared paper. Figure may have any (not even convex) shape. How to find the maximum number of dominoes (1x2 ...
6
votes
6answers
915 views
Algorithm to find the maximum sum in a sequence of overlapping intervals
The problem I am trying to solve has a list of intervals on the number line, each with a pre-defined score. I need to return the maximum possible total score.
The catch is that the intervals ...
5
votes
1answer
60 views
Computing a moving maximum
I have a (large) array of numeric data (size N) and would like to compute an array of running maximums with a fixed window size w.
More directly, I can define a new array out[k-w+1] = ...
5
votes
1answer
1k views
What is the maximum iframe width of a facebook page? (July 2011)
What is the maximum iframe width of a facebook page?
5
votes
4answers
669 views
Maximum packing of rectangles in a circle
I work at a nanotech lab where I do silicon wafer dicing. (The wafer saw cuts only parallel lines) We are, of course, trying to maximize the yield of the die we cut. All the of die will be equal size, ...
5
votes
2answers
3k views
maximum float in python
I think the maximum integer in python is available by calling sys.maxint, whereas the maximum float or long, what is it?
5
votes
2answers
240 views
What algorithm to use for optimization af a function of N variables?
Given the function y=f(x1,x2,x3,x4,x5,x6), I'm trying to find the values of x1..x6, where the function reaches its maximum. The function is quite well behaved, continuous, with a single peak with the ...
5
votes
1answer
905 views
Make an image fit in a rectangle
If I have an image of which I know the height and the width, how can I fit it in a rectangle with the biggest possible size without stretching the image.
Pseudo code is enough (but I'm going to use ...
5
votes
6answers
4k views
Set UITextField Maximum Length
Is there any way to set the maximum length on a UITextField?
Something like the MAXLENGTH attribute in HTML input fields.
5
votes
3answers
946 views
Why does my Perl max() function always return the first element of the array?
I am relatively new to Perl and I do not want to use the List::Util max function to find the maximum value of a given array.
When I test the code below, it just returns the first value of the array, ...
5
votes
2answers
708 views
List minimum in Python with None?
Is there any clever in-built function or something that will return 1 for the min() example below? (I bet there is a solid reason for it not to return anything, but in my particular case I need it to ...
5
votes
7answers
157 views
Find row with maximum value of id in MySQL
Take a look at the MySQL table below called "Articles":
+----+-----------+---------+------------------------+--------------------------+
| id | articleId | version | title | content ...
4
votes
2answers
141 views
Maximum Independent Set Algorithm
I don't believe there exists an algorithm for finding the maximum independent vertex set in a bipartite graph other than the brute force method of finding the maximum among all possible independent ...
4
votes
1answer
80 views
How to determine the maximum stack size limit?
I want to determine the maximum size of the stack programmatically from within Java (the size set by -Xss). How do I do this?
Alternatively, as my Java module also uses a native code module, I would ...
4
votes
2answers
120 views
What is the maximum number of sites in Plone 4.1
I would like to know how many sites / virtual hosts are allowed in a single installation of Plone. I am currently using a zeocluster installation. I am interested in the theoretical maximum i.e. ...
4
votes
2answers
162 views
Finding Local maximum in C
I would like to find the local maximum within the interval of 0 to 3.1416 for this Sin(x) function. But it shows always 0 as the maximum value.i.e The maximum value=0; Please help me finding my ...
4
votes
4answers
1k views
Find the maximum value of a matrix subset in MATLAB while preserving the indices of the full matrix
Currently, I'm able to find the max value of a matrix C and its index with the following code:
[max_C, imax] = max(C(:));
[ypeak, xpeak] = ind2sub(size(C),imax(1));
Let's call a subset of the ...
4
votes
2answers
2k views
Maximum size of a php session
I would like to know what's the maximum size that can be stored in a php session,
Thanks
4
votes
5answers
774 views
Does Java IO have a maximum file name length?
Different operating systems have different file name max lengths. Does Java have any limit on file name length when working with files?
4
votes
2answers
437 views
Viewing file in emacs that exceeds maximum buffer size
Is it possible to view part of the file at a time? BTW I am on 64-bit Ubuntu
4
votes
7answers
3k views
PHP Retrieve minimum and maximum values in a 2D associative array
I have an array in this format:
Array
(
[0] => Array
(
[id] => 117
[name] => Networking
[count] => 16
)
[1] => Array
...
4
votes
3answers
7k views
Windows Username maximim length
How long is the maximium lenght of a windows username incl. domain?
domain\username
regards
3
votes
3answers
130 views
Way to update 3 variables depending on a fourth in Mathematica
I have defined three variables a,b,c before a while loop, then compute a new var d.
I want to get rid of the biggest value in the three vars a,b,c and then replace it with d value; So I can keep the ...
3
votes
4answers
170 views
Maximum Countiguous Negative Sum or Mnimum positive subsequence sum problem
We all heard of bentley's beautiful proramming pearls problem
which solves maximum subsequence sum:
maxsofar = 0;
maxcur = 0;
for (i = 0; i < n; i++) {
maxcur = max(A[i] + maxcur, 0);
maxsofar ...
3
votes
2answers
131 views
How can I make Rails ActiveRecord automatically truncate values set to attributes with maximum length?
Assuming that I have a class such as the following:
class Book < ActiveRecord::Base
validates :title, :length => {:maximum => 10}
end
Is there a way (gem to install?) that I can have ...
3
votes
2answers
170 views
How to speed this kind of for-loop?
I would like to compute the maximum of translated images along the direction of a given axis. I know about ordfilt2, however I would like to avoid using the Image Processing Toolbox.
So here is the ...
3
votes
5answers
95 views
SQL select maximal value from Table
On one of my interviews I was asked how it's possible to select
maximal value from DB without keyword MAX and TOP.
My answer was:
select Table.Value
from Table
where Table.Value >= all( select ...
3
votes
1answer
402 views
.NET ListView, max number of characters, or maximum column width? Possible to override/expand?
I have a .NET ListView control in which I display stack traces. I used the ListView since I needed to manipulate the font/colors of certain lines.
However, it seems there is some kind of maximum ...
3
votes
1answer
2k views
How to scale down a range of numbers with a known min and max value
So I am trying to figure out how to take a range of numbers and scale the values down to fit a range. The reason for wanting to do this is that I am trying to draw ellipses in a java swing jpanel. I ...
3
votes
0answers
485 views
My naive maximal clique finding algorithm runs faster than Bron-Kerbosch's. What's wrong?
In short, my naive code (in Ruby) looks like:
# $seen is a hash to memoize previously seen sets
# $sparse is a hash of usernames to a list of neighboring usernames
# $set is the list of output ...
3
votes
1answer
139 views
Find maximum of a function
I need to find a maximum of the function:
a1^x1 * const1 + a2^x2 * const2 +....+ ak^xk * constk = qaulity
where xk>0 and xk is integer. ak is constant.
constraint:
a1^x1 * const1*func(x1) + a2^x2 ...
3
votes
1answer
363 views
Calculating the maximum size of a signed integer
I wanted to know what the maximum value my time_tcan hold was, so I wrote a little program helping me. It needs one argument: the amount of bytes (1 byte = 8 bits). So I wrote it and tested it. It ...
3
votes
1answer
339 views
Finding the maximum value in a column using GQL
How do I find the maximum value in a particular column of a table in the GAE datastore using GQL?
3
votes
4answers
468 views
Nested query to find details in table B for maximum value in table A
I've got a huge bunch of flights travelling between airports.
Each airport has an ID and (x,y) coordinates.
For a given list of flights belonging to a user, I want to find the northernmost ...