I've opened up a few free mock interview slots on the coming weekends to help you prepare for your next job interview. Whether you're aiming for a new role or looking to improve your interview skills, this is a great opportunity to get personalised feedback. 🔗 Book your slot: https://lnkd.in/ddXVNk_d #MockInterview #JobPrep #InterviewSkills #ProfessionalDevelopment #TopMate
Amit Bhandari’s Post
More Relevant Posts
-
DI with Hilt android is so beautiful🔥, but getting into the core and handling the interview questions is not so easy ☺️ Here, I'm sharing some critical questions and answers for you. All the best 👏 #andriod #interview #hilt #hiltAndriod #dagger #Tips #kotlin #interview https://lnkd.in/gJHdwaZj
Crazy Hilt Android Questions & Answers! எப்படி எல்லாம் யோசிக்கிறாங்க
https://www.youtube.com/
To view or add a comment, sign in
-
#100DaysOfCode #100DaysofLeetCode #DSA #leetcode 🗓️Day 9/100 ❓214. Shortest Palindrome 📁String Short hint: Find the longest palindrome, reverse remainder. Solution: https://lnkd.in/gm8jFcZ8
Shortest Palindrome - LeetCode
leetcode.com
To view or add a comment, sign in
-
Hippies vs Nerds, Process vs Content, Professional managers vs Builders who manage, Profound understanding of customers enabling brilliant products. So much history in this interview: https://lnkd.in/gVmG8kAV Watch it. Learn from it. It is not new, but I suspect many here have not seen it. His words about products being pedestrian versus enlightened will ring true to those of you who (still) see the necessity of equal parts of art and science being in the recipe. Steve viewed computing as the modern medium best suited to manifest enlightened inspiration and creation. He was convinced that products should brim with creativity that can be felt AND that such were possible to make at scale - that science, art, and EBITDA were not at odds. On the contrary, each could serve to maximize the other when given equal attention. When they finally gave him back the company, his vision took Apple from 90 days from bankruptcy to the most valuable company in America. Do we still believe what he preached, no, "breathed" with everything that he did? I do.
Steve Jobs - The Lost Interview (11 May 2012) [VO] [ST-FR] [Ultra HD 4K]
https://www.youtube.com/
To view or add a comment, sign in
-
Announcing a new personal project of sorts: the Critical Hit Digest. TL:DR offering my own two cents and another place to publish stories about what I find interesting in tabletop roleplaying games. https://lnkd.in/etexCnfJ TTRPGs are things like Dungeons and Dragons, Call of Cthulhu, Pathfinder, etcetera. There's a ton of great reporting showing that this hobby of nerdery has expanded exponentially in the last few years. It makes a lot of money and a lot of people enjoy it. At the same time, traditional media's in a bad place and doesn't really care that much about this industry. So I just want to bring my own experience as a technology and internet reporter to this beat and try to tell some stories about it. This newsletter is my attempt at that and I hope you'll give it some of your time. I'll compile a mixture of news stories, deals as well as my own reporting and aggregation of news on the subject. For example, I started my first issue with a simple overview of how AI is being used by DMs and third-party publishers in the industry. Anyway, give it a look!
Critical Hit Digest: TTRPG News
crit-news.beehiiv.com
To view or add a comment, sign in
-
“System design interview is a play of efficiency” Most system design interview videos I watched didn’t have good feedback at the end. This video I found had the best feedback I have ever seen in interviews. The interviewer mentions what’s expected from the candidate for each role in Meta. Few key insights: - Some questions can take you to L4 (SDE 2), some can take you to L5 or L6. It depends on the complexity of the question. He describes what is expected from each level for the same question. - Efficiency play - How to manage your time using checkpoints. It’s an efficient approach, not effective. But you have to balance effective vs efficient. How to come up with non-functional requirements faster. - What is the core puzzle of the problem? You need to come up with trade-offs for your core puzzle. Check out the full 30-minute feedback - https://lnkd.in/ghWFk_hq For written notes - https://lnkd.in/gjRThXzT
Design Live Comments Feature: System Design Interview with a Meta Engineer
https://www.youtube.com/
To view or add a comment, sign in
-
Day 75:- https://lnkd.in/gmDxT2NJ Approach:- Understanding the Inputs: n: Number of participants. time: Time elapsed since the start of the game. Calculating Chunks: chunks = time / (n - 1): This calculates how many complete rounds the pillow has made around the circle, assuming it takes n-1 units of time to complete one full circle. Each round is referred to as a "chunk". Determining the Current Holder: (time % (n - 1) + 1): If chunks (the number of complete rounds) is even, the pillow's current holder can be directly calculated using this expression. Here's how: time % (n - 1): Calculates the remainder when time is divided by (n - 1). This gives the position index of the current holder within the circle (0-indexed). + 1: Adjusts the index to be 1-indexed (since positions are usually 1-indexed in such games). Handling Odd Number of Chunks: (n - time % (n - 1)): If chunks is odd, this expression is used to determine the current holder. Here's how: time % (n - 1): Again, calculates the remainder when time is divided by (n - 1), which gives the position index in the circle. n - ...: Subtracts the above result from n to determine the 1-indexed position of the current holder. Output: The function returns either (time % (n - 1) + 1) or (n - time % (n - 1)), depending on whether chunks is even or odd, respectively.
Pass the Pillow - LeetCode
leetcode.com
To view or add a comment, sign in
-
🚀 #90DayCodingChallenge: Day 48 Today's Challenges: 1️⃣ Candy LeetCode Link : https://lnkd.in/dyGV37MS 2️⃣ Jump Game II LeetCode Link : https://lnkd.in/djjjpQMy GitHub Repository : https://lnkd.in/d8dXY67U I encourage you to check out the problems, and feel free to provide feedback or share your own solutions! Let's grow together. 💻📈 #90DaysOfCode #CodingChallenge #DataStructures #Algorithms #CodeNewbie #Greedy #Consistency
Jump Game - LeetCode
leetcode.com
To view or add a comment, sign in
-
A new video tutorial introducing a powerful algorithm called the Sieve of Eratosthenes. It's a pretty popular technique used in various fields like encryption and number theory. It's commonly used during technical interviews and programming competitions. https://lnkd.in/eJDFuZ7g
Ancient Algorithm Still Used by Top Tech Companies During Interviews
https://www.youtube.com/
To view or add a comment, sign in
-
One of the most important thing for a software developer is to have an ability to think of a system on higher level and then represent the components of that system through Low Level Design. I am extremely exited to share that I was able to clear the mock interview in Scaler for Low Level Design. I would like to credit this to my instructor Akash Pal in whose class I was able to get the clarity of how to conceptualize the system. Given the importance Low Level Design has in the life of a software developer, I am thankful to Scaler for providing such platform on which I could have practised different scenarios from LLD perspective. #LowLevelDesign #LLD #BackendDevelopment #Scaler
Expert Mock Interview Cleared Certificate
moonshot.scaler.com
To view or add a comment, sign in
-
🚀 #90DayCodingChallenge: Day 47 Today's Challenges: 1️⃣ Jump Game LeetCode Link : https://lnkd.in/dGxDRK4m 2️⃣ Valid Parenthesis String LeetCode Link : https://lnkd.in/dQuiiwwy GitHub Repository : https://lnkd.in/dgnPYUAS I encourage you to check out the problems, and feel free to provide feedback or share your own solutions! Let's grow together. 💻📈 #90DaysOfCode #CodingChallenge #DataStructures #Algorithms #CodeNewbie #Greedy #Consistency
Jump Game - LeetCode
leetcode.com
To view or add a comment, sign in