Tagged Questions
1
vote
1answer
135 views
In Bash, how to convert number list into ranges of numbers?
Currently I have a sorted output of numbers from a command:
18,19,62,161,162,163,165
I would like to condense these number lists into a list of single numbers or ranges of numbers
...
9
votes
3answers
496 views
Initialize std::array with a range (pair of iterators)
How can I initialize an std::array from a range (as defined by a pair of iterators)?
Something like this:
vector<T> v;
...
// I know v has exactly N elements (e.g. I just called v.resize(N))
...
0
votes
1answer
101 views
Javascript Search Ranges
I have a list of JSON Values
[{'start_day':1,'start_hour':1,'end_day':1,'end_hour':2},
{'start_day':1,'start_hour':4,'end_day':1,'end_hour':6},
...
1
vote
3answers
300 views
Find overlaps in array of ranges and build a new array with new chunked ranges
Ideally, I'd like a solution in Ruby or Javascript. Arrays instead of ranges in javascript would be fine.
I'd like input such as:
[0..301, 230..268, 242..364, 574..579, 587..593]
or
...
7
votes
4answers
311 views
How do I summarize array of integers as an array of ranges?
I'd like to take input such as:
[1,2,4,5,6,7,9,13]
and turn it into something like the following:
[[1,2],[4,7],[9,9],[13,13]]
Each sub-array represents a range of integers.
3
votes
3answers
115 views
Getting at javascript values where a range is the index in an array
I'm probably going about this in entirely the wrong way, but pseudocode-wise, this is what I'd like to do:
ranges = new Array([0 - 400] = 'dog',
[401 - 1000] = 'cat',
...
0
votes
3answers
567 views
how to use arrays in vba
How would you write a VBA function that:
takes an array, an optional minimum and an optional maximum
returns an array with each value less than the minimum replaced by the minimum value, and each ...
6
votes
3answers
14k views
Excel VBA: Range to String Array in 1 step
I know you can easily take a range of cells and slap them into a Variant Array but I want to work with a string array (because it's single-dimensional and takes less memory than a Variant array).
Is ...
3
votes
2answers
1k views
Excel VBA: Populating Staggered Ranges with 2d Array data
I'm currently looking for a more efficient method, via VBA, to get information transferred from a 2-d array within a Sub into a staggered set of ranges within an excel workbook. ...
0
votes
1answer
613 views
Redimension and paste dynamic ranges in VBA
i'm new to VBA and I'm having problems with arrays and ranges. I have to write a function to select portions of a range made of values with a time stamp and report them in a separate range.
The range ...
3
votes
3answers
10k views
Using an Array of Ranges in VBA - Excel
Does VBA support using an array of range variables?
dim rangeArray() as range
dim count as integer
dim i as integer
count = 3
redim rangeArray(1 to count)
for i = 1 to count
msgbox ...
0
votes
0answers
23 views
Is there a method in java that can take 2 numbers and give you the numbers that are in between them(Ranges)?
I read in a file with a few numbers using a scanner, and then split them using the split method. My main issue is if there is a method that can just give me ranges, probably in the math class. The ...