Algorithm to match one input file with given numbers of file

后端 未结 3 706
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-05 09:17

I had an interview last week. I was stuck in one of the question in algorithm round. I answered that question, but the interviewer did not seem convinced. That\'s why I am s

3条回答
  •  执笔经年
    2021-01-05 10:16

    diff them and pass through wc -l, or implement Levenshtein distance in C++ treating each line as a single character (or any more appropriate unit condidering the subject domain)

提交回复
热议问题