Amazon Interview Question for Technical Support Engineers


Team: AWS
Country: United States
Interview Type: In-Person




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

We had this exact problem in my Unix Tools and Scripting Class at Cornell.

grep -Eo "(\(?[[:digit:]]{3}\)?\s*[.-]?\s*)?[[:digit:]]{3,4}\s*[.-]?[[:digit:]]{4}" phone-data.txt | wc -l

- ajs426@cornell.edu March 15, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

could someone please explain this..

- Senthil May 25, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

#easy way
more filename | grep "[1-9][1-9][1-9][1-9][1-9][1-9][1-9][1-9][1-9][1-9] \| [1-9][1-9][1-9]-[1-9][1-9][1-9]-[1-9][1-9][1-9][1-9]"
#this will preserve 2 formats like
#123456790
# 123-456-7890

- sumshar1 May 02, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

grep -o '(*[[:digit:]]\{3\})*-*[[:digit:]]\{3\}-*[[:digit:]]\{4\}'
This will take care of following formats:
1. 1234567890
2. 123-456-7890
3. (123)-456-7890
Also it will take into account multiple phone numbers on same line

- sindbad June 09, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

grep -c [0-9]\{3\}-[0-9]\{3\}-[0-9]\{4\} < filename>

- Kiran December 31, 2015 | 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