Tagged Questions

To be used for questions related to programming exercises. Other uses of this tag are off-topic on Stack Overflow.

learn more… | top users | synonyms

21
votes
6answers
6k views

How do you match only valid roman numerals with a regular expression?

Thinking about my other problem, i decided I can't even create a regular expression that will match roman numerals (let alone a context-free grammar that will generate them) The problem is matching ...
6
votes
1answer
396 views

Algorithm to determine exchange rate

Given a data set of various currency pairs, how do I efficiently compute the implied fx rate for a pair not supplied in the data set? For example, say my database/table looks like this (this data is ...
5
votes
4answers
116 views

how to keep my infrequently used programming language skills in shape [closed]

I use ruby infrequently - usually it adds up to writing a script once in two months or more. I do most of my programming with C++, which is very different from ruby. with such wide gaps between ...
5
votes
9answers
522 views

Do you have any favorite ergonomic exercise or habit? [closed]

I've read somewhere that ergonomic problems accounts for 70% of injury... And i don't want to be one of those guys who think, ahh it's just a slight sore, and go on and discover that i have CTS and ...
4
votes
1answer
119 views

Simple exercises to learn Netwire? [closed]

Haskell wiki > Netwire has some good introductory material to Netwire, but now (as a hobbyist Haskeller) I'm interested in something more. What kinds of simple exercises would be beneficial in order ...
4
votes
5answers
194 views

Simple object-oriented exercises for grasping the basics [closed]

I'm teaching a few friends some basic object-oriented concepts in PHP and i wanted to give them some real-world examples, but simple, so they can grasp the syntax and the basics of OO. I already gave ...
4
votes
11answers
713 views

sources for short programming exercises [closed]

I think small exercises would be the best way for me to learn programming. I am a beginner and I am willing to give plenty of time to this. In my opinion, exercises should be something to write, and ...
4
votes
8answers
373 views

Haskell learning exercise gives strange results

this is the question: "Write a function that computes the mean of a list, i.e. the sum of all elements in the list divided by its length. (You may need to use the fromIntegral function to ...
4
votes
8answers
657 views

Online Programming Exercises [closed]

What online programming exercises would you suggest? Hopefully a site where you can submit code instead of submitting output.
3
votes
2answers
109 views

Simple OCaml exercise

I'm trying to teach myself OCaml through Jason Hickey notes and the following exercise got me stumped. Question: Write a function sum that given two integer bounds m,n and a function f computes a ...
3
votes
2answers
108 views

K&R - Numerical sort of alpha characters?

What does it mean to numerically sort alpha characters in opposite of lexicographic, like in K&R 5-14 with option -n Regards
3
votes
1answer
477 views

Help with Big Omega Proof?

I am having trouble solving a proof. Where t(n) <= cn^1.6, c being a constant. In general, Big Omega is the opposite of Big O in that it is the best case scenerio and looks for the lower bound. So ...
3
votes
5answers
2k views

C Programming Exercises [closed]

Possible Duplicate: Where can I find C coding exercises to practice? I am learning c programming language and i need some exercises resources to practice from.
3
votes
6answers
384 views

List Sorting puzzle

Assuming I have final Iterable<String> unsorted = asList("FOO", "BAR", "PREFA", "ZOO", "PREFZ", "PREFOO"); What can I do to transform this unsorted list into this: [PREFZ, PREFA, BAR, FOO, ...
2
votes
3answers
74 views

how to get uniformed random between a, b by a known uniformed random function RANDOM(0,1)

background about the question I am reading a algorithm book. There is a chapter, which is regarding Randoms. after the chapter, there is an exercise section. but the book has no answers to those ...
2
votes
2answers
165 views

How to determine the ranges of floating-point types using direct computation?

I'm trying to solve exercise 2-1 from "The C Programming Language", 2nd edition, which asks to: "Write a program to determine the ranges of char, short, int, and long variables, both signed and ...
2
votes
1answer
61 views

What native windows API or .NET classes uses the “Language Bar”?

Disclaimer: I'm a Java developer, this is an exercise for learning to code (what I think it's a) simple windows programs in .NET I was wondering the other day, what sort of calls (API or .NET ...
2
votes
2answers
61 views

Alternating chars and nested parenthesesin (e)grep

I'm looking for a regex that finds all words in a list that do not have characters next to each other that are the same. (this is an exercise) So abcdef is printed, but aabcdef is not. I tried both ...
2
votes
1answer
281 views

Time based VBA script for exercises

I have an excel spreadsheet with two columns, one with a list of exercises (33 of them) and a number of reps for each. What I really want is a program that picks a random exercise, displays it with ...
2
votes
3answers
270 views

exercise on haskell, type definition, and guards

first question: Define a function that joins a list of lists together using a separator value. the type definition should be like that: intersperse :: a -> [[a]] -> [a] The separator should appear ...
2
votes
5answers
1k views

Sieve of Eratosthenes algorithm

I am currently reading "programming principles and practice using c++" in chapter 4 there is an exercise in which i need to make a program to calculate prime numbers between 1 and 100. This is the ...
2
votes
8answers
2k views

Event-driven simulation class

I am working through some of the exercises in The C++ Programming Language by Bjarne Stroustrup. I am confused by problem 11 at the end of Chapter 12: (*5) Design and implement a library for writing ...
2
votes
7answers
511 views

Performance challenge: NAL Unit Wrapping

From what I've seen in the past, StackOverflow seems to like programming challenges, such as the fast char to string exercise problem which got dozens of responses. This is an optimization challenge: ...
1
vote
4answers
67 views

C++ For Dummies Exercise 6-14 Append Issue

I'm having trouble with an example that I am compiling from my C++ All-In-One For Dummies, Second Edition. What it should do is display 10 lines of code containing CR(somenumbers)NQ; However every ...
1
vote
1answer
54 views

Update of Stack Pointer? [closed]

Here's the question I encountered Which of the following typically occurs when a procedure call is executed on a processor? I. Program counter is updated. II. Stack pointer is updated. ...
1
vote
0answers
84 views

J2EE exercises? [closed]

Are you familiar with any good J2EE exercises for beginners available online? I'm interested mostly in exercises for EJB, JPA, JTA, JMS. I would also prefer exercises specifically for Weblogic App ...
1
vote
3answers
173 views

exercise write a Graphics program that draws a pyramid

I'm trying to learn Java from this book The Art and Science of Java exercise in book The Art and Science of Java page 129 my problem is the pyramid should be centered in the window import ...
1
vote
3answers
150 views

How To Think Like A Computer Scientist Question (Chapter 9): I don't understand the following question

I'm finding difficulting what exactly the doctest in the following code is looking for in the function. Can someone make it more clear for me, please? Question 14: Write functions ...
1
vote
3answers
203 views

Remove even appearance of elements from list with Lisp or PROLOG

I have to delete even appearance of element from list using LISP or PROLOG. Here is some example. input: '(5 2 (3 5 (3) 5 (4 2 (2 4))) 5 2) output: '(5 2 (3 () 5 (4 (2)))) Structure of the output ...
1
vote
1answer
265 views

Help with exercise(8-13) for Python Programming by John Zelle

The program seems to work, however the linear regression line created does not seem to really be the line of best fit. I think the problem is the implementation of the equation. I'm not sure if i'm ...
1
vote
2answers
275 views

Histogram of the length of words exercise hint?

I'm learning C with "The C Programming Language" book, and I'm trying to solve exercise 1.13: "Write a program to print a histogram of the lengths of words in its input. It is easy to draw the ...
1
vote
4answers
260 views

where can i find online c++ design patterns and exercises? [closed]

i need to start refine my memory so i like to practice a bit do you know good site like : http://www.blackbeltfactory.com for java?
1
vote
4answers
577 views

Design patterns exercise in Java [closed]

Hi I have an assignment to teach a team the subject of design principle. As a final exercise to this mini course, I thought to give them an exercise in design pattern, in Java. My idea is to give them ...
1
vote
5answers
722 views

Python Recursion Exercise

I am doing exercise on Singpath and I am stuck at this question. This question is under recursion exercises but I have no idea what the question means. A number, a, is a power of b if it is ...
1
vote
1answer
432 views

exercise in the c++ programming language 3rd edition - desk calculator

I'm not sure what Bjarne meant with this exercise: "Convert the desk calculator to use a symbol structure instead of using the static variables number_value and string_value." Did he mean puting ...
1
vote
5answers
5k views

Java Code Review: Merge sorted lists into a single sorted list

I want to merge sorted lists into a single list. How is this solution? I believe it runs in O(n) time. Any glaring flaws, inefficiencies, or stylistic issues? I don't really like the idiom of setting ...
0
votes
8answers
94 views

Why is the following program stuck in a loop?

I wrote a solution to an exercise that asks to write a program that acts as a simple "printing" calculator, and also detects division by zero and checks for unknown operators. The program works as ...
0
votes
0answers
20 views

Need Problems exercises about topic:'Flip-flop,registers,latches and counter'

Hey guys im searching problems about all kinds of Flip-flop,counter,registers and Latches. i have a exam tomorrow. and i couldnt find any problems about this topics. if you know any ,i appreciate ...
0
votes
2answers
122 views

Stuck on a ruby exercise

Hi guys, I am basically halfway done with Zed Shaw's introduction to Ruby course.. However I am stuck at a roadblock with this exercise where he gives me a piece of code and asks me to fix it, alot of ...
0
votes
0answers
94 views

Programming exercises? [closed]

I'm a PHP teacher and i'm having a few problems with my class. They're taking quite some time to grasp basic concepts such as functions, arrays, multidimensional arrays and loops. I'm looking for a ...
0
votes
1answer
154 views

How to convert 24:00 hours to 12:00 format

I need help with my pseudocode assignment: convert 2400 hours to 12 format Design an algorithm that will prompt for and receive the item expresses in 2400 format (e.g. 2305 Hours), convert it to 12 ...
0
votes
2answers
146 views

K&R Exercise 1-20 - Need some clarification

I don't fully understand what the following exercise is asking: "Write a program detab that replaces tabs in the input with the proper number of blanks to space to the next tab stop. Assume a fixed ...
0
votes
1answer
80 views

In a simple script to return the minimum of a list in scheme only the first value of the list is being returned by my solution. What's the bug?

(define (minim lst) (COND ((NULL? (CDR lst)) (CAR lst)) (< (CAR lst) (minim (CDR lst)) (CAR lst)) (ELSE (minim (CDR lst)))) ) (minim '(3 4 2 9 3 8)) 3 I've figured out that it ...
0
votes
2answers
57 views

K&R Task Exercise 5.17

Can someone explain what specifically needs to be done in exercise 5.17, what does it mean to sort within line, its field?
0
votes
4answers
109 views

Can this code be more efficient?

This Program should do this N 10*N 100*N 1000*N 1 10 100 1000 2 20 200 2000 3 30 300 3000 4 40 400 4000 5 50 500 5000 So here's my code: public class ex_4_21 { public ...
0
votes
0answers
120 views

Accelerated c++ Exercise 8-5 ..wording help?

Accelerated C++ --Exercise 8-5: Re-implement the gen_sentence and xref functions from Chapter 7 to use output iterators rather than putting their output in one data structure. Test these new ...
0
votes
1answer
153 views

Linear filter (FIR) in Hadoop (Hadoop in Action exercise)

Exercise 4, Chapter 4 in Hadoop in Action is about implementing a linear filter computing the moving average of a time series. That is, given N and a series of timestamped values a(t), compute y, ...
0
votes
3answers
268 views

K & R exercises? [closed]

I have spent most of time higher-level languages such as Java and Python (although I have worked with C in the past). Seeing that my C skills were quite rusty are picked up K&R and started working ...
0
votes
2answers
346 views

Cannot run Android notepad exercise 1 in emulator

I got to try an exercise 1 of notepad application just yesterday and passed through all the steps to the last one - running in an emulator. As I am new to Android platform, I'm not a noob. I have set ...
0
votes
2answers
169 views

C homework - string loops replacements

I know it's a little unorthodox and will probably cost me some downvotes, but since it's due in 1 hour and I have no idea where to begin I thought I'd ask you guys. Basically I'm presented with a ...

1 2