0
votes
2answers
64 views
Searching a file in 3 different ways.
I have been writing a program that searches a file in 3 different ways. But firstly, to choose which search program to use is differentiated in the command line.
For example in the command line I …
0
votes
1answer
67 views
Recurrence Equations
Given a problem, how to come up with a recurrence equation?
For example :
Let S be a set of n>0 distinct integers. Assume that n is a power of 3.
A ternary comparison can compare three numbers …
0
votes
3answers
106 views
k partition algorithm - divide work load equally between k people
I once read a problem in my Introduction to Algorithms (MIT Press) book which stated.
We have a book with 100 pages and each page has a weight associated with it equal to its page number therefore …
0
votes
4answers
79 views
What’s Wrong? Question relied on: Files,Exceptions -> ERROR: EOFError
EDITED:
import pickle
filename=input('Enter a file name:')
def entoles():
f=open(filename,'w')
names=[]
grades=[]
while True:
name=input("Give a student's name:")
…
2
votes
13answers
343 views
which is a better language (C++ or Python) for complex problem solving exercises (ex. Graphs) ?
I am trying to work on some problems and algorithms. I know C++ but a friend told me that it would be better if done with Python.As it would be much faster to develop and less time is spent in …
1
vote
4answers
197 views
Can you answer this 2009 ACM International Collegiate Programming Contest Finals problem?
Out of curiosity, I was checking out the problem set to the 2009 ACM international collegiate programming contest. The questions are pretty interesting. They're available at …
1
vote
4answers
161 views
When was this clock bought?
The clock on the gym wall also shows the day name and the day of the month. This morning it showed Tuesday - 23.
The day obviously rotates through a cycle of 7 - and showed "Tuesday" correctly. The …
7
votes
21answers
865 views
What’s your Modus Operandi to solving a (programming) problem?
While solving any programming problem, what is your modus operandi? How do you fix a problem?
Do you write everything you can about the observable behaviors of the bug or problem?
Take me through …
1
vote
2answers
103 views
Can Dancing Links be applied to this CSP?
Can the Dancing Links implementation of Knuth's Algorithm X be used to solve this CSP? In this game the first and last number are always already in the board and I belive there's only one solution to …
0
votes
3answers
117 views
True Odds of Winning a Contest [closed]
Hi, I am currently running a contest in my pub where I am putting 3 brand new cars up for grabs. We are a hockey crazy town and before each Vancouver Canucks hockey game we hand out numbered pucks …
0
votes
4answers
305 views
Algorithm for solving Sudoku
I want to write a code in python to solve a sudoku puzzle. Do you guys have any idea about a good algorithm for this purpose. I read somewhere in net about a algorithm which solves it by filling the …
2
votes
8answers
89 views
when programming, should you focus on one thing at a time, even if you get stuck on one step ? [closed]
i find myself often falling into a "mental block" where i can't figure out how to find an approach to a problem. i think about it for a few days until it clicks.
is this bad? if you get stuck on a …
-2
votes
3answers
115 views
Problems for backwards thinking? [closed]
I have always known i was never good at thinking backwards. I am good at thinking in many styles but backwards always gave me issue. I would like to exercise it with a few problems. Here is an example …
1
vote
2answers
131 views
Know of a Puzzleland? [closed]
Puzzles have always been among the favorites for interviewers.
No doubt they reveal a lot about the problem solving capabilites of the candidate.
Can we all try to put in our 5 cents for the best of …
39
votes
15answers
2k views
Where can you find fun/educational programming challenges?
I've searched around for different challenge sites, and most of them seem to be geared towards difficulty in problem solving logically, rather than trying to use your language of choice to do …
