Game of Coders
Game of Coders
  • 19
  • 59 433
Moving to the Netherlands as a Software Professional | Relocation to Europe
In this video, I will be sharing how I relocated to the Netherlands - starting from job search, interview process, relocation process, etc.
Relocating to the Netherlands
Software Professional in the Netherlands
Software Engineer in the Netherlands
Relocating to Europe
Software Professional in Europe
Software Engineer in Europe
Life of Software Engineer
Software Engineer in Europe
Software Engineer from India to abroad
--------------------------------------------------------------------------------------------------------------
Subscribe to my other TH-cam channel for a peek in the life:
☞ Chai & Waffle: th-cam.com/channels/ZyTHK_HnXjN5F1kmp1vNEQ.html
--------------------------------------------------------------------------------------------------------------
Follow my daily stories on Instagram:
📸 Rajdeep Kaur: @_rajdeepkaur || _rajdeepkaur
--------------------------------------------------------------------------------------------------------------
Join me on:
🙌 Facebook: Chai-Waffle-106759384959083
📩 E-mail: rajdeepkaur245@gmail.com
--------------------------------------------------------------------------------------------------------------
Hi Everyone, I'm Rajdeep Kaur and I'm an ex-Amazon software engineer. As of now, I am working as a Software Engineer in Miro. I was hired directly from India to Europe (Netherlands).
I make videos on competitive programming, Data Structures and Algorithms, and some tips to get hired.
Subscribe for the latest updates, I upload new videos almost every day :)I hope my content helps you in getting your dream job.
มุมมอง: 15 617

วีดีโอ

