Tagged Questions

-1
votes
1answer
35 views

problem: Counting>> in eclips [closed]

plz.. can sombody help me in this question>> write the java code for this problem with eclips or drjava: Complete the function TotalChars. TotalChars returns the total number of occurrences of the …
3
votes
3answers
140 views

Alternatives to GCC’s new atomic integer operations…

GCC's recent support for atomic operations (as described here) is great, and is 90% of what we need. Unfortunately, some of our products still need to run on Windows and so we need atomic integer …
0
votes
2answers
69 views

Counting all the keys pressed and what they are (python)

I'd like to create a map of the number of presses for every key for a project I'm working on. I'd like to do this with a Python module. Is it possible to do this in any way?
10
votes
17answers
819 views

Code Golf 4th of July Edition: Counting Top Ten Occurring Words

Given the following list of presidents do a top ten word count in the smallest program possible: INPUT FILE Washington Washington Adams Jefferson Jefferson Madison …
0
votes
1answer
141 views

AppleScript Word Count Service

Hi folks, I am trying to create a service in OSX leopard that counts the number of words of selected text. I have automator set to run an applescript, with the following put in it: on run {input, …
3
votes
10answers
2k views

Counting the number of occurrences of words in a textfile

How could I go about keeping track of the number of times a word appears in a textfile? I would like to do this for every word. For example, if the input is something like: "the man said hi to the …
0
votes
1answer
33 views

Time-Delayed MySQL “Update” for More Realistic Tally of Online Video Views

I'm creating a video embed page for a real estate site, where a user can go to watch a video tour of a given home. There is no other reason to visit that particular page, so I figured that I could …
3
votes
6answers
567 views

item frequency count in python

Hi, I'm a python newbie, so maybe my question is very noob. Assume I have a list of words, and I want to find the number of times each word appears in that list. Obvious way to do this is: words = …
0
votes
7answers
1k views

How do I count the characters, words, and lines in a file, using Perl?

What is a good/best way to count the number of characters, words, and lines of a text file using Perl (without using wc)?
1
vote
2answers
719 views

How do you calculate the total number of all possible unique subsets from a set with repeats?

Given a set** S containing duplicate elements, how can one determine the total number all the possible subsets of S, where each subset is unique. For example, say S = {A, B, B} and let K be the set …
0
votes
2answers
70 views

RegExp Counting System

I'm trying to create a system where I can convert RegEx values to integers and vice versa. where zero would be the most basic regex ( probably "/./" ), and any subsequent numbers would be more …
0
votes
8answers
351 views

Algorithm for Counting Sorted Strings (Homebrew “uniq -c”)

Hi all, I have the following already sorted data: AAA AAA TCG TTT TTT TTT I want to count the occurrence of each string yielding AAA 2 TCG 1 TTT 3 I know I can do that with "uniq -c", but here …
3
votes
3answers
280 views

Basic Pixel/Cell Counting Algorithm

Good night :) I am currently playing with the DevIL library that allows me to load in image and check RGB values per pixel. Just as a personal learning project, I'm trying to write a very basic OCR …
0
votes
6answers
168 views

Index of x Recurring Character

The following code is supposed to show in a message box the index of the third a in the string checkme, but when I run the program it doesn't give me the right answer (should be 12, instead I get 9). …
1
vote
6answers
656 views

Fastest way to count number of bit transitions in an unsigned int

I'm looking for the fastest way of counting the number of bit transitions in an unsigned int. If the int contains: 0b00000000000000000000000000001010 The number of transitions are: 4 If the int …

1 2 next
15 30 50 per page