Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering what the most computationally efficient Python way of cracking this problem would be.

Say you have two strings (or lists from splitting those strings--doesn't matter), "this is the right string" vs. "this is right the string."

We're assuming that the first string is always right, and a score will be assigned to the second string based on which words were sequenced in the right order. For the above two strings, we would assign a score of 0.6 (as only 3 of the 5 words are in the right position).

Best, Georgina

share|improve this question

4 Answers

up vote 0 down vote accepted
a = "this is the right string"
b = "this is right the string"

sum([1 for i,v in zip(a.split(), b.split()) if i == v])
share|improve this answer
1  
you don't needs list comprehension there – SilentGhost Oct 24 '10 at 16:59
@SilentGhost: yes thanks, i should start thing more generator expression :) – mouad Oct 24 '10 at 17:05
Returns 3. OP wanted 0.6 – eumiro Oct 24 '10 at 17:22
@eumiro: i think the change is trivial isn't it ? beside helping some one with a problem don't mean give in him all the answer, just given some indication to the right answer can help him too – mouad Oct 24 '10 at 17:25
that's true. If OP is searching for 'computationally efficient' code, he could check itertools. But how to split() a string lazily? – eumiro Oct 24 '10 at 17:31

This sounds very much like homework. Try thinking about it for a bit. Would it suffice to traverse the list of correct words once, and check if the corresponding word in the second list is equal to the word in the correct list?

I would probably zip the lists in python and compare the pairs for equality.

share|improve this answer
It's easy to come up with a solution, but I'm looking for the fastest, most computationally efficient one! – Georgina Oct 24 '10 at 17:19
1  
@Georgina: so where was your bad inefficient code? – SilentGhost Oct 24 '10 at 17:23
sum(f == s for f, s in zip(first, second)) / len(first)
share|improve this answer
In Python 2.x returns 0 because of the integer division. some float() could be needed. – eumiro Oct 24 '10 at 17:15
@eumiro: might return 1 depending on the input – SilentGhost Oct 24 '10 at 17:16
yes, might return 1. But in the OP's example should return 0.6 and returns 0. – eumiro Oct 24 '10 at 17:19
why the downvote? – SilentGhost Oct 24 '10 at 17:20
@eumiro: it's completely besides the point. Accepter answer doesn't return 0.6 either. – SilentGhost Oct 24 '10 at 17:21

Use ord() to convert each character to an integer value (its ordinal value), and then XOR each character together using the bitwise operator ^. If the characters are the same, the XOR operation will return 0 (zero), then use |= to bitwise OR the returned value with result and then save the result of the operation as result. If result is still zero after you iterate over all the characters, then the strings are equivalent.

a = "this is the right string"
b = "this is right the string"

result = 0
for x,y in zip(a,b):
    result |= ord(x) ^ ord(b)

(if result == 0): print "Equivalent"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.