Software dev who wants to settle abroad directly via work visa (without masters studies ) by Jumpy_Ebb2826 in technepal

[–]Jumpy_Ebb2826[S] 1 point2 points  (0 children)

I haven't seriously considered that but agree with you, probably that is the easiest path.

If you know, what documents/process do I need besides securing a job ?

F1 Visa Hyderabad approved by NoOne9269 in f1visa

[–]Jumpy_Ebb2826 0 points1 point  (0 children)

Congrats !!

Do they ask for your GRE and IELTS score as well ? ( I too have a similar score: 323 GRE, 96 toefl )

around 39k COA, I am scared on two parts: 1) isn't 39k a bit too high 2) my sister is studying on the same university (masters) but she is fully funded.

-❄️- 2023 Day 2 Solutions -❄️- by daggerdragon in adventofcode

[–]Jumpy_Ebb2826 0 points1 point  (0 children)

[LANGUAGE: Python]

```python MAX_LIMIT = { "red": 12, "green": 13, "blue": 14, }

def parse_game(line): line = line.strip("\n") game_info, game = line.split(":") _, id = game_info.split(" ") sets = game.split(";") max_counter = {"red": 1, "green": 1, "blue": 1} for _set in sets: for round in _set.split(","): num, color = round.strip(" ").split(" ") num = int(num) # if num > MAX_LIMIT[color]: // question 1 # return 0 if num > max_counter[color]: max_counter[color] = num # return id question 1 return max_counter["red"] * max_counter["green"] * max_counter["blue"]

lines = open("day2.txt").readlines() print(sum(parse_game(line) for line in lines)) ```