0
votes
0answers
52 views

Fill an area with best fitting “blocks”

I have some code that generates blocks of text based on a user's selection. The height of these text blocks varies on how many items the users selected. What I am trying to do is ensure that these ...
0
votes
0answers
25 views

Is this related to a graph cut-edge (bridge)? Find the fast path in time from home to a shop/store

In http://codility.com/, exist a problem that say: There are N squares in your neighborhood and M direct roads connecting them. The squares are numbered from 0 to N − 1. You are living in ...
0
votes
2answers
42 views

Clustering Algorithm (in Python) for Data

I have thousands of data entries that looks similar to the following: 08 00 00 00 c3 85 20 65 6e 61 62 6c 65 64 2e 0d 0a 45 78 70 5c 72 88 74 80 83 82 79 68 8d 7b 73 90 7c 60 84 80 74 00 00 5d 77 84 ...
1
vote
3answers
84 views

What is a good way to merge non intersecting sets in a list to end up with denseley packed sets?

I'm currently doing this by using a sort of a greedy algorithm by iterating over the sets from largest to smallest set. What would be a good algorithm to choose if i'm more concerned about finding the ...
0
votes
1answer
42 views

Create python dictionary from value of another dictionary?

I am trying to efficiently construct a python dictionary from the keys' values of another dictionary. For example... dict1 = {'foo': [1, 3, 7], 'bar': [2, 4, 8]} ## note: all values in {key: ...
-1
votes
4answers
51 views

Breadth First Search or Depth First Search? [closed]

I am implementing a huge directed graph consisting of 100,000+ nodes. I am just beginning python so I only know of these two search algorithms. Which one would be more efficient if I wanted to find ...
0
votes
2answers
63 views

normalise list data in range (0.0, 1.0)

I create a dict with lists as values, containing some parameters. these parameters are mostly float or int and sometimes boolean values (in my case stored as 0 or 1). Now i want to select the best ...
-1
votes
0answers
55 views

Python diamond square algorithm implementation

I'm quite surprised how little I can find on implementing the diamond-square algorithm in Python. I'm at a loss of why my implementation isn't working. I'm hoping someone could let me know if they see ...
6
votes
0answers
127 views

Rotate image and crop out black borders

My application: I am trying to rotate an image (using OpenCV and Python) At the moment I have developed the below code which rotates an input image, padding it with black borders, giving me A. What ...
1
vote
3answers
44 views

Text segmentation: Algorithm to match input with the longest words from the dictionary

