Skip to content

Instantly share code, notes, and snippets.

View alucarded's full-sized avatar
🏠
Working from home

Tomasz Edward Posluszny alucarded

🏠
Working from home
View GitHub Profile
@alucarded
alucarded / Windows10AWSEC2.md
Created September 7, 2021 21:43 — forked from peterforgacs/Windows10AWSEC2.md
Running Windows 10 on AWS EC2

Running Windows 10 on AWS EC2

Downloading the image

Download the windows image you want.

AWS vmimport supported versions: Microsoft Windows 10 (Professional, Enterprise, Education) (US English) (64-bit only)

So Home wont work.

@alucarded
alucarded / main.py
Last active August 10, 2023 12:30
Count of different numbers divisible by 3 that can be obtained by changing at most one digit
# '0081' -> 11
# '23' -> 7
# '022' -> 9
def is_div(s: str) -> bool:
#print(int(s))
if (int(s) % 3 == 0):
return True
return False