Gifts from Miro | Summer Offsite 2021 Surprise | Life of a Software Engineer
มุมมอง 1.5K3 ปีที่แล้ว
In this video, I will be sharing all the goodies/swag that I received from my company for our summer offsite event. Gifts from Miro Goodies from Miro Miro Swag Summer Offsite Engineer Perks Goodies Free Gifts Subscribe to my other TH-cam channel for a peek in the life: ☞ Chai & Waffle: th-cam.com/channels/ZyTHK_HnXjN5F1kmp1vNEQ.html Follow my daily stories on Instagram: 📸 Rajdeep Kaur: @_rajdee...
Why you should move to the Netherlands | Top 5 reasons to move for Software Professionals
มุมมอง 3.1K3 ปีที่แล้ว
I recently relocated from India to the Netherlands. In this video, I share the top 5 reasons for which you should consider moving to the Netherlands rather than the US or Canada. Relocate to the Netherlands Why not move to the US Why not move to Canada Software Engineer in the Netherlands Software Engineer in Amsterdam Top 5 reasons to move to the Netherlands Easy way to settle abroad Best coun...
Create an Incredible Resume to get hired in 2021 | NOVORESUME | Job Hunt
มุมมอง 1.3K3 ปีที่แล้ว
How To Create an incredible Resume In 5 Minutes. I have used novoresume to create my resume, it has some amazing features that I mentioned in this video. Feel free to comment here if you have any more questions. Colorful Resumes Corporate Resumes Creative Resumes Minimalist Resumes Modern Resumes Photo Resumes Professional Resumes Simple Resumes Software Engineer at Amazon Resume Job Hunt 2021 ...
Resume that got me Software Engineer role in Amazon | Best Resume template | Job Hunt
มุมมอง 2.2K3 ปีที่แล้ว
In this video, I discuss in detail the software engineering resume that I used when I applied and got a job at Amazon. I also share 5 dos and 5 donts that differentiate a good software engineer resume from a bad software developer resume. Software Engineer Resume Resume for Amazon European Resume Subscribe to my other TH-cam channel for a peek in the life: ☞ Chai & Waffle: th-cam.com/channels/Z...
219. Contains Duplicate II | LeetCode Solution
มุมมอง 2.9K3 ปีที่แล้ว
Given an integer array nums and an integer k, return true if there are two distinct indices i and j in the array such that nums[i] nums[j] and abs(i - j) less than equal to k. Example 1: Input: nums = [1,2,3,1], k = 3 Output: true LeetCode Problem: leetcode.com/problems/contains-duplicate-ii/ Medium Solution: rajdeepkaur245.medium.com/219-contains-duplicate-ii-leetcode-solution-2f2a567bc75d Sub...
130. Surrounded Regions - June LeetCode Challenge
มุมมอง 1484 ปีที่แล้ว
Given a 2D board containing 'X' and 'O' (the letter O), capture all regions surrounded by 'X'. A region is captured by flipping all 'O's into 'X's in that surrounded region. Example: X X X X X O O X X X O X X O X X After running your function, the board should be: X X X X X X X X X X X X X O X X LeetCode Problem Link: leetcode.com/problems/surrounded-regions/ leetcode.com/explore/challenge/card...
468. Validate IP Address - June LeetCode Challenge
มุมมอง 1714 ปีที่แล้ว
Write a function to check whether an input string is a valid IPv4 address or IPv6 address or neither. IPv4 addresses are canonically represented in dot-decimal notation, which consists of four decimal numbers, each ranging from 0 to 255, separated by dots ("."), e.g.,172.16.254.1; Besides, leading zeros in the IPv4 is invalid. For example, the address 172.16.254.01 is invalid. IPv6 addresses ar...
787. Cheapest Flights Within K Stops - June LeetCode Challenge
มุมมอง 1464 ปีที่แล้ว
There are n cities connected by m flights. Each flight starts from city u and arrives at v with a price w. Now given all the cities and flights, together with starting city src and the destination dst, your task is to find the cheapest price from src to dst with up to k stops. If there is no such route, output -1. Example 1: Input: n = 3, edges = [[0,1,100],[1,2,100],[0,2,500]] src = 0, dst = 2...
700. Search in a Binary Search Tree - June LeetCode Challenge
มุมมอง 734 ปีที่แล้ว
Given the root node of a binary search tree (BST) and a value. You need to find the node in the BST that the node's value equals the given value. Return the subtree rooted with that node. If such node doesn't exist, you should return NULL. For example, Given the tree: 4 / \ 2 7 / \ 1 3 And the value to search: 2 You should return this subtree: 2 / \ 1 3 LeetCode Problem - leetcode.com/problems/...
368. Largest Divisible Subset - June LeetCode Challenge
มุมมอง 2394 ปีที่แล้ว
Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj) of elements in this subset satisfies: Si % Sj = 0 or Sj % Si = 0. If there are multiple solutions, return any subset is fine. Example 1: Input: [1,2,3] Output: [1,2] (of course, [1,3] will also be ok) LeetCode Problem: leetcode.com/problems/largest-divisible-subset/ leetcode.com/explore/challenge/ca...
MultiThreading - Square and Cube of array elements using multi-threading
มุมมอง 7634 ปีที่แล้ว
Write a program explaining multiple threads working together to solve a problem: 1. Create a int[] DataArray of 100 elements with random numbers. 2. Create 5 threads which take the part of elements from DataArray. 3. Those threads should compute the Square[ ] and Cubes[ ] for those respective values. 4. Print result of square and cubes after the all process threads complete their execution. Git...
1089. Duplicate Zeros - LeetCode Solution
มุมมอง 24K4 ปีที่แล้ว
Given a fixed length array arr of integers, duplicate each occurrence of zero, shifting the remaining elements to the right. Note that elements beyond the length of the original array are not written. Do the above modifications to the input array in place, do not return anything from your function. Example 1: Input: [1,0,2,3,0,4,5,0] Output: null Explanation: After calling your function, the in...
38. Count and Say - LeetCode Solution
มุมมอง 4.1K4 ปีที่แล้ว
The count-and-say sequence is the sequence of integers with the first five terms as following: 1. 1 2. 11 3. 21 4. 1211 5. 111221 1 is read off as "one 1" or 11. 11 is read off as "two 1s" or 21. 21 is read off as "one 2, then one 1" or 1211. Given an integer n where 1 ≤ n ≤ 30, generate the nth term of the count-and-say sequence. You can do so recursively, in other words from the previous memb...
100. Same Tree - LeetCode Solution
มุมมอง 2004 ปีที่แล้ว
Given two binary trees, write a function to check if they are the same or not. Two binary trees are considered the same if they are structurally identical and the nodes have the same value. LeetCode Problem Statement: leetcode.com/problems/same-tree/ GitHub Solution: github.com/Rajdeepkaur245/LeetCodeSolutions/blob/master/Java/SameTreeSolution.java Subscribe to my other TH-cam channel for a pee...
202. Happy Number - LeetCode Solution
มุมมอง 4084 ปีที่แล้ว
202. Happy Number - LeetCode Solution
217. Contains Duplicate - LeetCode Solution
มุมมอง 1.7K4 ปีที่แล้ว
217. Contains Duplicate - LeetCode Solution
1. Two Sum - LeetCode Solution
มุมมอง 4114 ปีที่แล้ว
1. Two Sum - LeetCode Solution
380. Insert Delete GetRandom O(1) - 12th June LeetCode Challenge
มุมมอง 3994 ปีที่แล้ว
380. Insert Delete GetRandom O(1) - 12th June LeetCode Challenge

