Tagged Questions

A range is the set of allowed values for a variable. It can also refer to a DOM Range.

learn more… | top users | synonyms

111
votes
15answers
124k views

Java: generating random number in a range

I am trying to generate a random number with Java, but random in a specific range. For example, my range is 5-10, meaning that 5 is the smallest possible value the random number can take, and 10 is ...
39
votes
7answers
13k views

Should you always favor xrange() over range()?

Why or why not?
37
votes
9answers
27k views

Python decimal range() step value

Is there a way to step between 0 and 1 by 0.1? I thought I could do it like the following but it failed: for i in range(0, 1, 0.1): print i Instead, it says that the step argument cannot be ...
30
votes
8answers
5k views

Is it possible to implement a Python for range loop without an iterator variable?

Is is possible to do this; for i in range(some_number): #do something without the i? If you just want to do something x amount of times and don't need the iterator.
20
votes
8answers
2k views

What's a good, generic algorithm for collapsing a set of potentially-overlapping ranges?

I have a method that gets a number of objects of this class class Range<T> { public T Start; public T End; } In my case T is DateTime, but lets use int for simplicity. I would like a ...
16
votes
1answer
810 views

Haskell Array Index out of range

My code is pasted here. Below is my ghci debug session. I still don't understand why it has a range of (0, -193459561) when the 'len' binding is 90570. *Main> :break 125 Breakpoint 4 activated at ...
15
votes
5answers
634 views

Merging Ranges In C++

I have a list of randomly ordered unique closed-end ranges R0...Rn-1 where Ri = [r1i, r2i] (r1i <= r2i) Subsequently some of the ranges overlap (partially or completely) and hence require ...
13
votes
3answers
404 views

What is the status of ranges in C++?

Sometimes I get tired of all this my_vector.begin(), my_vector.end() noise. Last year at boostcon, Andrei Alexandrescu's keynote speech was titled Iterators Must Go (video) Is there any progress on ...
13
votes
3answers
615 views

How can I pattern match on a range in Scala?

In Ruby I can write this: case n when 0...5 then "less than five" when 5...10 then "less than ten" else "a lot" end How do I do this in Scala? Edit: preferably I'd like to do it more elegantly ...
10
votes
2answers
11k views

Python, Matplotlib, subplot: How to set the axis range?

How can I set the y axis range of the second subplot to e.g. [0,1000] ? The FFT plot of my data (a column in a text file) results in a (inf.?) spike so that the actual data is not visible. ...
10
votes
4answers
4k views

How to produce range with step n in bash?

The way to iterate over a range in bash is for i in {0..10}; do echo $i; done What would be the syntax for iterating over the sequence with a step? Say, I would like to get only even number in the ...
9
votes
1answer
285 views

Why was pair range access removed from C++11?

I just discovered that at one point, the C++11 draft had std::begin/std::end overloads for std::pair that allowed treating a pair of iterators as a range suitable for use in a range-based for loop ...
9
votes
1answer
635 views

Range-based for statement definition redundancy

Looking at n3092, in ยง6.5.4 we find the equivalency for a range-based for loop. It then goes on to say what __begin and __end are equal to. It differentiates between arrays and other types, and I find ...
9
votes
1answer
723 views

ruby: what does the asterisk in “p *1..10” mean

the line p *1..10 does exactly the same thing as (1..10).each { |x| puts x } which gives you the following output: $ ruby -e "p *1..10" 1 2 3 4 5 6 7 8 9 10 it's a great shortcut when working ...
9
votes
2answers
743 views

Can a range be matched in Scala?

Is it possible to match a range of values in Scala? For example: val t = 5 val m = t match { 0 until 10 => true _ => false } m would be true if t was between 0 and 10, but false ...
8
votes
5answers
503 views

Why does range(start, end) not include end?

>>> range(1,11) gives you [1,2,3,4,5,6,7,8,9,10] Why not 1-11? Did they just decide to do it like that at random or does it have some value I am not seeing?
8
votes
6answers
614 views

Identify groups of continuous numbers in a list

