Yostina | Bytephilosopher – Telegram
Yostina | Bytephilosopher
346 subscribers
228 photos
7 videos
3 files
55 links
a curious mind exploring tech, AI, and social change || ORTHODOX CHRISTIAN || A2SVian
Download Telegram
Here is the Python code of arrays but manually that actually look like in leetcode challange

# 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
🔥42
Forwarded from Samri’s Log
😁
😁5👍2
“There is nothing so strong as gentleness and nothing so gentle as real strength.”


+St. Jerome

@byte_philosopher
💯4
Good night family 🫶
@byte_philosopher
Forwarded from Chapi Dev Talks
Python 3.14 is here with some exciting updates for developers!

The biggest news for most of you is the improved performance for multi-threaded apps thanks to official support for free-threaded Python.

Plus, a new concurrent.interpreters module opens the door for true multi-core parallelism within a single process, offering a new way to write concurrent code that bypasses the GIL for better efficiency.

You'll also find smarter error messages to help you debug faster. Keep an eye out for these changes making your coding life a bit easier!

Test the JIT build of CPython by adding export PYTHON_JIT=1 as new environment variable.

https://docs.python.org/3.14/whatsnew/3.14.html
🔥3
What I’ve Learned from Solving LeetCode Challenges 💻🧠

1. Understand the Question Deeply

Don’t rush — take time to fully grasp the problem. Also, understand how your code will be tested so you can write solutions that truly pass all conditions.


2. Build Your Own Logic

Instead of relying too heavily on built-in keywords or shortcuts, try developing your own approach. Sometimes, overusing these shortcuts can lead to unexpected errors.


3. Debug in Your Mind 🧩

Before running your code, mentally simulate it with sample inputs. This helps catch logic flaws early and improves your problem-solving skills.


Keep pushing! Every bug fixed is a step closer to mastery 🔥
#LeetCode #CodingJourney #Debugging #ProblemSolving #LearnToCode

@byte_philosopher
6
Forwarded from Naol.Builds (Elliot 🎯)
EOTCOpenSource ✝️

EOTCOpenSource is a collaborative community dedicated to uniting Ethiopian Orthodox Tewahedo Church (EOTC) believers with developers, designers, and contributors from around the world. Our mission is to build open-source digital tools that support the Church, its followers, and its sacred traditions.

We create modern software rooted in the ancient values of the Orthodox faith, making spiritual and cultural resources more accessible for generations to come.

Our projects aim to serve the diverse needs of the EOTC community. We focus on creating high-quality, reliable, and accessible tools,
including:
Mobile & Web Apps: Tools for prayer, learning, and community engagement.
Digital Calendars: Liturgical calendars with feasts, fasts, and saints' days.
Digital Texts & Archives: Digitizing liturgical books, hagiographies, and important texts in Amharic, Ge'ez, and other languages.
Liturgical Tools: Software to assist clergy and laity in Church services and prayers.
Chant & Hymn Resources: Platforms for learning and preserving the rich tradition of EOTC chants (Zema).

Join community: https://news.1rj.ru/str/EOTCOpenSource
Github Link: https://github.com/EOTCOpenSource/EOTCOpenSource
9
Good morning guys

Wth is the 🌧 the rain.

@byte_philosopher
👍2😁2
Forwarded from Naol.Builds (Elliot 🎯)
Push in Friday be a man
🔥6
July in @Byte_philosopher

- started a telegram channel🙃(I found you guys❤️)

-build 2 projects

-meet amazing people's

-started internship🎉

-explored and learnt more about life

Thank God
11🥰1
What i failed in July

- loosing consistency

-couldn't finish courses that i started


Hope I will try to solve this

@byte_philosopher
🔥4🆒1
Forwarded from Frectonz
Better Auth config for "Sign In with Fayda"
🔥3
Happy Sunday y'all

@byte_philosopher
❤‍🔥11🙏6
New week, New month

Have a productive one 🫶

@byte_philosopher
7👍1🙏1
Forwarded from Naol.Builds (Elliot 🎯)
We are looking for a logo designer for EOTCOpenSource.
Design a logo that you think fits our community’s purpose, and I’ll post your submission here.

The logo should represent the teachings of the Ethiopian Orthodox Church and have a minimalistic style.
👍1
Exhausted but doing it for the sake of deadline. I think my gut is also tired with drinking more coffee.

Again coffee again doing it 😩

#randomdays
@byte_philosopher
👏8
Should I have to say good night or good morning since it is after 6:00LT🤔

@byte_philosopher
4🔥1🕊1