ππΎ Welcome to My Channel!
Hey everyone!
Iβm Yostina, and honestlyβ¦ I didnβt plan to start this channel β my friends kind of forced me into it π . They kept telling me... so here we are.
This space is where Iβll share bits of what Iβm learning, building, thinking about, and growing through.
If youβre curious, passionate, or just looking for inspiration and real talk β youβre in the right place.
π¬ Feel free to stick around, share thoughts, or just vibe silently.
Thanks for being here β letβs grow together! π±
Hey everyone!
Iβm Yostina, and honestlyβ¦ I didnβt plan to start this channel β my friends kind of forced me into it π . They kept telling me... so here we are.
This space is where Iβll share bits of what Iβm learning, building, thinking about, and growing through.
If youβre curious, passionate, or just looking for inspiration and real talk β youβre in the right place.
π¬ Feel free to stick around, share thoughts, or just vibe silently.
Thanks for being here β letβs grow together! π±
β€βπ₯19β‘2π₯°2β€1π₯1π1
Today is big day for me, it is a day which I started my first internship at ohio state global one health and also my telegram channel is also created.
No word just thank God And have a blessed night guys.
No word just thank God And have a blessed night guys.
β€βπ₯15β‘3β€3π₯1
Happy holiday for all who celebrate st. Gebriel β¦
ααα α°α αα³α½αα everyoneπ
ααα α°α αα³α½αα everyoneπ
β€14π₯°3π₯2π2
This month I was focusing on ML traning datasets to build real world projects and hosted my first version of it a few days ago
Version 1
https://word-analyzer.streamlit.app
And second version today
Version 2
https://word-analyzer-v1.streamlit.app
So check which one do you think better and please suggest me a way that I can improve it. Also if you know a really good dataset let me know
Version 1
https://word-analyzer.streamlit.app
And second version today
Version 2
https://word-analyzer-v1.streamlit.app
So check which one do you think better and please suggest me a way that I can improve it. Also if you know a really good dataset let me know
β€5π₯3π3π1
Forwarded from Orthodox Spirituality
The lesson of humility cannot be taught by intellectual persuasion, but only by a prolonged and bitter struggle against oneβs ego.
βMatthew the Poor
βMatthew the Poor
β€4π1
Good morning my people
It is Monday. New day new beginning. Have a great weekday.
It is Monday. New day new beginning. Have a great weekday.
π4π1
Today i was working on flask with react. It literally took me the whole day to figure out CORS and also sleeping leaving it with bug oh π. The hard part of being developer is debugging.π€¦ββ
@byte_philosopher
@byte_philosopher
π₯3β€1π1
As today is 21π― (in Orthodoxy we celebrate st. Mary in this day)β¦ so let me share you my fav part of Tselote arganon
@byte_philosopher
@byte_philosopher
β€9π2
Hello my people, I am thinking about posting my learning journey of DSA fundamentals. So I will post the summery of today's lesson and some resources daily. Let me know any resources you may recommend me.
@byte_philosopher
@byte_philosopher
β€6β€βπ₯2π₯°2
#day1
I tried to study what DSA(data structure and algorithm) is and the most simple DSA which is Array.
@byte_philosopher
I tried to study what DSA(data structure and algorithm) is and the most simple DSA which is Array.
@byte_philosopher
π₯3β€1π1
#Day1
Today I learned the basics of DSA (Data Structures & Algorithms) β the backbone of problem-solving in programming.
πΉ DSA helps write efficient code by organizing data (e.g., arrays, trees) and applying algorithms (e.g., search, sort).
πΉ Started with Arrays β ordered collections of elements.
π¦ Static vs Dynamic Arrays:
Static Array: Fixed size (e.g., C/C++).
Dynamic Array: Resizable (e.g., Python list, Java ArrayList).
βοΈ Big-O Notation:
Used to measure time/space complexity.
Access: O(1)
Insert/Delete at middle: O(n)
Insert at end (amortized): O(1)
Insert at beginning: O(n)
@byte_philosopher
Today I learned the basics of DSA (Data Structures & Algorithms) β the backbone of problem-solving in programming.
πΉ DSA helps write efficient code by organizing data (e.g., arrays, trees) and applying algorithms (e.g., search, sort).
πΉ Started with Arrays β ordered collections of elements.
π¦ Static vs Dynamic Arrays:
Static Array: Fixed size (e.g., C/C++).
Dynamic Array: Resizable (e.g., Python list, Java ArrayList).
βοΈ Big-O Notation:
Used to measure time/space complexity.
Access: O(1)
Insert/Delete at middle: O(n)
Insert at end (amortized): O(1)
Insert at beginning: O(n)
@byte_philosopher
β€3β€βπ₯1π1
Here is the Python code of arrays but manually that actually look like in leetcode challange
π Arrays are efficient for random access but slow for shifting.
This matters a lot when optimizing real-world problems.
@byte_philosopher
# Insert at index i
def insert_at(arr, i, val):
n = len(arr)
new_arr = [0] * (n + 1)
for j in range(i):
new_arr[j] = arr[j]
new_arr[i] = val
for j in range(i, n):
new_arr[j + 1] = arr[j]
return new_arr
# Delete at index i
def delete_at(arr, i):
n = len(arr)
new_arr = [0] * (n - 1)
for j in range(i):
new_arr[j] = arr[j]
for j in range(i + 1, n):
new_arr[j - 1] = arr[j]
return new_arr
# Append at end
def append(arr, val):
n = len(arr)
new_arr = [0] * (n + 1)
for i in range(n):
new_arr[i] = arr[i]
new_arr[n] = val
return new_arr
π Arrays are efficient for random access but slow for shifting.
This matters a lot when optimizing real-world problems.
@byte_philosopher
π₯4β€2
Excersise for today
Create leetcode account and do this then push it to leetcode hub
https://leetcode.com/problems/concatenation-of-array/
@byte_philosopher
Create leetcode account and do this then push it to leetcode hub
https://leetcode.com/problems/concatenation-of-array/
@byte_philosopher
LeetCode
Concatenation of Array - LeetCode
Can you solve this real interview question? Concatenation of Array - Given an integer array nums of length n, you want to create an array ans of length 2n where ans[i] == nums[i] and ans[i + n] == nums[i] for 0 <= i < n (0-indexed).
Specifically, ans isβ¦
Specifically, ans isβ¦
β€4π1