I'd like to identify groups of continuous numbers in a list, so that: myfunc([2, 3, 4, 5, 12, 13, 14, 15, 16, 17, 20]) returns: [(2,5), (12,17), 20] And was wondering what the best way to do ...
8
votes
5answers
547 views

How should I use Perl's scalar range operator?

What is the scalar ".." operator typical usage? Is it only selecting blocks of text? Interesting example by myself: sub get_next { print scalar($$..!$$), "\n"; } get_next for 1 .. 5; # prints ...
8
votes
3answers
3k views

JavaScript selection/range framework

I've been working with selection/range objects, and because to the incredible amount of inconsistencies between browsers for specific selection/range stuff (even more than the DOM) I was wondering if ...
8
votes
6answers
867 views

Is there a reason that we cannot iterate on “reverse Range” in ruby?

I tried to iterate backwards with ruby using a Range and each. This way: (4..0).each do |i| puts i end ==> 4..0 Iteration through 0..4 writes the numbers. On the other Range r = 4..0 seems to ...
8
votes
16answers
2k views

How would you display an array of integers as a set of ranges? (algorithm)

Given an array of integers, what is the simplest way to iterate over it and figure out all the ranges it covers? for example, for an array such as: $numbers = array(1,3,4,5,6,8,11,12,14,15,16); The ...
7
votes
1answer
89 views

Why does boost::equals require ranges to be copyable?

Can't for the life of me understand why this fails: #include <vector> #include "boost/algorithm/string/predicate.hpp" struct Test : public std::vector<int> { Test() { } ...
7
votes
4answers
150 views

Port ruby solution to C++

Is there any way to do this in C++ especially the range section. answer = (0..999).select { |a| a%3 ==0 || a%5==0 } puts answer.inject { |sum, n| sum+n } I have created my own c++ solution but ...
7
votes
4answers
491 views

PHP Find date nearest to a timeline period

So, uh, ok. This might get mathematical, so hope you brought your scientific calculator with you ;) This is my problem: Given an initial date (timestamp), time period period (seconds) and today's ...
7
votes
1answer
137 views

Why is this range based query so much quicker

At work we had a query on a table that had the following structure: ip_from(number), ip_to(number), country, city, state, isp, latitude, longitude. This table had approx 6.1 million rows. To find ...
7
votes
2answers
349 views

Why is the range of bytes -128 to 127 in Java?

OK, this is as noob as it gets, but I still don't get why the lowest value a byte can take is -128. That the highest value is 127 I can understand, because it's 01111111 in binary, but how does one ...
7
votes
4answers
3k views

Javascript Array: get 'range' of items

Is there an equivalent for ruby's array[n..m] in Javascript ? For example: >> a = ['a','b','c','d','e','f','g'] >> a[0..2] => ['a','b','c'] Thanks
7
votes
4answers
226 views

range lock in java

I have a large array to be accessed by multiple thread. Single lock is not efficient enough.Is there a range lock class in java or scala?
7
votes
6answers
186 views

Are upper bounds of indexed ranges always assumed to be exclusive?

So in Java, whenever an indexed range is given, the upper bound is almost always exclusive. From java.lang.String: substring(int beginIndex, int endIndex) Returns a new string that is a ...
7
votes
3answers
395 views

Fastest way to get maximum value from an exclusive Range in ruby

Ok, so say you have a really big Range in ruby. I want to find a way to get the max value in the Range. The Range is exclusive (defined with three dots) meaning that it does not include the end ...
7
votes
3answers
827 views

Vim yanking range of lines

This is my first post on stack, so please bear with me. I'm a C# developer who has just recently decided to expand my knowledge of the tools available to me. The first tool I've decided to learn is ...
7
votes
2answers
187 views

A pythonic way how to find if a value is between two values in a list

Having a sorted list and some random value, I would like to find in which range the value is. List goes like this: [0, 5, 10, 15, 20] And value is, say 8. The standard way would be to either go from ...
7
votes
3answers
1k views

Is there an equivalent of Pythons range(12) in C#?

This crops up every now and then for me: I have some C# code badly wanting the range() function available in Python. I am aware of using for (int i = 0; i < 12; i++) { // add code here } But ...
7
votes
3answers
2k views

