Claudiu

10,462
Reputation
715 views

Registered User

Name Claudiu
Member for 1 year
Seen Nov 25 at 7:24
Website
Location Fort Lee, New Jersey + Providence, RI
Age 21
Student at Brown University.
Nov
26
awarded  Famous Question
Nov
25
comment Turn a string into a regexp that matches the plain string, in DrScheme
thanks! my main problem is that i wasn't able to find a good link to the documentation by google searching, or the docs i found were for certain modules which i didn't know how to import. these are a good place to start though
Nov
24
comment What are the dark corners of Vim your mom never told you about?
o my god this is the coolest thing
Nov
24
comment Missing java.util.HashMap
what error do you get and what's the code exactly?
Nov
23
comment Efficient algorithm to remove any map that is contained in another map from a collection of maps.
If input is {{a: 1, b: 1}, {c: 1}, {b: 1, c: 1}}, do you just want {{a: 1, b: 1} , {c: 1}}, or all 3? If it's the former, what exactly do you need this for?
Nov
23
comment Efficient algorithm to remove any map that is contained in another map from a collection of maps.
this is more like O(n^2*m), where m is the size of the largest Map
Nov
23
comment Ignore python multiple return value
I really prefer the _ variable. It's very obvious that you're ignoring a value
Nov
23
comment Haskell minimum/maximum Double Constant
i mis-spoke: i meant the smallest positive non-zero rational #.
Nov
23
revised Haskell minimum/maximum Double Constant
added 8 characters in body
Nov
23
comment Ever had to “dumb down” for a job?
off-topic: I agree w/ most of your pts, but is it really necessary to program every class to an interface?
Nov
23
revised Haskell minimum/maximum Double Constant
more precise wording
Nov
23
asked Haskell minimum/maximum Double Constant
Nov
22
answered Do you listen to anything while programming?
Nov
22
accepted Complexity in Prolog programs?
Nov
22
comment Best-case Running-time to solve an NP-Complete problem?
ah my mistake, you're right
Nov
22
comment Best-case Running-time to solve an NP-Complete problem?
mathoverflow version: mathoverflow.net/questions/6418/…
Nov
22
comment Best-case Running-time to solve an NP-Complete problem?
I think it only requires O(n) space
Nov
22
answered What javascript frameworks should I become familiar with?
Nov
22
revised Best-case Running-time to solve an NP-Complete problem?
deleted 8 characters in body
Nov
22
comment Best-case Running-time to solve an NP-Complete problem?
@RickNZ: By 'we' I meant 'humanity in general'. I'm not trying to have you guys beat my algorithm, I just want to know what the fastest is that exists.
Nov
22
asked Best-case Running-time to solve an NP-Complete problem?
Nov
22
answered Complexity in Prolog programs?
Nov
21
answered What is a programming language?
Nov
21
comment What is a programming language?
They're not "fancy", but "formal" - there is a difference, and a reason that they don't sound so simple
Nov
20
comment Code Golf: Perfect Tic-Tac-Toe
@dmckee: Ty. I haven't been keeping up to date on these things and I see that my problem doesn't meet many of the standards in the accepted answer. I'd be fine with closing it and I'll try again later when there have been less code golfs around.
Nov
20
answered Paying great programmers more than average programmers
Nov
20
comment Code Golf: Perfect Tic-Tac-Toe
This isn't HW; it's just my first attempt at creating a codegolf. @Moishe: So, can you solve it in < 96 bytes?
Nov
20
revised Code Golf: Perfect Tic-Tac-Toe
edited tags
Nov
20
asked Code Golf: Perfect Tic-Tac-Toe
Nov
20
comment Code Golf Christmas Edition: How to print out a Christmas tree of height N
Why did this win when J has smaller char count?
Nov
20
revised string-split in DrScheme
more complete
Nov
19
asked Turn a string into a regexp that matches the plain string, in DrScheme
Nov
19
asked string-split in DrScheme
Nov
18
comment Check string containment in Scheme
I have a one-liner that does this by using string->list and foldl, but I was looking for a cleaner way. This looks more cumbersome
Nov
18
revised Check string containment in Scheme
added my version of scheme; added 2 characters in body
Nov
18
asked Check string containment in Scheme
Nov
18
comment Prolog - member predicate one-liner
It being used to enumerate elements / lists etc. is an awesome side-effect of the way prolog works =). not special to this example - if you define Addition, you automatically get Subtraction. If you define a TypeChecker, you also define an enumerator for all well-typed programs.
Nov
16
answered List of freely available programming books
Nov
16
comment Prolog - member predicate one-liner
hmm very cute. The key was the ; operator - I didn't know you could do 'or's inside of a rule.
Nov
16
asked Prolog - member predicate one-liner
Nov
16
comment RegEx match open tags except XHTML self-contained tags
wow why does this have so many views?
Nov
15
accepted Python binary diff
Nov
15
answered Python binary diff
Nov
15
comment Longest circle in graphs
You have a directed graph, but it's not acyclic. If it were acyclic, you'd know that once you left city B, you wouldn't be able to come back to it, so the decision on what to do upon leaving B is easy. But with cycles the problem becomes harder
Nov
15
comment Find out whether a Linked List has a loop
didn't see it - thanks Heath!
Nov
15
comment Longest circle in graphs
yeah longest path is NP-Complete as well
Nov
15
answered Longest circle in graphs
Nov
15
asked Find out whether a Linked List has a loop
Nov
13
answered How to Implement a counter for every number inside a list with Scheme ?
Nov
12
comment How are VTBLs implemented in Java?
very nice answer, ty. i got the idea from the other answers but this is much more explanatory.