0
votes
1answer
129 views
c++ m bits permutations of a number
Hi,
I am searching for a function that get as an input a number x (assuming 15), number of bits d (4) and number of permutations m (2). The output of the function will be all the numbers that are m …
0
votes
6answers
93 views
Permutations for digits represented by Phone Number
Guys,
I have an interview in 2 days and I am having a very hard time finding a solutions for this question:
What I want to do is .. for any phone number .. the program should print out all the …
0
votes
2answers
121 views
Need help with brute force code for crypt(3)
Hello,
I am trying to develop a program in C that will "crack" the crypt(3) encryption used by UNIX.
The most naive way to do it is brute forcing I guess. I thought I should create an array containing …
1
vote
4answers
331 views
Generating n-digit numbers sequenced by sum of individual digits (without recursion)
I'm looking to generate all possible values of n-digit number, in the following order, where the sequence is dictated by the sum of the individual digits.
For example, with n = 3:
111 sum = 3
…
1
vote
5answers
87 views
fixed-length permutations of a string
I'm trying to take a seven-character string and generate all the possible 3- and 4-letter permutations of it. This seems like something that recursion would be handy for (most all permutation …
0
votes
4answers
153 views
Java: Generate a Powerset
This could be language agnostic/helpful answers could just be in pseudo-code.
I have a program that I would like to test under a range of inputs. This program takes a set of files, one of which is …
1
vote
1answer
47 views
Using JavaScript/jQuery to generate fixtures
I'm putting together a tool for a colleague which helps to create a nice fixture list. I got about 2/3 through the tool, collecting various data ... and then I hit a brick wall. It's less of a …
2
votes
1answer
306 views
algorithm that will take numbers or words and find all possible combinations
I am looking for an algorithm that will take numbers or words and find all possible variations of them together and also let me define how many values to look for together.
Example lets say the …
1
vote
4answers
356 views
SQL query--String Permutations
I am trying to create a query using a db on OpenOffice where a string is entered in the query, and all permutations of the string are searched in the database and the matches are displayed. My …
1
vote
2answers
112 views
How can I get permutations of items from two subqueries in T-SQL?
Lets say I have two subqueries:
SELECT Id AS Id0 FROM Table0
=>
Id0
---
1
2
3
and
SELECT Id AS Id1 FROM Table1
=>
Id1
---
4
5
6
How do I combine these to get the query result:
Id0 Id1
…
