ربات پولساز تلگرام : #استارز
⭐️از طریق major که مینی اپ جدید و رسمی تلگرام میباشد قادر به جمع کردن ستاره خواهید بود.
✍🏼 در آخرین آپدیت تلگرام ، این مسنجر سیستم پرداخت جدیدش که Starts یا ستارهها نام دارد را راهاندازی کرد. با خرید ستاره از طریق اپ استور میتوان پستهای پولی کانالها را خرید، در رباتها پرداخت انجام داد و ...
❇️بجای خرید ستاره از اپاستور، با استفاده از مینی اپ جدید major قادر به دریافت ستاره خواهید بود. در آینده می توان ستارههای جمع آوری شده را به TON Coin تبدیل کرد یا از آنها برای خرید اشتراک پریمیوم تلگرام یا موارد دیگر استفاده کرد. پیشنهاد میکنیم که حتما این مینی اپ را استارت کنید و با دعوت دوستان ستاره جمع کنید.
با این لینک دعوت ۱۵ تا ستاره رایگان دریافت میکنید
با انجام دادن ۳ تسک ربات جمعا 170 استارز رایگان دریافت خواهید کرد
1. کیف پول تون رو بهش وصل کنید
2. ایکس رو چک کنید
3. عضو کانالش بشید
لینک شروع
👇👇
https://t.me/major/start?startapp=84219249
🆔 @Python4all_pro
⭐️از طریق major که مینی اپ جدید و رسمی تلگرام میباشد قادر به جمع کردن ستاره خواهید بود.
✍🏼 در آخرین آپدیت تلگرام ، این مسنجر سیستم پرداخت جدیدش که Starts یا ستارهها نام دارد را راهاندازی کرد. با خرید ستاره از طریق اپ استور میتوان پستهای پولی کانالها را خرید، در رباتها پرداخت انجام داد و ...
❇️بجای خرید ستاره از اپاستور، با استفاده از مینی اپ جدید major قادر به دریافت ستاره خواهید بود. در آینده می توان ستارههای جمع آوری شده را به TON Coin تبدیل کرد یا از آنها برای خرید اشتراک پریمیوم تلگرام یا موارد دیگر استفاده کرد. پیشنهاد میکنیم که حتما این مینی اپ را استارت کنید و با دعوت دوستان ستاره جمع کنید.
با این لینک دعوت ۱۵ تا ستاره رایگان دریافت میکنید
با انجام دادن ۳ تسک ربات جمعا 170 استارز رایگان دریافت خواهید کرد
1. کیف پول تون رو بهش وصل کنید
2. ایکس رو چک کنید
3. عضو کانالش بشید
لینک شروع
👇👇
https://t.me/major/start?startapp=84219249
🆔 @Python4all_pro
❤4👍1
learneverythingai .pdf
3.8 MB
آموزش کتابخانه pandas در پایتون با مثال
♨️ روی هشتگ ها بزنید و به مطالب بیشتری دسترسی پیدا کنید👇
#علم_داده #کتابخانه
#library #pandas #pdf
کانال آموزش پایتون برای همه ( از صفر تا 100)
👇
🆔 @Python4all_pro
♨️ روی هشتگ ها بزنید و به مطالب بیشتری دسترسی پیدا کنید👇
#علم_داده #کتابخانه
#library #pandas #pdf
کانال آموزش پایتون برای همه ( از صفر تا 100)
👇
🆔 @Python4all_pro
❤9😍2👍1
🖥 zarr - Python library for implementing compressed N-dimensional arrays
- pip install zarr
Zarr provides classes and functions for working with N-dimensional arrays, which behave like #NumPy arrays, but the data is divided into chunks and each chunk is compressed. If anyone is familiar with HDF5, Zarr arrays provide similar functionality, but they are more convenient.
Also, unlike HDF5, Zarr has better multithreading support.
🟡 Docks
🖥 GitHub
#library
#python
🆔 @Python4all_pro
- pip install zarr
Zarr provides classes and functions for working with N-dimensional arrays, which behave like #NumPy arrays, but the data is divided into chunks and each chunk is compressed. If anyone is familiar with HDF5, Zarr arrays provide similar functionality, but they are more convenient.
Also, unlike HDF5, Zarr has better multithreading support.
🟡 Docks
🖥 GitHub
#library
#python
🆔 @Python4all_pro
👍1
حل سوالات استخدامی سایت leetcode.com
Problem: No. 19. Remove Nth Node From End of List #medium
Condition:
Given the header of a linked list, remove the nth node from the end of the list and return its header
Solution:
Explanation:
Determining the list size:
First we go through the entire list to find its size. This is necessary to determine which node needs to be removed.
The size variable keeps track of the number of nodes in the list.
Removing the first node:
If n is equal to the size of the list, it means the first node should be removed. In this case, we return the next node from the head of the list.
Search for a node before the one you want to delete:
If n is not equal to the size of the list, we need to find the node that comes before the nth node from the end. We do this by moving size-n-1 nodes forward in the list.
Removing a node:
We set the next node for the found node so that it points to the next node after the next one, effectively bypassing the node to be deleted.
Returning a new header:
Returning the head of the list. If the first node was deleted, the new header will be the starting node of the list after the delete.
Time and space complexity:
Time complexity: O(L), where L is the length of the list. We go through the list twice: once to count nodes and again to remove a node.
Space complexity: O(1) because we use a constant amount of extra space independent of the size of the input data.
#Code
#interview #LeetCode
🆔 @Python4all_pro
Problem: No. 19. Remove Nth Node From End of List #medium
Condition:
Given the header of a linked list, remove the nth node from the end of the list and return its header
Solution:
# class ListNode:
# def init(self, x):
# self.val = x
# self.next = None
class Solution:
def removeNthFromEnd(self, head: ListNode, n: int) -> ListNode:
if head.next == None:
return None
tmp = head
size = 0
# find the size of the linked list
while tmp:
size += 1
tmp = tmp.next
tmp = head
#if we have to remove the first node:
if n == size:
return head.next
for i in range(size-n-1):
tmp = tmp.next
tmp.next = tmp.next.next
return head
Explanation:
Determining the list size:
First we go through the entire list to find its size. This is necessary to determine which node needs to be removed.
The size variable keeps track of the number of nodes in the list.
Removing the first node:
If n is equal to the size of the list, it means the first node should be removed. In this case, we return the next node from the head of the list.
Search for a node before the one you want to delete:
If n is not equal to the size of the list, we need to find the node that comes before the nth node from the end. We do this by moving size-n-1 nodes forward in the list.
Removing a node:
We set the next node for the found node so that it points to the next node after the next one, effectively bypassing the node to be deleted.
Returning a new header:
Returning the head of the list. If the first node was deleted, the new header will be the starting node of the list after the delete.
Time and space complexity:
Time complexity: O(L), where L is the length of the list. We go through the list twice: once to count nodes and again to remove a node.
Space complexity: O(1) because we use a constant amount of extra space independent of the size of the input data.
#Code
#interview #LeetCode
🆔 @Python4all_pro
❤3👍3
🖥 badjpg
This useful Python script allows you to hide useful information inside a JPG image using steganography techniques.
▪ Github
#library
#python
🆔 @Python4all_pro
This useful Python script allows you to hide useful information inside a JPG image using steganography techniques.
▪ Github
git clone https://github.com/basicW/badjpg.git
#library
#python
🆔 @Python4all_pro
❤1👍1😍1
Forwarded from تهران دیتا-دانشگاه تهران
سی اُمین دوره جامع علم داده کل کشور
با تدریس مطرحترین اساتید دیتایی
آموزش ۱۵ سرفصل و ۱۲ نرم افزار و کاملا پروژه محور
همراه با
ارائه گواهی معتبر دوزبانه و تحت نظارت وزارت علوم با قابلیت ترجمه رسمی و امکان استعلام از دانشگاه تهران
اطلاعات بیشتر
Please open Telegram to view this post
VIEW IN TELEGRAM
دوره جامع تخصصی فرانت اند اینجاست 💪
از صفر تا متخصص یو آی یو ایکس و فرانت اند با شماییم
✴️ برای یک طراح سایت خوب در تمام دنیا جا هست.
◀️ اگر میخوای این مهارت رو به صورت حرفهای یاد بگیری این دوره مناسبته
‼️ اولین اولترا دوره طراحی و توسعه وبسایت با پشتیبانی اختصاصی رو از دست ندید
♨️ این دوره پیش نیاز ندارد
👇👇👇👇
https://zaya.io/z4nra
📌 ثبت نام دوره
از صفر تا متخصص یو آی یو ایکس و فرانت اند با شماییم
✴️ برای یک طراح سایت خوب در تمام دنیا جا هست.
◀️ اگر میخوای این مهارت رو به صورت حرفهای یاد بگیری این دوره مناسبته
‼️ اولین اولترا دوره طراحی و توسعه وبسایت با پشتیبانی اختصاصی رو از دست ندید
♨️ این دوره پیش نیاز ندارد
👇👇👇👇
https://zaya.io/z4nra
📌 ثبت نام دوره
👍2
Screenshot 2024-07-24 215958.jpg
77.1 KB
نمونه کار اولیه طراحی رابط کاربری دانشجوهای دوره فرانت اند در کمتر از سه روز 🌺❤️
طراحی اپ موزیک
شما هم می تونید طراح سایت بشید
لینک ثبت نام دوره جامع فرانت اند
👇👇👇👇👇
https://zaya.io/z4nra
طراحی اپ موزیک
شما هم می تونید طراح سایت بشید
لینک ثبت نام دوره جامع فرانت اند
👇👇👇👇👇
https://zaya.io/z4nra