Tarun Sharmatapstechie.hashnode.dev·Aug 4, 2024Python Interview Preparation: Class Methods vs Static Methods ExplainedIn Python, methods within a class can be categorized into instance methods, class methods, and static methods. Each serves a unique purpose and provides different levels of access to the class and its instances. In this blog, we'll explore class meth...Discuss·10 likesPython Interview Prep: Essential Concepts and TechniquesTaps-Techie
Harshavardhan Kharshavardhankummara.hashnode.dev·May 11, 2024Navigating the Coding Interview Maze: A First-Timer's JourneyIntroduction: Stepping into the realm of coding interviews can feel like embarking on an odyssey through a labyrinth of algorithms and data structures. Recently, I embarked on my maiden voyage into this intricate world, armed with nothing but my wits...Discuss·1 likeinterview
Coditioningcoditioning.hashnode.dev·Apr 21, 2024Bloomberg Senior Software Engineer Interview GuideCODING ROUNDS You’ll typically have a phone screen and one or two extra onsite coding rounds. Always confirm with your recruiter as the number of interviews can vary between teams. Technical Knowledge Areas Ensure you have a good understanding of so...DiscussBloomberg
Raahul Seshadrithephilosopher.tech·Mar 19, 2024The "Hidden Standards" Problem in InterviewsThe inflection point of every tech interview is when the interviewer gives a scenario, the candidate seemingly answers correctly, yet the interviewer rejects the candidate on the absurdity of the solution. Why do correct solutions tend to look absurd...Discuss·2 likes·1.6K readsInterviewsinterview
Miguel Acevedoblog.mimixtech.com·Mar 5, 2024Navigating Interview Coding ChallengesIntroduction In my journey through the world of coding interviews, I encountered a recurring obstacle: the difficulty of coming up with critical test cases that are a significant representation of the problem statement. The realization that robust so...Discuss·10 likes·115 readsCodingInterview
Jessie Yujessieyu1.hashnode.dev·Feb 20, 2024Leetcode 977. Squares of a Sorted ArrayGiven an integer array nums sorted in non-decreasing order, return an array ofthe squares of each numbersorted in non-decreasing order. Example 1: Input: nums = [-4,-1,0,3,10] Output: [0,1,9,16,100] Explanation: After squaring, the array becomes [16,...DiscussArrayManipulation
Nhut Nguyenleetsolve.com·Jan 2, 2024Common Mistakes in Coding Interviews and How to Avoid ThemCoding interviews are a pivotal part of the hiring process for software engineers and developers. These interviews assess your problem-solving skills, algorithmic thinking, and coding abilities under pressure. While coding interviews can be challengi...Discuss·49 readsCodingInterview
Sadman Abedinsadmanabedin.hashnode.dev·Jun 15, 2023Comparing Coding Platforms: LeetCode, CodeWars, CodeSignal, and HackerRankIntroduction As an individual who has delved into the world of programming and coding challenges, I have had the opportunity to explore several platforms, each with its own set of advantages and disadvantages. Among the platforms I have utilized are ...Discuss·38 readscoding
Junho Kimjunojunho.hashnode.dev·Apr 27, 2023How to start Competitive ProgrammingWhat is competitive programming ? Competitive programming is a mind sport or a type of programming competition where participants solve algorithmic problems within a fixed time frame. It involves the use of programming languages and problem-solving s...Discussalgorithms
Samuel Adebayosamueladebayo.com·Apr 20, 2023Day 2 [Blind 75][LeetCode] Maximizing Profit from Buying and Selling StocksIntroduction Welcome to Day 2 of the Blind 75 Challenge! Today I will be tackling the problem of finding the maximum profit by buying and selling stock once, a common problem in algorithm interviews and coding competitions. In this blogpost, I will e...Discuss·431 readsLeetcode Blind 75 SeriesPython