Google Interview Question for Software Engineers


Country: United States




Comment hidden because of low score. Click to expand.
0
of 0 vote

void removeDuplicate(int lines[]){
        int i=0;
        int j=0;
        HashSet<Integer> hs = new HashSet<>();
        while(i<lines.length){
            if(hs.contains(lines[i])){
                i++;
            }else{
                lines[j] = lines[i];
                hs.add(lines[i]);
                i++;
                j++;
            }
        }
        for(int x=0;x<j;x++){
            System.out.print(lines[x]+" ");
        }
    }

- rahulroshan96 May 13, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

hash set will itself take care of duplicacy. need not handle that explicitly. just keep adding stuff to hash set and then output the result.

- rini May 22, 2019 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

void removeDuplicateLineFromFile(std::string strFileContent[],int nSize)
{
	map<std::string, int> mapFile;

	for (int i = 0; i < nSize; i++)
	{
		if (mapFile.find(strFileContent[i]) == mapFile.end())
		{
			mapFile[strFileContent[i]] = 1 ;
			//mapFile.insert(std::pair(strFileContent[i], 1));
			//mapFile.insert(strFileContent[i],1);
		}
	}
	printf("Removed duplicate result \r\n");
	map<string, int>::iterator mapIt;

	for (mapIt = mapFile.begin(); mapIt != mapFile.end() ; mapIt++)
	{
		printf("%s\r\n", mapIt->first.c_str());
	}
}


int main()
{

	std::string strFileContent[] = { {"single line"},{"double line"}, {"single line"}, {"thrible line"},{"double line"},{"single line"},{"single line"} };

	int nSize = sizeof(strFileContent) / sizeof(std::string);

	removeDuplicateLineFromFile(strFileContent, nSize);
}

- rsullad May 13, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

// JavaScript version
class RemoveDuplicateLines {
    removeDuplicate(lines) {
        let visitedLines = {};
        let result = [];

        for(let i = 0; i < lines.length; i++) {
            if(!visitedLines[lines[i]]) {
                result.push(lines[i]);
            }
            visitedLines[lines[i]] = true;
        }

        return result;
    }
}

- Danny June 02, 2019 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More