Fast Algorithm to Quickly Find the Range a Number Belongs to in a Set of Ranges?

The Scenario I have several number ranges. Those ranges are not overlapping - as they are not overlapping, the logical consequence is that no number can be part of more than one range at any time. ...
7
votes
6answers
2k views

(Ruby) How do you check whether a range contains a subset of another range?

If I have two ranges that overlap: x = 1..10 y = 5..15 When I say: puts x.include? y the output is: false because the two ranges only overlap partially. But if I want it to be "true" when ...
6
votes
5answers
300 views

How to find range overlap in python?

What is the best way in Python to determine what values in two ranges overlap? For example: x = range(1,10) y = range(8,20) (The answer I am looking for would be the integers 8 and 9.) Given a ...
6
votes
2answers
198 views

Checking a table for time overlap?

I've spent quite some time scouring the internet for an answer to my question, but the things I have found don't really do what I need. I have a MySQL table with the following fields: -name ...
6
votes
7answers
258 views

Subtract Overlaps Between Two Ranges Without Sets

NO SETS! I can't use Sets because the ranges will be too long. They will take up too much memory and the creation of the sets themselves will take too long. Using only the endpoints of the of the ...
6
votes
3answers
1k views

about ruby range?

like this range = (0..10) how can I get number like this: 0 5 10 plus five every time but less than 10 if range = (0..20) then i should get this: 0 5 10 15 20
6
votes
8answers
2k views

Python: range and xrange for 13-digit numbers?

range() and xrange() work for 10-digit-numbers. But how about 13-digit-numbers? I didn't find anything in the forum. Thanks in advance.
6
votes
4answers
1k views

Set textarea selection in Internet Explorer

I'm looking for a way to set a selection in a textarea in Internet Explorer. In other browsers, this works just fine: textarea.selectionStart = start; textarea.selectionEnd = end; In IE, I assume I ...
6
votes
2answers
318 views

GUI to set numeric ranges in Delphi

Once in a while I need a GUI to set numeric ranges, but so far I've never really found any component that does it nicely. I've attempted the following: 2 TTrackbars: 1 for min, 1 for max 2 ...
6
votes
7answers
5k views

Determine if a number falls within a specified set of ranges

I'm looking for a fluent way of determining if a number falls within a specified set of ranges. My current code looks something like this: int x = 500; // Could be any number if ( ( x > 4199 ...
6
votes
2answers
3k views

How to select values within a provided index range from a List using LINQ

I am a LINQ newbie trying to use it to acheive the following: I have a list of ints:- List intList = new List(new int[]{1,2,3,3,2,1}); Now, I want to compare the sum of the first three elements ...
6
votes
6answers
4k views

Best way to extract a subvector from a vector?

Suppose I have a std::vector (let's call it myVec) of size N. What's the simplest way to construct a new vector consisting of a copy of elements X through Y, where 0 <= X <= Y <= N-1? For ...
5
votes
1answer
76 views

What is the best way in Vim to operate on relative ranges in visual mode?

I often delete, yank, and paste using something like this: :3,6y Since Vim 7, I've switched to using relative line numbers. I find it's much easier to use relative line numbering with commands like ...
5
votes
1answer
50 views

HTTP Range Header for Entity lists

I have resources like this /entities # GET, POST /entities/<id> # GET, PUT, DELETE GET /entities gets the list of all entities. Now I want to poll for updates. The case for a single ...
5
votes
3answers
123 views

std::multimap getting two ranges

I'm using a C++ std::multimap and I have to loop over two different keys. Is there an efficient way to do this other than creating two ranges and looping over those ranges seperately? This is the ...
5
votes
5answers
238 views

Find missing and overlapping numbers in sequences

Let's say we have a data structure like this: var sequences = new List<Tuple<int, int>> { new Tuple<int, int>(1, 10), new ...
5
votes
2answers
270 views

REGEX To accept numbers separated by commas, but number range is 0-32767

I need to write a regular expression for taking input like this 23,456,22,1,32767 i.e. No commas allowed at the start or end. Spaces may come before and/or start of comma for e.g. 23, 45,56 ,67 ...

1 2 3 4 5 16