7 669
Підписники
-824 години
-407 днів
+2030 день
Архів дописів
def findBingoNumbers(numbers):
numbers = sorted(numbers, reverse=True)
res= None
for i in range(len(numbers)):
for j in range(i + 1, len(numbers)):
if numbers[i] + numbers[j] == 15:
pair = (min(numbers[i], numbers[j]), max(numbers[i], numbers[j]))
if res is None or pair > res:
res= pair
return f"{res[0]} {res[1]}" if res else "No Bingo Numbers"
#BingoBNumbers
#ThoughtWorks
Contact:@MLCODER2
BINGO NUMBERS ✔️✔️
vowelsCarousel ✔️✔️
Contact: @MLCODER2
def warpedSpell(secret: int) -> int:
def ispalindrome(n):
s = str(n)
length = len(s)
if length > 7:
return 9999999
if length < 4:
return 1001
half = s[:(length + 1) // 2]
candidate = int(half + half[::-1][length % 2:])
if candidate > n:
return candidate
half = str(int(half) + 1)
candidate = int(half + half[::-1][length % 2:])
return candidate
return ispalindrome(secret)
#warpedSpell_q1
#ThoughtWorks
contact:@MLCODER2
UST Final stage exam
2 projects on Spring boot + HTML CSS JS
2 Java codes
2 debugging
Mcqs
Contact :@MLCODER2
Вже доступно! Дослідження Telegram за 2025 — головні інсайти року 
