A full guide on how to prepare for technical interviews! From soft skills to algorithm analysis, this github page provides the necessary material to help you secure a job offer!
-
Check out this repository's website here: https://sjuacm.github.io/Technical-Interview-Prep/
Topic | Date | Problem(s) Covered | Notebook Link |
---|---|---|---|
Understanding the Importance of Time & Space Complexity | 11/18/2021 | Fibonacci Sequence | Link |
Optimizing Time Complexity | TBD | Max Subarray, SumofTwo | TBD |
Data Structures are essential to understand for technical interviews and especially for Software Engineering roles. When given a coding problem, you have to know the optimal data structure to use in order to solve the problem in the most efficient way. For these interviews, just solving the problem is not enough to land you an offer, you have to be mindful of the time complexity and memory usage of your solution because they should be as minimal as possible. A solution that runs in O(n) is clearly better than a solution that runs in O(n^2), and this is why you have to also be very skilled in knowing how to calculate the time complexity of your solution.
- https://realpython.com/python-data-structures/
- https://docs.python.org/3/tutorial/datastructures.html
Lists are the most versatile datatype available in Python and can be written as a list of comma-separated values (items) between square brackets. An advantage of using a list is that iems in a list do not need to be of the same type.
- list.append(x)
Add an item to the end of the list. Equivalent to a[len(a):] = [x].
- list.extend(iterable)
Extend the list by appending all the items from the iterable. Equivalent to a[len(a):] = iterable.
- list.insert(i, x)
Insert an item at a given position. The first argument is the index of the element before
which to insert, so a.insert(0, x) inserts at the front of the list, and
a.insert(len(a), x) is equivalent to a.append(x).
- list.remove(x)
Remove the first item from the list whose value is equal to x. It
raises a ValueError if there is no such item.
- list.pop([i])
Remove the item at the given position in the list, and return it. If no index is
specified, a.pop() removes and returns the last item in the list. (The square brackets
around the i in the method signature denote that the parameter is optional, not that
you should type square brackets at that position.
- list.clear()
Remove all items from the list. Equivalent to del a[:].
- list.index(x[, start[, end]])
Return zero-based index in the list of the first item whose value is equal
to x. Raises a ValueError if there is no such item.
The optional arguments start and end are interpreted as in the slice notation
and are used to limit the search to a particular subsequence of the list. The
returned index is computed relative to the beginning of the full sequence
rather than the start argument.
- list.count(x)
Return the number of times x appears in the list.
- list.sort(*, key=None, reverse=False)
Sort the items of the list in place (the arguments can be used for sort
customization, see sorted() for their explanation).
- list.reverse()
Reverse the elements of the list in place.
- list.copy()
Return a shallow copy of the list. Equivalent to a[:].
# Creating a list
>>> arr = ["one", "two", "three"]
>>> arr[0]
'one'
# Printing a list
>>> arr
['one', 'two', 'three']
# Lists are mutable:
>>> arr[1] = "hello"
>>> arr
['one', 'hello', 'three']
# You can easily delete elements from a list with the del command
>>> del arr[1]
>>> arr
['one', 'three']
# Lists can hold arbitrary data types:
>>> arr.append(23)
>>> arr
['one', 'three', 23]
>>> fruits = ['orange', 'apple', 'pear', 'banana', 'kiwi', 'apple', 'banana']
>>> fruits.count('apple')
2
>>> fruits.count('tangerine')
0
>>> fruits.index('banana')
3
>>> fruits.index('banana', 4) # Find next banana starting a position 4
6
>>> fruits.reverse()
>>> fruits
['banana', 'apple', 'kiwi', 'banana', 'pear', 'apple', 'orange']
>>> fruits.append('grape')
>>> fruits
['banana', 'apple', 'kiwi', 'banana', 'pear', 'apple', 'orange', 'grape']
>>> fruits.sort()
>>> fruits
['apple', 'apple', 'banana', 'banana', 'grape', 'kiwi', 'orange', 'pear']
>>> fruits.pop()
'pear'
A tuple is a collection of objects which ordered and immutable. Tuples are sequences, just like lists. The differences between tuples and lists are, the tuples cannot be changed unlike lists and tuples use parentheses, whereas lists use square brackets.
#Example useage
tup1 = ('physics', 'chemistry', 1997, 2000);
tup2 = (1, 2, 3, 4, 5 );
tup3 = "a", "b", "c", "d";
>>> tup = ("one", "two", "three")
>>> tup[0]
'one'
# Tuples have a nice repr:
>>> tup
('one', 'two', 'three')
# Tuples are immutable:
>>> tup[1] = "hello"
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'tuple' object does not support item assignment
>>> del tup[1]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'tuple' object doesn't support item deletion
# Tuples can hold arbitrary data types:
# (Adding elements creates a copy of the tuple)
>>> tup + (23,)
('one', 'two', 'three', 23)
A set is an unordered collection of objects that doesn’t allow duplicate elements. Typically, sets are used to quickly test a value for membership in the set, to insert or delete new values from a set, and to compute the union or intersection of two sets.
#You can initialize a set in two ways
>>> x = set(['foo', 'bar', 'baz', 'foo', 'qux'])
>>> x
{'qux', 'foo', 'bar', 'baz'}
>>> x = set(('foo', 'bar', 'baz', 'foo', 'qux'))
>>> x
{'qux', 'foo', 'bar', 'baz'}
# Modifying sets
>>> x = {'foo', 'bar', 'baz'}
>>> x.add('qux')
>>> x
{'bar', 'baz', 'foo', 'qux'}
>>> x = {'foo', 'bar', 'baz'}
>>> x.remove('baz')
>>> x
{'bar', 'foo'}
# Checking for values in sets
>>> vowels = {"a", "e", "i", "o", "u"}
>>> "e" in vowels
True
>>> s = 'quux'
>>> list(s)
['q', 'u', 'u', 'x']
>>> set(s)
{'x', 'u', 'q'}
>>> letters = set("alice")
>>> letters.intersection(vowels)
{'a', 'e', 'i'}
>>> vowels.add("x")
>>> vowels
{'i', 'a', 'u', 'o', 'x', 'e'}
>>> len(vowels)
6
-
Knowing how to calculate the time and space complexity for an algorithm is essential if you want to land a Software Engineering role. When given a problem, it is crucial to devise the most optimal solution which takes the least time and space to execute. This requires an understanding of Big-O notation, which will be explained through a series of examples.
-
Learn more about Space Complexity here
-
LeetCode is one of the best platforms to use to prep for technical interviews. On the website, you have free access to over 1,000 coding problems, which you can complete and compare your answers with other people. The platform shows you the time and space complexity for your solutions, and is the perfect way to improve your programming skills.