Tip 1 : Practised topic-wise CodeStudio questions from basics
Tip 2 : Watched so many system design mock interviews
Tip 3 : I did mock interviews with friends for DSA and system design rounds.
Tip 1 : Single page resume.
Tip 2 : Get it proof read by friends and professionals and take feedback.
LLD Round (but with machine coding sort of expectations in whatever that can be done in 60 mins)
Snake game (Learn)
Used proper data structure to store the pointers of the snake
Used proper LLD and Machine coding conventions to determine snake is alive or dead after every step
Dry run with few test cases at the end of the coding
Asked interviewer for help when I needed
DSA



If two words have the same frequency then the lexicographically smallest word should come first in your answer.
Can you solve it in O(N * logK) time and O(N) extra space?
Brute force was to iterate on every collection id/name over every file given and then group them up. That was not an optimized solution.
Optimal way is to use Set to remove duplicates first and then use min heap with custom comparators to sort files by sizes, custom class object to group the files by collections.
Tagging system across all Atlassian products (Jira, Confluence, Bitbucket). Tag addition/update/delete in one product should reflect across all other products. Design DB schema and High level architecture workflow.
Managerial Round (Some questions on projects and general situation based questions)
Questions on my past projects (Not extreme deep dive, but a very high level overview etc.)
Situational based questions (ex-what will you do if you have a conflict with other members etc.)
Values round
Atlassian has 5 values. Situational questions will be asked around those 5 values if you've demonstrated them in your past or not.
Tip 1 : Go to atlassian homepage and read the 5 values carefully and think of situations from your career where you showed that value!

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?