Sardorbek Abdulabbozov | Blog


Гео и язык канала: Узбекистан, Английский
Категория: Блоги


• Middle Flutter Developer & Team Lead @ KPI Software Ltd
• IUT | Class of 2024
- Website: https://abdulabbozov.dev
- Channel: @cs_in_uzbek

Связанные каналы

Гео и язык канала
Узбекистан, Английский
Категория
Блоги
Статистика
Фильтр публикаций


Now feel the vibes of graduation...

📱 @abdulabbozov_s

😁 abdulabbozov.dev


Assalomu Alaykum hammaga!

O'tgan hafta hayotimdagi muhim bosqichlardan biri - universitet rasman o'z nihoyasiga yetdi, Allohga behisob shukur.

Toshkent shahridagi INHA universiteti (INHA) haqida birinchi dadamlardan juda iliq fikrlar eshitganman. O'shanda maktabda o'qib yurgan paytlarim hali kelajakda kim bo'lishim haqida aniq va jiddiy rejalar yo'q edi. Shuning uchun bu universitetga uncha e'tibor bermagandim. INHA haqida litseyga kirganimdan so'ng, litseydagi o'rtog'im qiziqtirishi bilan qiziqib qoldim, o'sha paytlari shu o'rtog'imning akasi INHA'da o'qir edi.

Xullas litsey paytlarimdan boshlab, INHA orzumdagi universitetga aylandi va Allohdan shu universitetda o'qishimni chin dildan niyat qilishni boshladim. Allohning barokati ila orzum amalga oshdi va men imtixonlardan ijobiy natijalar bilan o'tib, universitetga qabul qilindim. O'qishga kiradigan yilim boshqa davlat universitetlargayam hujjat topshirgan edim va tanlovim ichida eng birinchisi Jahon Iqtisodiyoti va Diplomatiya Universiteti (JIDU) edi. INHA qabul qilgandan keyin DTM imtixonini topshirmagan bo'lsam ham, JIDU'ga grant asosida kirish ehtimolim deyarli 100% edi (chunki IELTS va harbiylarning farzandiga beriladigan imtiyozim bor edi). O'shanda tayyor grant asosida tekinga o'qish imkoniyati turganda, yiliga 30 million kontraktli INHA'da o'qitishga rozi bo'lib, meni istaklarimni hurmat qilgan, qo'llab quvvatlagan va ishongan ota-onam va bobo-buvilarim – birinchi investorlarimga rahmat aytaman. Va albatta o'sha paytda menga to'g'ri tavsiya va bilim bergan matematika ustozim - Firdavs akadan juda minnatdorman.

Bu tanlovim to'g'ri bo'lganidan xursandman va INHA'da o'qiganimdan faxrlanaman. Chunki bu 4 yil meni tubdan o'zgartirdi, shakllantirdi va ilmli, harakatchan do'stlar bilan siyladi. Barcha kursdoshlarimga kelgusi hayotlarida ulkan omadlar tilayman!

📱 @abdulabbozov_s

😁 abdulabbozov.dev


Репост из: Vohid Karimov | Hello world 🌍
— Wow! Your car looks expensive. How did you earn the money for it?
— Duh, can’t you read my license plate?! I WORK every day, with 0 vacation days and 16 hours a day.

Akani eshitdilar, ish-lay-miz! Kodingiz xatosiz compile bo'lishini va kuningiz samarali o'tsishini tilayman 👌


+1 favorite sport - Formula 1


136. Single Number

class Solution {
int singleNumber(List nums) {
int single = 0;
Map myMap = {};

for (int i in nums) {
if (myMap.containsKey(i)) {
myMap[i] = (myMap[i] ?? 0) + 1;
} else {
myMap[i] = 1;
}
}

/// loop below can be eliminated using map's built-in function
for (int i = 0; i < myMap.keys.length; i++) {
if (myMap.values.toList()[i] == 1) {
single = myMap.keys.toList()[i];
break;
}
}

return single;
}
}


448. Find All Numbers Disappeared in an Array

class Solution {
List findDisappearedNumbers(List nums) {
List missingValues = [];
for(int i = 1; i


268. Missing Number

class Solution {
int missingNumber(List nums) {
int missingValue = 0;
for (int i = 0; i


217. Contains Duplicate

class Solution {
bool containsDuplicate(List nums) {
Set mySet = {};
for(int i in nums){
if(mySet.contains(i)){
return true;
}else{
mySet.add(i);
}
}
return false;
}
}


Good Evening my friends!

From this week, me and one of my new acquaintances from "FAANG Preparation" group have started solving algorithmic problems and learning patterns together.

Today, we've spent approximately 1 hour for individually and simultaneously solving algorithmic problems related to Array topic and discussed them together. Although we've solved 4 easy-level problems from leetcode, good thing is that both of us at least have started to improve and focus on our algorithmic problem-solving skills.

May Allah helps us to make this habit continuously!

P.S: In later posts I'll share problems and my solutions (even though they might not be an optimal ones)

📱 @abdulabbozov_s

😁 abdulabboz
ov.dev


Today I’ve returned my work after a 2-week vacation with new energy and fresh mind, InshaAlloh

📱 @abdulabbozov_s

😁 abdulabboz
ov.dev




Dear Class of ‘2024▫️🔊

It’s time to announce for all of you about your “Graduation ceremony 2024” 🎓 date. It will be on the 9th of November🥳 Until then we will inform you more details🗣So get ready for one of the most important and unforgettable moments of your life🎓

Location: IUT B304📍



Stay tuned ⭐️

Sincerely,
Student Affairs




Finally, I have successfully recovered my project after a week 😮‍💨


A week ago, I have installed new MacOS Sequoia immediately after the update is live, which caused build issues in Xcode due inconsistencies between new version and Firebase packages. To overcome this there were two options: 1) Backup and clean ~450GB of my data to downgrade back to old MacOS or 2) Wait for the new versions of Firebase packages. I have choosen the former one as we are ahead of big release for production.

P.s: A life-time lesson from this mistake is – Never update MacOS as soon as new release is live, especially when you are ahead of release for production.

📱 @abdulabbozov_s

😁 abdulabboz
ov.dev


Assalomu Alaykum, my friends!

Today, I have received my Bachelor's Diploma and closed a book of 4-year vivid memories from IUT.

Alhamdulillah, I have graduated with 3.91/4.5 GPA being 18/189 in the ranking (~90th percentile)

📱 @abdulabbozov_s

😁 abdulabbozov.dev

Показано 16 последних публикаций.