0
votes
2answers
33 views
PHP/Flash advice
Looking to start a project that would require me to use Flash or Flex (I have not worked with either of these yet, yikes!!!). Flash would be the front end user interface that needs …
0
votes
1answer
21 views
prolog - why this strange trace
here is the prolog code (which i sort of follow).
len([],0).
len([_|T],N) :- len(T,X), N is X+1.
and here is the trace for it (im running linux, swi)
[trace] ?- len([d,f,w …
2
votes
3answers
98 views
php riddle - interesting result
I have the following code:
<?php
$cups = array();
for($i=0; $i<500; $i++){
$cups[$i] = 0;
}
for($x=1; $x<500; $x++){
for($y=$x; $y<500; $y+=$x){
$cups[$ …
1
vote
3answers
33 views
prolog cut off in method
I have a question I would like to ask you something about a code snippet:
insert_pq(State, [], [State]) :- !.
insert_pq(State, [H|Tail], [State, H|Tail]) :-
precedes(State, H) …
0
votes
4answers
46 views
RoR: “belongs_to_many”? Association headache…
I can't seem to wrap my head around this, so I thought I'd post and see if anyone could help me out (please pardon the question if it's insultingly simple: it's complicated to me r …
2
votes
2answers
86 views
Proving with floor and ceiling functions formally for computer scientists
Hi there,
This is indeed a sort of exercise I have to complete but a little direction would be wonderful. I have to determine if I should prove or disprove these three statements. …
2
votes
3answers
66 views
Applications of Unification?
What are (practical) applications of
Unification ? Where it is been
used in real world?
I couldn't get the whole idea of what it is really about and why its considered as …
1
vote
2answers
61 views
Pragmatically adding give-aways/freebies to an online store.
Our business currently has an online store and recently we've been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice sta …
1
vote
5answers
59 views
how to create a parser for search queries
for example i'd need to create something like google search query parser to parse such expressions as:
flying hiking or swiming
-"walking in boots " author:hamish author:reid …
11
votes
8answers
581 views
C++ interview preparation
I have a Phone interview coming up next with with a company which works in financial software industry. The interview is mainly going to be in C++ and problem solving and logic. Pl …
4
votes
12answers
383 views
Distinguishing extra element from two arrays?
One of my friend was asked this question in an interview -
You have given two integer arrays each of size 10.
Both contains 9 equal elements (say 1 to 9)
Only one element is dif …
6
votes
8answers
228 views
Why are default arguments evaluated at definition time in Python?
I had a very difficult time with understanding the root cause of a problem in an algorithm. Then, by simplifying the functions step by step I found out that evaluation of default a …
1
vote
1answer
94 views
Best resize and or crop logic
Hey guys,
I've come across this a few times and thought it would be good to put it out there. What's your best image resize and/or crop logic. The idea being that some method is …
2
votes
10answers
239 views
Learning Java and logic using debugger. Did I cheat?
After a break from coding in general, my way of thinking logically faded (as if it was there to begin with...). I'm no master programmer. Intermediate at best. I decided to see …
3
votes
9answers
205 views
Do formal methods of program verfication have a place in industry?
I took a glimpse on Hoare Logic in college. What we did was really simple. Most of what I did was proving the correctness of simple programs consisting of while loops, if statement …
