Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 827 Bytes

README.md

File metadata and controls

17 lines (10 loc) · 827 Bytes

File Compare

Write a program that to find matching strings between the two provided files. It should be a case insensitive exact match of the names in the two files. (Duration 1 hour).

Problem Statement

Part 1: Find matching strings between the two provided files. It should be a case insensitive exact match of the names in the two files. (Duration 1 hour).

Part 2: After finishing part 1 of the assignment, introduce the notion of similarity between the names (as opposed to the exact string match). You are free to make reasonable (and justifiable) assumptions about what the similarity in this context should mean. (Duration: 2 hrs). E.g. -- Similar search: "Amit Kumar" in file 2 should match "Amit Anjani Kumar" in File 1 etc.

Source

The Matching strings between two files. view source