ความคิดเห็น

  • @AnjanBanerjeemyworld
    @AnjanBanerjeemyworld 2 หลายเดือนก่อน

    What are the companies name? Will you please send me?

  • @mohsinaqee2623
    @mohsinaqee2623 3 หลายเดือนก่อน

    Can you please share the list of companies which sponsor relocation?

  • @sumitbaraskar6724
    @sumitbaraskar6724 4 หลายเดือนก่อน

    Very informative...pls make more videos like this....🙏

  • @HEMANTPORWAL-t7d
    @HEMANTPORWAL-t7d 5 หลายเดือนก่อน

    please explain the maths behind your code / trick !

  • @mariselvamdheivasigamani578
    @mariselvamdheivasigamani578 10 หลายเดือนก่อน

    If you could tell us, how to find the list of visa sponsoring companies in netherlands , it will be helpful. Should I do some filtering in LinkedIn or is there any other way for this ?

  • @rohitkashyap83604
    @rohitkashyap83604 10 หลายเดือนก่อน

    Can you please share the company list in the description please

  • @monicadesai7928
    @monicadesai7928 10 หลายเดือนก่อน

    Do you 4-5ppl batch for cracking interview process to NL job offer. Pls reply.

  • @spandanank1170
    @spandanank1170 ปีที่แล้ว

    Please do a video on how did u prepare

  • @spandanank1170
    @spandanank1170 ปีที่แล้ว

    Yes please do another video

  • @Nature-pb9dh
    @Nature-pb9dh ปีที่แล้ว

    Thank you this is great!

  • @surabhisingh5443
    @surabhisingh5443 ปีที่แล้ว

    Can you list down the company names

  • @rammohanreddypateljavatutorial
    @rammohanreddypateljavatutorial ปีที่แล้ว

    Hi this is Rammohan from India.can you please send list of list companies who provide visa sponsorship

  • @Bhaskarkothum
    @Bhaskarkothum ปีที่แล้ว

    Can we find salesforce developer jobs in Netherlands

  • @jasmeetsingh2801
    @jasmeetsingh2801 ปีที่แล้ว

    Hello Madam, thanks for sharing this with us. Can you tell me or share some resume formats for applying abroad?.

  • @huseynmikayil6354
    @huseynmikayil6354 ปีที่แล้ว

    Here is the TypeScript solution without additional insert function: const duplicateZeros = function (nums: number[]) { let zeroes: number = 0; for (let i = 0; i < nums.length; i++) { if (nums[i] === 0) zeroes++; } let i = nums.length - 1, j = nums.length - 1 + zeroes; while (i !== j) { if (j < nums.length) nums[j] = nums[i]; j--; if (nums[i] === 0) { if (j < nums.length) nums[j] = nums[i]; j--; } i--; } };

  • @jayshriwalunjkar6542
    @jayshriwalunjkar6542 ปีที่แล้ว

    Kya boli aap kuch samajh nhi low voice hai

  • @jayshriwalunjkar6542
    @jayshriwalunjkar6542 ปีที่แล้ว

    Your voice is so low can you attach mike or something or speak loud

  • @monicadesai7928
    @monicadesai7928 ปีที่แล้ว

    I am Data Scientist from India and finding jobs in Netherland so if you can make some video on it so it will be helpful.

  • @satyamgupta6030
    @satyamgupta6030 ปีที่แล้ว

    crystal clear explaination and concise code. thanks for the solution.

  • @nikhil_joy
    @nikhil_joy ปีที่แล้ว

    Before getting the job you had any visa? Getting 3 jobs in a short span of time sounds miraculous. Can you clarify you already had a dependent visa?

  • @shivrajdeopa1571
    @shivrajdeopa1571 ปีที่แล้ว

    Great!

  • @pritijain3547
    @pritijain3547 ปีที่แล้ว

    Thanks for the details.. Could you explain how you fou d the list of companies who offer visa sponsership?

  • @Maruth
    @Maruth ปีที่แล้ว

    Wonderfull explanation!!!

  • @helenooft9664
    @helenooft9664 ปีที่แล้ว

    I think it will be better if you speaking slower English, because of the accent, so people pick it up faster.

  • @prakharagrawal541
    @prakharagrawal541 ปีที่แล้ว

    This is great video. Could you please create video on how to create cover letter for any particular job.

  • @svr0079
    @svr0079 ปีที่แล้ว

    Any job vacancy in graphics or television broadcast job can u help

  • @Touseef
    @Touseef ปีที่แล้ว

    Hi can you please explain how exactly you found the list of companies who offered visa sponsorship ? There is no such filter on linkedin so I am just curious

    • @mariselvamdheivasigamani578
      @mariselvamdheivasigamani578 10 หลายเดือนก่อน

      Hi, I also want to know how to find the list of companies which are sponsoring visa

  • @kellyyang8967
    @kellyyang8967 ปีที่แล้ว

    Hi, lady. I'm a Chinese fan of you. I found that the hiring situations is really harsh recently. A job postion like Java developer on LinkedIn has average >50 applicants and some even reach 200 applicants. Do you have any suggestions for new grad? Thank you so much.

  • @amiteshsingh406
    @amiteshsingh406 ปีที่แล้ว

    Your logic is good👌, but before going to code, please explain using an example so you'll get the idea of complexity, how it will be good and what approach we will use, just a suggestion🙏, keep it up 👍

  • @joscandynunez2169
    @joscandynunez2169 ปีที่แล้ว

    how is this marked easy ?

  • @shubhamc183
    @shubhamc183 2 ปีที่แล้ว

    thanks for the video, really helps!

  • @bndissanayaka
    @bndissanayaka 2 ปีที่แล้ว

    I was searching for free template a lot. Thank you very much this helped a lot!

  • @darshankhadse880
    @darshankhadse880 2 ปีที่แล้ว

    Can you plz share your resume..it would be really helpful

  • @jittojoyes7533
    @jittojoyes7533 2 ปีที่แล้ว

    Can you please guide me . Iam a software engineer who like to move to Netherlands. Iam currently focusing on frontend.

  • @usmand1620
    @usmand1620 2 ปีที่แล้ว

    Need your support

  • @hhuynh8195
    @hhuynh8195 2 ปีที่แล้ว

    your solution might work but I don't understand your explanation at all. T.T I'm sorry I try but the docs you used to explain your idea doesn't really help with visualization. Honestly it actually confuse me more.

  • @nandanimadhukar
    @nandanimadhukar 2 ปีที่แล้ว

    easy explanation to what seemed like a twisted but marked "easy"!

  • @maneshpedia
    @maneshpedia 2 ปีที่แล้ว

    Hi I am looking for the Devops engineer Jobs in Netherlands, how to start the process and if you know please share the interview process and rounds for the Devops engineer in Netherlands.

  • @rohanjuneja1778
    @rohanjuneja1778 2 ปีที่แล้ว

    not of use. only algo.no intuition.

  • @HariKrishnan-ff4hf
    @HariKrishnan-ff4hf 2 ปีที่แล้ว

    Thank you very much. Please post more multithreaded interview questions.

  • @mageshkarm459
    @mageshkarm459 2 ปีที่แล้ว

    thanks

  • @oleksii7691
    @oleksii7691 2 ปีที่แล้ว

    Nice solution but awful explanation.

  • @sravan1239
    @sravan1239 2 ปีที่แล้ว

    Dear, appreciate your clarity in presentation. I would like to know about avaialble skill set in netherland IT market. I work as an oracle dba in india. Want to know is this having good opportunities are should I consider pick on other skills like cloud, devops.. etc..plz reply.

  • @putinvladimir420
    @putinvladimir420 2 ปีที่แล้ว

    this code fails if zero is present at the last index.

  • @bestqueenshadow691
    @bestqueenshadow691 2 ปีที่แล้ว

    Very well explained to the point 👏

  • @bestqueenshadow691
    @bestqueenshadow691 2 ปีที่แล้ว

    Thanks for the information 👍 Application developers r in demand in Netherlands?Is Dutch mandatory for IT professionals?Will it influence in my job search

  • @systemforge
    @systemforge 2 ปีที่แล้ว

    woah!.. nice

  • @vijaytsv9512
    @vijaytsv9512 2 ปีที่แล้ว

    this was amazing 👏 . I was watching lots of channels to immigrant netherlands on job basis. this is the video helpful for resume preparation. thank you.

  • @abdu5822
    @abdu5822 2 ปีที่แล้ว

    I think you should definitely consider making video about how to prepare each interview process like you said you'd make. Thanks

  • @gangster4069
    @gangster4069 2 ปีที่แล้ว

    This solution has a problem, if your input array's last element is zero, this solution will fail. input array's last element with zero is an boundary condition, to handle it decremenet count of zeros by 1, if the last element in the array is zero.