۩ کتاب آموزشی در حال تایپ ✎ دست‌گرمی مصاحبه‌های پایتونی | علی برادر خدام خسروشاهی

دست‌گرمی مصاحبه‌های پایتونی | علی برادر خدام خسروشاهی

علی برادر خدام خسروشاهی

نویسنده و دل‌نگار راشای
نویسنده راشای
دل‌نگار راشای
تاریخ ثبت‌نام
2025-03-10
نوشته‌ها
531
پسندها
1,921
امتیازها
93
"دست‌گرمی مصاحبه‌های پایتونی: راهنمای جامع مصاحبه‌ها"
مدرس و نویسنده: علی برادر خدام خسروشاهی

این کتاب یک مرجع کامل برای کسانی است که می‌خواهند در مصاحبه‌های استخدامی با پایتون موفق شوند. در این کتاب، شما با مجموعه‌ای از مسائل چالشی و کاربردی پایتون آشنا خواهید شد که در بیشتر مصاحبه‌های شغلی مطرح می‌شوند. هدف اصلی این کتاب این است که به شما کمک کند تا با یادگیری و حل مسائل الگوریتمی و داده‌ساختارها، مهارت‌های خود را برای مصاحبه‌ها تقویت کنید.


کتاب شامل مسائل مختلف از مفاهیم ابتدایی تا چالش‌های پیچیده‌تر است که به شما می‌آموزد چگونه مشکلات واقعی را با استفاده از پایتون حل کنید. در طول کتاب، تکنیک‌های مختلفی برای بهینه‌سازی کد و مدیریت پیچیدگی‌های الگوریتم‌ها معرفی خواهد شد. با...
برای مشاهده کامل پست وارد شوید یا ثبت‌نام کنید.
 
« انجمن رمان نویسی / دانلود رمان / تک رمان / انجمن تک رمان / انجمن راشای »

حل سوال استخدامی پایتون برنامه نویسی قسمت اول با علی برادر خدام خسروشاهی​

LeetCode 75

1768. Merge Strings Alternately

You are given two strings word1 and word2. Merge the strings by adding letters in alternating order, starting with word1. If a string is longer than the other, append the additional letters onto the end of the merged string.

Return the merged string.

Example 1:

Input: word1 = abc, word2 = pqr
Output: apbqcr
Explanation: The merged string will be merged as so:
word1: a b c
word2: p q r
merged: a p b q c r
Example 2:

Input: word1 = ab, word2 = pqrs
Output: apbqrs
Explanation: Notice that as word2 is...​
برای مشاهده کامل پست وارد شوید یا ثبت‌نام کنید.
 
« انجمن رمان نویسی / دانلود رمان / تک رمان / انجمن تک رمان / انجمن راشای »

حل سوال استخدامی برنامه نویسی پایتون قسمت دوم با علی برادر خدام خسروشاهی​

LeetCode 75

1071. Greatest Common Divisor of Strings

For two strings s and t, we say "t divides s" if and only if s = t + t + t + ... + t + t (i.e., t is concatenated with itself one or more times).

Given two strings str1 and str2, return the largest string x such that x divides both str1 and str2.

Example 1:

Input: str1 = ABCABC, str2 = ABC
Output...​
برای مشاهده کامل پست وارد شوید یا ثبت‌نام کنید.
 
« انجمن رمان نویسی / دانلود رمان / تک رمان / انجمن تک رمان / انجمن راشای »

حل سوال استخدامی برنامه نویسی پایتون قسمت سوم با علی برادر خدام خسروشاهی​

LeetCode 75

1431. Kids With the Greatest Number of Candies

There are n kids with candies. You are given an integer array candies, where each candies represents the number of candies the ith kid has, and an integer extraCandies, denoting the number of extra candies that you have.

Return a boolean array result of length n, where result is true if...
برای مشاهده کامل پست وارد شوید یا ثبت‌نام کنید.
 
« انجمن رمان نویسی / دانلود رمان / تک رمان / انجمن تک رمان / انجمن راشای »

حل سوال استخدامی برنامه نویسی پایتون قسمت چهارم با علی برادر خدام خسروشاهی​


LeetCode75

605. Can Place Flowers

You have a long flowerbed in which some of the plots are planted, and some are not. However, flowers cannot be planted in adjacent plots.

Given an integer array flowerbed containing 0's and 1's, where 0 means empty and 1 means not empty, and an integer n, return true if n new flowers can be planted in the flowerbed without violating the no-adjacent-flowers...
برای مشاهده کامل پست وارد شوید یا ثبت‌نام کنید.
 
« انجمن رمان نویسی / دانلود رمان / تک رمان / انجمن تک رمان / انجمن راشای »

حل سوال استخدامی برنامه نویسی پایتون قسمت پنجم با علی برادر خدام خسروشاهی​

LeetCode75

345. Reverse Vowels of a String

Given a string s, reverse only all the vowels in the string and return it.

The vowels are 'a', 'e', 'i', 'o', and 'u', and they can appear in both lower and upper cases, more than once.

Example 1:

Input:
s = "IceCreAm"

Output: "AceCreIm"

Explanation:

The vowels in s are ['I', 'e', 'e', 'A']. On reversing the vowels, s becomes...​
برای مشاهده کامل پست وارد شوید یا ثبت‌نام کنید.
 
« انجمن رمان نویسی / دانلود رمان / تک رمان / انجمن تک رمان / انجمن راشای »

حل سوال استخدامی برنامه نویسی پایتون قسمت ششم با علی برادر خدام خسروشاهی​

LeetCode75

151. Reverse Words in a String

Given an input string s, reverse the order of the words.

A word is defined as a sequence of non-space characters. The words in s will be separated by at least one space.

Return a string of the words in reverse order concatenated by a single space.

Note that s may contain leading or trailing spaces or multiple spaces between two...​
برای مشاهده کامل پست وارد شوید یا ثبت‌نام کنید.
 
« انجمن رمان نویسی / دانلود رمان / تک رمان / انجمن تک رمان / انجمن راشای »

حل سوال استخدامی برنامه نویسی پایتون قسمت هفتم با علی برادر خدام خسروشاهی​

LeetCode75

238. Product of Array Except Self

Given an integer array nums, return an array answer such that answer is equal to the product of all the elements of nums except nums.

The product of any prefix or suffix of nums is guaranteed to fit in a 32-bit integer.

You must write an algorithm that runs in O(n) time and without using the division...
برای مشاهده کامل پست وارد شوید یا ثبت‌نام کنید.
 
« انجمن رمان نویسی / دانلود رمان / تک رمان / انجمن تک رمان / انجمن راشای »

حل سوال استخدامی برنامه نویسی پایتون قسمت هشتم با علی برادر خدام خسروشاهی​

LeetCode75

334. Increasing Triplet Subsequence

Given an integer array nums, return true if there exists a triple of indices (i, j, k) such that i < j < k and nums < nums[j] < nums[k]. If no such indices exists, return false.

Example 1:

Input: nums = [1,2,3,4,5]
Output: true
Explanation: Any triplet where i < j < k is valid.
Example 2:

Input...
برای مشاهده کامل پست وارد شوید یا ثبت‌نام کنید.
 
« انجمن رمان نویسی / دانلود رمان / تک رمان / انجمن تک رمان / انجمن راشای »
عقب
بالا