Tagged Questions
The sequences tag has no wiki summary.
17
votes
5answers
3k views
In Clojure, when should I use a vector over a list, and the other way around?
I read that Vectors are not seqs, but Lists are. I'm not sure what the rationale is for using one over the other. It seems that vectors are used the most, but is there a reason for that? Any answers ...
17
votes
3answers
1k views
Avoiding stack overflow (with F# infinite sequences of sequences)
I have this "learning code" I wrote for the morris seq in f# that suffers from stack overflow that I don't know how to avoid. "morris" returns an infinite sequence of "see and say" sequences (i.e., ...
15
votes
12answers
2k views
C#: Detecting sequence of at least 3 sequential numbers from a given list
I have a list of numbers e.g. 21,4,7,9,12,22,17,8,2,20,23
I want to be able to pick out sequences of sequential numbers (minimum 3 items in length), so from the example above it would be 7,8,9 and ...
11
votes
4answers
817 views
Is Clojure object-oriented at its heart? (Polymorphism in seqs)
Clojure is a functional lisp, reportedly not at all object-oriented, even though it runs on the JVM, a VM designed for an object oriented language. Clojure provides identical interfaces for iterating ...
11
votes
4answers
2k views
What's the best way to write [0..100] in C#?
I'm trying to think of clever, clear, and simple ways to write code that describes the sequence of integers in a given range.
Here's an example:
IEnumerable<int> EnumerateIntegerRange(int ...
10
votes
7answers
3k views
Distributed sequence number generation?
I've generally implemented sequence number generation using database sequences in the past.
e.g. Using Postgres SERIAL type http://neilconway.org/docs/sequences/
I'm curious though as how to ...
10
votes
3answers
2k views
How can I remove an item from a sequence in Clojure?
First, I assume each structure-specific sequences would have different ways to remove an item: Vectors could be by index, List could be remove first or last, Set should be passing of the actual item ...
10
votes
9answers
8k views
Autoincrement in Oracle
What are the other ways of achieving autoincrement in oracle other than use of triggers?
10
votes
12answers
1k views
Correct way to detect sequence parameter?
I want to write a function that accepts a parameter which can be either a sequence or a single value. The type of value is str, int, etc., but I don't want it to be restricted to a hardcoded list.
In ...
9
votes
3answers
192 views
Scala - best practice for shifting a sequence in a circular manner
I have to implement a kind of an array or sequence or list, which suppoprts the cheapest way of circulated forwarding and backwinding of elements. See this example:
Original sequence: 1 2 3 4 5
...
8
votes
1answer
242 views
Probability computation and algorithm for subsequences
Here is a game where cards 1-50 are distributed to two players each having 10 cards which are in random order. Aim is to sort all the cards and whoever does it first is the winner. Every time a person ...
8
votes
11answers
16k views
How to write the Fibonacci Sequence in Python
Updated:
EDIT! I have coded the program wrongly. Instead of returning the Fibonacci numbers between a range (ie. startNumber 1, endNumber 20 should = only those numbers between 1 & 20), I have ...
7
votes
3answers
71 views
Sequence expansion question
I have a sequence of 'endpoints', e.g.:
c(7,10,5,11,15)
that I want to expand to a sequence of 'elapsed time' between the endpoints, e.g.
...
7
votes
8answers
406 views
IEnumerable<IDisposable>: who disposes of what and when — Did I get it right?
Here is a hypotetical scenario.
I have very large number of user names (say 10,000,000,000,000,000,000,000. Yes, we are in the intergalactic age :)). Each user has its own database. I need to iterate ...
7
votes
2answers
173 views
Seq seq type as a member parameter in F#
why does not this code work?
type Test() =
static member func (a: seq<'a seq>) = 5.
let a = [[4.]]
Test.func(a)
It gives following error:
The type 'float list list' is not compatible with ...
7
votes
4answers
7k views
List all sequences in a Postgres db 8.1 with SQL
I'm converting a db from postgres to mysql.
Since i cannot find a tool that does the trick itself, i'm going to convert all postgres sequences to autoincrement ids in mysql with autoincrement value.
...
6
votes
4answers
249 views
Repeating vectors in Clojure
There has got to be a better way.
I am a Clojure newbie. I am trying to get two copies of a vector of card suits. The non-DRY way that I can come up with is
(def suits [:clubs :diamonds :hearts ...
6
votes
8answers
1k views
F#: How do i split up a sequence into a sequence of sequences
Background:
I have a sequence of contiguous, time-stamped data. The data-sequence has gaps in it where the data is not contiguous. I want create a method to split the sequence up into a sequence of ...
6
votes
11answers
9k views
How would you implement sequences in Microsoft SQL Server?
Does anyone have a good way of implementing something like a sequence in SQL server?
Sometimes you just don't want to use a GUID, besides the fact that they are ugly as heck. Maybe the sequence you ...
6
votes
3answers
624 views
Where can I find the time and space complexity of the built-in sequence types in Python
I've been unable to find a source for this information, short of looking through the Python source code myself to determine how the objects work. Does anyone know where I could find this online?
5
votes
2answers
139 views
How should I implement an atomic sequence in Perl?
I have the following requirements:
The sequence is unique to a host (no shared incrementing is necessary)
The sequence must be monotonically increasing.
The sequence must be persistent across ...
5
votes
2answers
253 views
Why there is no List.skip and List.take?
Why there is no List.skip and List.take? There is of course Seq.take and Seq.skip, but they does not create lists as a result.
One possible solution is: mylist |> Seq.skip N |> Seq.toList
But this ...
5
votes
6answers
532 views
Pseudo-Random Binary Sequence Prediction (Newbie)
i know nothing about programming or C or windowing... nothing too deep about computers... but i'm very interested in: given a pseudo-random binary sequence (e.g.: 00101010010101) of finite values, ...
5
votes
5answers
309 views
Is there a functional way to do this?
def flattenList(toFlatten):
final=[]
for el in toFlatten:
if isinstance(el, list):
final.extend(flattenList(el))
else:
final.append(el)
return final
When I don't know how deeply the ...
5
votes
5answers
275 views
What's the alternate character combination for the double quote characater in C/C++?
I've not had the Kernighan and Ritchie C reference in years, but I remember that there was a page in there that talked about how to enter characters that were unavailable to you. (WAY back in the ...
5
votes
2answers
730 views
Can anyone provide a more pythonic way of generating the morris sequence?
I'm trying to generate the morris sequence in python. My current solution is below, but I feel like I just wrote c in python. Can anyone provide a more pythonic solution?
def morris(x):
a = ['1', ...
5
votes
2answers
3k views
How to update unique values in SQL using a PostgreSQL sequence?
In SQL, how do update a table, setting a column to a different value for each row?
I want to update some rows in a PostgreSQL database, setting one column to a number from a sequence, where that ...
4
votes
1answer
100 views
How can I display the most common value sequence in MySQL?
Lets say I have a table like this.
A | B
-----
1 | 4
7 | 8
1 | 3
1 | 2
4 | 5
3 | 5
2 | 5
7 | 8
Even though 1 is the most common value in column A and 5 is the most common value in column B (which ...
4
votes
2answers
73 views
Programmatic access to On-Line Encyclopedia of Integer Sequences
Is there a way to search and retrieve the results from On-Line Encyclopedia of Integer Sequences (http://oeis.org) programmatically?
I have searched their site and the results are always returned in ...
4
votes
2answers
132 views
Generic reverse of list items in Python
>>> b=[('spam',0), ('eggs',1)]
>>> [reversed(x) for x in b]
[<reversed object at 0x7fbf07de7090>, <reversed object at 0x7fbf07de70d0>]
Bummer. I expected to get a list ...
4
votes
3answers
272 views
Python: is not sequence
In python is there an easy way to tell if something is not a sequence? I tried to just do:
if x is not sequence but python did not like that
4
votes
5answers
245 views
Trying to generate all sequences of specified numbers up to a max sum
Given the following list of descending unique numbers (3,2,1) I wish to generate all the sequences consisting of those numbers up to a maximum sum.
Let's say that the sum should be below 10. Then the ...
4
votes
4answers
488 views
Algorithm for music imitation?
I'm interested in automatic music making. I was thinking about a program that is fed a large number of 1-bar arpeggios (= fixed length sequences of notes, for simplicity) and generates its own ...
4
votes
4answers
2k views
Comprehension for flattening a sequence of sequences?
If I have sequence of sequences (maybe a list of tuples) I can use itertools.chain() to flatten it. But sometimes I feel like I would rather write it as a comprehension. I just can't figure out how to ...
3
votes
2answers
79 views
Sequence contains no elements exception in linq without even using Single
I am not using Single in LINQ below, but I am still getting a 'Sequence contains no elements' exception:
allNames = StockCollection.Where((s) => s.Name.IndexOf("A") == 0)
...
3
votes
3answers
126 views
F# swapping items in a list
I'm positive that there is a better way to swap two items in a list ( [1;2;3;4] -> [2;1;4;3] ) as i'm doing too many appends for my liking but I'm not sure how best to do it.
let swapItems lst =
...
3
votes
2answers
197 views
Analysis of “Finding Maximum Sum of Subsequent Elements” algorithm
If possible, I would like someone to give an analytic explanation of the algorithm.
For example, given the sequence
-2, 4, -1, 3, 5, -6, 1, 2
the maximum subsequence sum would be
4 + -1 + 3 + ...
3
votes
6answers
329 views
Simple C++ code to generate Armstrong numbers
The following is my simple attempt at generating Armstrong numbers. But it only outputs "1". What might be wrong?
#include<stdio.h>
#include<conio.h>
#include<iostream.h>
int ...
3
votes
2answers
178 views
Lazy cartesian product of multiple sequences (sequence of sequences)
Can you suggest simpler and clearer way to write this function?
let cartesian_product sequences =
let step acc sequence = seq {
for x in acc do
for y in sequence do
...
3
votes
2answers
147 views
What does Python treat as reference types?
I assumed sequence types in Python were value types. It turns out they're reference types (Meaning that the value of a variable won't be copied when assigned to a new variable, but referenced). So now ...
3
votes
1answer
107 views
How to return early from an iteration on a sequence?
Given a predicate "p", that tells if a solution is good enough. A cost function "f" that tells how good a possible solution is and a function that searches for the "best" (i.e. lowest cost) solution ...
3
votes
2answers
223 views
List all NON-GENERATED sequences for a schema in PostgreSQL
In PostgreSQL there are 2 types of sequences:
Sequences created by the user using CREATE SEQUENCE
Sequences generated by the DB to back a column of type SERIAL
INFORMATION_SCHEMA.SEQUENCES returns ...
3
votes
4answers
256 views
how is this a non-sequence?
I'm running a list comprehension of a list of numbers as strings so for example the list looks like this
vals = ['0.13', '324', '0.23432']
and try a list comprehension like this:
best = [x for x ...
3
votes
4answers
305 views
Oracle sequence cache aging too often
my asp.net application uses some sequences to generate tables primary keys. Db administrators have set the cache size to 20. Now the application is under test and a few records are added daily (say 4 ...
3
votes
2answers
173 views
Sequence reduction in R
Assume you have a vector like so:
v <- c(1,1,1,2,2,2,2,1,1,3,3,3,3)
How can it be best reduced to a data.frame like this?
v.df <- data.frame(value=c(1,2,1,3),repetitions=c(3,4,2,4))
In a ...
3
votes
3answers
136 views
MySQL id sequence
Is this a correct way for id generation in MySQL ?
INSERT INTO Picture
(PictureId,First_pick,Title,Description,File_Name,Is_Vertical)VALUES
((SELECT max(pictureid)+1 FROM Picture),0,?,?,?,?)
...
3
votes
4answers
487 views
Ruby equivalent of C#'s 'yield' keyword, or, creating sequences without preallocating memory
In C#, you could do something like this:
public IEnumerable<T> GetItems<T>()
{
for (int i=0; i<10000000; i++) {
yield return i;
}
}
This returns an enumerable ...
3
votes
2answers
741 views
How bad is it to simulate IDENTITY/AUTOINCREMENT columns using triggers in Oracle?
I maintain an application that was originally written to be SQL Server-specific (using IDENTITY fields). Thus, we've had to define a lot of triggers to auto increment tables' primary keys.
I'm told ...
3
votes
2answers
213 views
Sequential numbers in distributed word
We are building order processing system. We have a cluster of processing servers. We need to assign readable numbers to the orders (e.g. ORD-000001, ORD-000002).
Main problem that this is hard for ...
3
votes
1answer
1k views
How do I get a sequence's MINVALUE in Oracle 10g PL/SQL?
I wrote a PL/SQL script to set a sequence's value to the maximum value of a table's primary key:
DECLARE
max_idn NUMERIC(18, 0);
seq_nextval NUMERIC(18, 0);
increment_amount NUMERIC(18, 0);
...