All Questions
Tagged with hashcode python-2.x
3 questions
4
votes
1
answer
233
views
Updating data file records
I learnt to code a long, long time ago.
Concerns
Existing approach is messy and will be hard to maintain. System errors are not trapped and the error messages could be better implemented. Final ...
3
votes
1
answer
1k
views
Rabin Karp algorithm improvement for string contains A to Z only
I have made some improvement to Rabin Karp algorithm when the source and pattern only contain the characters from A to Z. The improvement is, I use base 26 for hashing (as there are total 26 ...
3
votes
2
answers
99
views
Finding a pair of words from two files with a particular MD5
I have two txt files. Both contain 60k+ words in a list. I put together some code to loop through each file and concatenate the strings
...