I need to split a string into words such that each word comes from a dictionary. Also make sure that longest possible word from the left is chosen. Hence thisisinsane => this is insane (correct as ...
-3
votes
1answer
73 views

Algorithm to generate a series [closed]

I have a scenario, where two numbers are given. And I have continually find the average/or some function of them up to different levels. For example: Input I = 2, 64 I1=2, 33=f(2,64), 64 I1=2, 33, ...
-3
votes
3answers
95 views

Efficient way to compare sublists across lists of lists? [closed]

Sorry for bad phrasing of the title(which sheds light on, if not excuses me for, googling failures...). Hope the explanation is clear enough. I have two lists of lists(lines from now on), and I want ...
1
vote
1answer
35 views

Pick optimize minimum number of elements to span a region

I have an optimization problem. I have never learned algorithms, only taught myself python, so I am not sure if this is a hard or easy problem to solve. The non-abstract application of this problem is ...
1
vote
3answers
52 views

How can I change this function call and algorithm to find the string with the smallest value in a list of size n. w/o the min function

How can I change this function call and algorithm to find the string with the smallest value in a list with size n. Also I am aware of the built-in min function, I am simply trying to understand the ...
3
votes
1answer
55 views

reverse numerical sort for list in python

I'm trying to create python implementations from an algorithms book I'm going through. Though I'm sure that python probably has these functions built in, I thought it would be a good exercise to learn ...
0
votes
0answers
58 views

Data mining: Looking for gentle tutorial on sequence data mining [closed]

By sequence, I mean data in some order, eg. time series, DNA sequence, .. And by data mining I mean discovering patterns (rather than predicting, clustering, ..) I've just read up the Apriori ...
0
votes
3answers
84 views

Merge sort python infinite loop

I have decide to learn python recently! I want to write an easy merge sort using the following code : def mergeSort(lst): l = len(lst) if l <= 0: print("empty") return ...
3
votes
1answer
34 views

Python: How split a string keyspace (id) for parallel processing of data in a mongoDB

Intro I have a mongo cluster with several million documents in it. Each document have a string id that looks like this: 00072312e0761c6554c3606b50a21119773f2f7d And I have a way of retrieving from ...
-6
votes
0answers
52 views

Fisher algorithm [closed]

Some proposed algorithm to implement the method of Fisher and get the optimal number of classes in the k-means algorithm? Thanks. def fisher(self,pixeles): .....
2
votes
1answer
34 views

Redis getting sets of user around a given score

I am using redis to implement the leaderboard. The problem statement I am addressing is - given a user, get five users above him, and five users below him in the leaderboard. Following is the ...
2
votes
2answers
68 views

Test whether a list or a string is a palindrome [duplicate]

I have a final coming up, and the teacher has said that he plans to include a palindrome checker on the list of problems. Basically, I need to write two separate functions, one to test if a list is a ...
-2
votes
2answers
71 views

programming challenge help (python)? [duplicate]

I'm trying to solve project euler problem 18/67 . I have an attempt but it isn't correct. tri = '''\ 75 95 64 17 47 82 18 35 87 10 20 04 82 47 65 19 01 23 75 03 34 88 02 ...
5
votes
1answer
70 views

How to order/sort a 2D table of dependencies

I'm curious if there is some higher level theory/approaches/algorithm to solving this problem I have. I'm working on a network routing problem (a proprietary radio network). By way of example, I have ...
2
votes
3answers
66 views

How to find elements existing in two lists but with different indexes

I have two lists of the same length which contains a variety of different elements. I'm trying to compare them to find the number of elements which exist in both lists, but have different indexes. ...
0
votes
1answer
18 views

python mmap regex searching common entries in two files

I have 2 huge xml files. One is around 40GB, the other is around 2GB. Assume the xml format is something like this < xml > ... < page > < id > 123 < /id > ...
3
votes
2answers
87 views

Finding words around a substring

I have to extract two words before and after my substring match in a large string. For example: sub = 'name' str = '''My name is Avi. Name identifies who you are. It is important to have a name ...
1
vote
2answers
47 views

python find biggest free square in nested list

Ok, so I have to find the biggest "free square" in a grid where some spots are filled, for example, there's this grid: ###--- ###--- ###--- ---### ---### ---### Where "-" is a filled spot and ...
-2
votes
0answers
84 views

TSP by Brute Force on Python

I'm a programmer student; and I'm trying to solve the Traveling Salesman Problem (TSP) by brute force, implementing it with Python; but I can't solve it. I tried something but I don't know well how to ...
-7
votes
0answers
69 views

Don't know how to implement TSP by Brute Force on Python [closed]

im a programmer student; and im trying to do the Traveling Salesman Problem (TSP) algorithm by brute force, implemented on Python; but i can't solve it. I can ask if somebody have it and can give it ...
1
vote
1answer
38 views

Faster way to do a correspondence replace operation in python?

I am not sure I'm using the right term for this---I'd call this a merge operation maybe? Simple matching? I have two dictionaries. One of them contains a list of tag IDs. The other one is a ...
2
votes
5answers
142 views

How do I create a tree out of this?

I have a text file which has content like this: a.b.c.d a.c a.d a.x.y.z a.x.y.a a.x.y.b a.subtree I want to make this into a tree: a / / \ \ \ ...
0
votes
2answers
100 views

How can i remove coordinates of points from lists if that are very close and and can be considered as a single point?

I have 2 list of numbers that represent points coordinates in a cartesian diagram in python My aim is to consider many points in a range of 10 as 1 point first example: first point (1,2) second ...
0
votes
1answer
65 views

How can I create and Empty Map and set the default value

I wanna create an empty map in java and then the default value to 0. Please let me know if below code is correct. Actually, I'm having a python code which I'm trying to convert into Java. For the ...
0
votes
3answers
81 views

Generating all permutations with repetition

How could we generate all possible permutations of n (given) distinct items taken r at a time where any item can be repeated any number of times? Combinatorics tell me that there will be n^r of ...
3
votes
2answers
170 views

Little hardcore: Do you know any parallel modified moving average algorithm?

Do you know any parallel modified moving average algorithm? I want quickly calculate moving average but not with sequential algorithms. I want use parallel algorithms but I have still not found ...
5
votes
2answers
93 views

Splitting long string without breaking words fullfilling lines

Before you think that it's duplicated (there are many question asking how to split long strings without breaking words) take in mind that my problem is a bit different: order is not important and I've ...
-2
votes
0answers
54 views

Using PYTHON to setup BVP [closed]

How to use python to solve the two-point Boundary value Problem ? y"=10*y^3+3*y+t^2, with 0<=t<=1 with boundary conditions y(0)=0, y(1)=1 ...
1
vote
4answers
108 views

Find the Highest Sum in a Combination of Numbers

Lets say I have this: 1A=6 2A=4.5 3A=6 1B=7 2B=6 3B=7.5 1C=6 2C=6.75 3C=9 I want to find the combination of numbers that yields the highest sum. None of the numbers before the letters can be ...
8
votes
3answers
175 views

How can I order a list of connections

I currently have a list of connections stored in a list where each connection is a directed link that connects two points and no point ever links to more than one point or is linked to by more than ...
-1
votes
1answer
109 views

Is there any more optimal way to solve this idempotent equation (modulo n ring)?

This is one of the problems on Project Euler: If we calculate a^2 mod 6 for 0 <= a <= 5 we get: 0, 1, 4, 3, 4, 1. The largest value of "a" such that a^2 mod 6 = a is 4. Let's call ...
0
votes
2answers
113 views

Maximal rectangle algorithm

this is a question concerning a school assignment. We had to use an algorithm to find the biggest possible rectangle with 0s in a matrix with 0's and 1's I opted for a brute force algorithm as the ...
7
votes
3answers
109 views

Hashing same character multiple times

I'm doing a programming challenge and I'm going crazy with one of the challenges. In the challenge, I need to compute the MD5 of a string. The string is given in the following form: n[c]: Where n is ...
0
votes
2answers
49 views

How to design user id for a website?

I am working on a toy website and I have implemented an upvote button, with an onclick attribute like this: Dajaxice.debater.upvote( upvote_js,//Don't worry about this, it's just dealing with ...
-1
votes
1answer
70 views

How do I integrate a multivariable function? [closed]

I have a function f(x_1, x_2, ..., x_n) where n >= 1 that I would like to integrate. What algorithm should I use to provide a decently stable / accurate solution? I would like to program it in ...
-2
votes
2answers
83 views

Why is the CPU usage of my threaded python merge sort only 50% for each core?

Questions Why is the CPU usage of my threaded python merge sort only 50% for each core? Why does this result in "cannot create new thread" errors for relatively small inputs (100000) How can I make ...
2
votes
3answers
234 views

What's incorrect about my sollution in this google code jam exercise?

Today, I've participated in google code jam round 1B. In code jam, there was a problem called 'Osmos': https://code.google.com/codejam/contest/2434486/dashboard problem description The problem ...
1
vote
1answer
67 views

Printing a tree with branches recursively

I'm trying to print a tree recursively in Python. For some reason, the indentation isn't working (perhaps I'm too tired at this point to see an obvious flaw). Here's the structure / class definitions ...
2
votes
4answers
80 views

Python Spaced Triangle

I'm supposed to write a program that ends up such as this: * * * * * * * I have the code written for a regular one, but I'm not sure how to incorporate spaces into it. def triangle(i, ...
2
votes
1answer
49 views

How does Python's cmp_to_key function work?

I came across this function here. I am baffled as to how this would be implemented -- how does the key function generated by cmp_to_key know what "position" a given element should be without checking ...
2
votes
3answers
111 views

How can I calculate the area of an object by using its contour (chain code)?

Say I have a rotated squared object with chain code [1, 1, 1, 1, 3, 3, 3, 3, 5, 5, 5, 5, 7, 7, 7] using 8-connectedness. How can I derive its area, as in number of pixels? EDIT: I derived the chain ...

1 2 3 4 5 29