Python Technical Interviews Part II
SJU ACM STUDENT CHAPTER
Sign In Form:
Why Study for technical Interviews?
What language should you use?
Python vs Java For loop Syntax
Python
Java
Efficiency : o(n)
Python vs Java Hashmap/Dictionary Syntax
Python
Java
Efficiency : o(1)
Or
How do you Get started?
Big O Efficiency
In Big O, there are six major types of complexities (time and space):
Python Cheat Sheet
Valuable problems for interviews
Simple Two Pointers: 2 Sum Sorted:
https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/description/
Medium Two Pointers: Container With most Water:
https://leetcode.com/problems/container-with-most-water/description/
Simple Sliding Windows: best time to buy and sell stock:
https://leetcode.com/problems/best-time-to-buy-and-sell-stock/description/
Medium SLiding Windows: Permutation in String
https://leetcode.com/problems/permutation-in-string/
Thank you!