Puzzle CornerSign In
HomeFeedbackBlogResourcesAbout
Starred
Add Question
All (696)
coding (266)
c++ (157)
algorithms (151)
puzzle (134)
CS Fundamentals (83)
oop (55)
arrays (45)
internet (40)
string (34)
math (31)
databases (28)
system (26)
probability (26)
networking (25)
linkedlist (24)
binarytrees (24)
tree (22)
bit manipulation (19)
sorting (11)
stack (10)
bst (9)
java (8)
xml (8)
sql (7)
next in series (7)
traversal (6)
graph (4)
debugging (4)
lateral thinking (4)
palindrome (4)
mysql (4)
prime (4)
general (4)
unix (3)
CGI (3)
duplication (3)
threading (3)
random (3)
search (3)
fibonacci (3)
encryption (3)
joins (3)
hash (3)
queue (3)
asm (3)
design patterns (2)

next »

Random
Global problem[2007-02-26 23:42:17]   
How many points are there on the globe where by walking one mile south,
one mile east and one mile north you reach the place where you started.
linkAuthor:premTags: puzzleAnswer

Difference between "vector" and "array"?[2007-02-26 23:42:21]   
What are the difference between "vector" and "array"?
linkAuthor:premTags: c++Answer

Implement strtok[2007-02-26 23:42:18]   
Implement strtok: How do you handle consecutive delimiters, end of
string delimiters, and starting delimiters. How would u make it more
efficient (the delimiter loop can be replaced by an associative array,
what is the lenght of the array (255 - Can be reduced to 32)
linkAuthor:premTags: algorithms | stringAnswer

Find the longest string occuring in 2 strings[2007-02-26 23:42:19]   
Given 2 input strings, find the longest string that occurs in both.
linkAuthor:premTags: string1 CommentAnswer

Yet another string function[2007-02-26 23:42:17]   
Write a function f(a, b) which takes two string arguments and returns a
string containing only the characters found in both strings in the order
of a. Write a version which is order N-squared and one which is order N.
linkAuthor:premTags: stringAnswer

Longest palindrome[2007-06-14 01:07:25]   
Write a function that returns the longest palindrome in a given string. e.g \"ccddcc\" in the string \"abaccddccefe\"
linkAuthor:premTags: algorithms | coding | c++ | string | palindrome3 CommentsAnswer

String prefix[2007-02-26 23:42:19]   
You are given a list of strings of 0s and 1s. E.g. 10, 110, 01001, ...
Devise an algorithm to check if any of the string is a prefix of another one.
linkAuthor:premTags: algorithms | string2 CommentsAnswer

khanji problem[2007-02-26 23:42:18]   
khanji has a LOT of characters in their alphabet and are using a way of
compressing it so that the most common characters are 1 byte and the
less common are 2 bytes. If it's a '1 byte' character, it starts with a
0, If it's a 2 byte character, it starts with a 1. If you're at a
particular character (at the beginning), how do you find where the
previous character begins?
linkAuthor:premTags: stringAnswer

Find longest run of a letter in a string[2007-05-29 04:24:53]   
Write a function that returns the longest run of a letter in a string. e.g. cccc in the string abccccdef.
linkAuthor:premTags: stringAnswer

IntToStr function[2007-02-26 23:42:17]   
Implement "void IntToStr(int num, char str[])"
linkAuthor:premTags: coding | stringAnswer

Wild card string matching.[2007-02-26 23:42:19]   
Implement an algorithm to do wild card string matching.
linkAuthor:premTags: algorithms | coding | stringAnswer

String copy[2007-02-26 23:42:17]   
Write a function to copy two strings, A and B. The last few bytes of
string A overlap the first few bytes of string B.
linkAuthor:premTags: coding | stringAnswer


next »




Created by Premchand Jayamohan