fa
Feedback
Leetcode with dani

Leetcode with dani

رفتن به کانال در Telegram

Join us and let's tackle leet code questions together: improve your problem-solving skills Preparing for coding interviews learning new algorithms and data structures connect with other coding enthusiasts

نمایش بیشتر
1 258
مشترکین
اطلاعاتی وجود ندارد24 ساعت
+17 روز
-730 روز
آرشیو پست ها
question from today interview question

Question: Count Substrings with Same Start and End Character Given a string s consisting only of lowercase English letters, your task is to find the number of substrings that start and end with the same character. ▎Examples: 1. Input: "abcba" Output: 7 Explanation: The substrings are: "a", "b", "c", "b", "a", "bcb", and "abcba". 2. Input: "abacada" Output: 9 Explanation: The substrings are: "a", "b", "a", "c", "a", "d", "aba", "aca", and "abaca". 3. Input: "a" Output: 1 Explanation: The only substring is "a". 4. Input: "zzzz" Output: 10 Explanation: All substrings start and end with 'z': "z", "z", "z", "z", "zz", "zz", "zz", "zz", "zzz", and "zzzz". ▎Challenge: Write a function that takes a string as input and returns the total count of substrings that start and end with the same character.

💰 Problem 322: Coin Change Problem Statement: You are given an integer array coins representing coins of different denominations and an integer amount representing a total amount of money. Your task is to return the fewest number of coins that you need to make up that amount. If that amount of money cannot be made up by any combination of the coins, return -1. You may assume that you have an infinite number of each kind of coin. ▎Examples: Example 1:
Input: coins = [1, 2, 5], amount = 11
Output: 3
Explanation: 11 can be made up with two 5's and one 1 (5 + 5 + 1).
Example 2:
Input: coins = [2], amount = 3
Output: -1
Explanation: It is not possible to make up the amount 3 with only coin of denomination 2.
Example 3:
Input: coins = [1], amount = 0
Output: 0
Explanation: No coins are needed to make up the amount 0.

Question: Can You Make This String a Palindrome? A palindrome is a string that reads the same forwards and backwards. Given a string, determine if it's possible to rearrange the characters to form a palindrome. Examples: 1. Input: "civic"Output: TrueExplanation: The string is already a palindrome. 2. Input: "ivicc"Output: TrueExplanation: Rearranging the characters can form the palindrome "civic". 3. Input: "hello"Output: FalseExplanation: No rearrangement can form a palindrome. 4. Input: "aabbcc"Output: TrueExplanation: Rearranging the characters can form the palindrome "abcba". 5. Input: "racecar"Output: TrueExplanation: The string is already a palindrome. Challenge: Write a function that takes a string as input and returns True if the string can be rearranged to form a palindrome, and False otherwise.

A2SV N PERSON EDUCATION
Anonymous voting

238. Product of Array Except Self  
Difficulty: Medium  

Problem:  
Given an integer array nums, return an array answer such that answer[i] is the product of all elements of nums except nums[i].  

Conditions:  
- The product of any prefix or suffix of nums is guaranteed to fit in a 32-bit integer.  
- Your algorithm must run in O(n) time and must not use the division operation.  

Examples:  
Input: nums = [1,2,3,4]  
Output: [24,12,8,6]  

Input: nums = [-1,1,0,-3,3]  
Output: [0,0,9,0,0]  

Constraints:  
2 <= nums.length <= 10^5  
-30 <= nums[i] <= 30  

Can you solve it?

**238. Product of Array Except Self**  
**Difficulty**: Medium  

**Problem**:  
Given an integer array `nums`, return an array `answer` such that `answer[i]` is the product of all elements of `nums` except `nums[i]`.  

**Conditions**:  
- The product of any prefix or suffix of `nums` is guaranteed to fit in a 32-bit integer.  
- Your algorithm must run in O(n) time and must not use the division operation.  

**Examples**:  
- Input: `nums = [1,2,3,4]`  
  Output: `[24,12,8,6]`  

- Input: `nums = [-1,1,0,-3,3]`  
  Output: `[0,0,9,0,0]`  

**Constraints**:  
- 2 ≤ nums.length ≤ 10⁵  
- -30 ≤ nums[i] ≤ 30  

Can you solve it?

**238. Product of Array Except Self**  
💡 **Difficulty**: Medium  

🔍 **Problem**:  
Given an integer array `nums`, return an array `answer` such that `answer[i]` is the product of all elements of `nums` except `nums[i]`.  

👉 **Conditions**:  
- The product of any prefix or suffix of `nums` is guaranteed to fit in a 32-bit integer.  
- Your algorithm must run in **O(n)** time and **must not use the division operation**.  

### **Examples**  
**Input**:  
`nums = [1,2,3,4]`  
**Output**:  
`[24,12,8,6]`  

**Input**:  
`nums = [-1,1,0,-3,3]`  
**Output**:  
`[0,0,9,0,0]`  

### **Constraints**  
- `2 <= nums.length <= 105`  
- `-30 <= nums[i] <= 30`  

Can you solve it? 🧩

Repost from A2SV - Discussion
Hello fellow coders, After a brief break, we've returned! Get ready for our fun weekly community coding contest happening every Saturday 🗓. It's your chance to compete with other awesome programmers, learn more about coding, and, most importantly, have a great time! 🥳 🏆 Contest Details: 📅 Date: November 23, 2024 ⏰ Time: 6:00 PM 🔗 Link for Contest: Community Weekly Contest Return - Contest No 3 P.S. Remember to fill out this form to secure your spot for our upcoming community classes and lectures. It’s your golden ticket to enriching experiences you won’t want to miss. 📚✨

🎯 Problem of the Day: Sort Colors Problem Description You are given an array nums with \( n \) objects colored red, white, or blue. Sort the array in-place so that objects of the same color are adjacent, with the colors in the order red, white, and blue. - Represent the colors using integers: - 0 → Red - 1 → White - 2 → Blue ⚠️ Note: You must not use the library's sort function. --- Example 1 Input:
nums = [2,0,2,1,1,0]
Output:
[0,0,1,1,2,2]
Example 2 Input:
nums = [2,0,1]
Output:
[0,1,2]
--- 📝 Practice Questions for A2SV Preparation 1. Core Problem: - Solve LeetCode 75: Sort Colors () using Dutch National Flag Algorithm for \( O(n) \) time complexity. 2. Related Problems: - LeetCode 215 : Kth Largest Element in an Array - LeetCode 347 : Top K Frequent Elements - LeetCode 56 : Merge Intervals 3. Challenge Problem: - LeetCode 88: Merge Sorted Array --- 💡 Tip: Use a two-pointer or three-pointer approach to keep track of boundaries for the different colors! Try to optimize your solution to \( O(n) \) in both time and space. 🧠 Share your solution and discuss your approach with the community! 🌟

Repost from A2SV - Discussion
Hello G6 In-Person Education Applicants, As you gear up for your interviews, we want to inform you about the key topics to focus on. These are the areas that will be covered during the interview: - Sorting - Two Pointers - Sliding Window - Prefix Sum - Stacks and Queues Best of luck with your preparation! Stay confident and ready to showcase your skills.

ወንድማችን ተማሪ አዲሱ አገዘ የአ.አ.ዩ /CNCS የChemistry ዲፓርትመንት ተማሪ ሲሆን በድንገተኛ የጤና እክል ምክንያት በጥቁር አንበሳ ስፔሻላይዝድ ሆስፒታል የህክምና ክትትል እየተደረገለት ይ
ወንድማችን ተማሪ አዲሱ አገዘ የአ.አ.ዩ /CNCS የChemistry ዲፓርትመንት ተማሪ ሲሆን በድንገተኛ የጤና እክል ምክንያት በጥቁር አንበሳ ስፔሻላይዝድ ሆስፒታል የህክምና ክትትል እየተደረገለት ይገኛል። ሆኖም ግን ለህክምናና ለአንዳንድ ወጪዎች የሚሆነውን ገንዘብ መሸፈን ስላልተቻለ ለእርዳታ ሲባል ባለ3 ጥምር የባንክ አካውንት ተከፍቶ አቅም የፈቀደውን እና ልብ የወደደውን ገቢ በማድረግ የእርዳታ እጃችሁን እንድትዘረጉልን ስንል በፈጣሪ ስም እንጠይቃለን። ድር ቢያብር... 1000660602899 Surafel and Lud and Belete (CBE) ለመረጃ: 0928750009

FOR A2SV

Practive questions for interview.pdf0.52 KB

Practive questions for interview.pdf0.52 KB

Applications are Open for A2SV G6 Education! The time has come for A2SV to welcome new members! We’re looking for team-orient
Applications are Open for A2SV G6 Education! The time has come for A2SV to welcome new members! We’re looking for team-oriented individuals with a never-give-up mentality, ready to drive tech excellence and solve impactful challenges. 📅 Application opens: November 14, 2024 📅 Deadline: November 20, 2024, at 11:59 PM EAT 🎓 Eligibility Open to current students from Addis Ababa University (AAU), Addis Ababa Science and Technology University (AASTU), and Adama Science and Technology University (ASTU). If you're not from these schools or have already graduated, stay tuned for future remote applications! 🔍 Requirements - Familiarity with at least one programming language - Experience with platforms like LeetCode or Codeforces - Completed at least 40 problems on LeetCode or Codeforces 🤖 Selection Process - First Round Filtering: Initial application review - Technical & Behavioral Interviews: For selected candidates, to assess skills and fit for the program ⌛️ Don’t wait! Start your application early to ensure a standout submission. 🎯 🔗 Apply now: link #A2SV #TechEducation #EmpoweringAfrica #ApplyNow

መጀመሪያ ሊንኩን ስትጫኑ Register አድርጉ ይላቹሀል ካደረጋቹህ በኋላ የራሳችሁን ሊንክ ይሰጣቹሀል ከዛም ለጓደኞቻችሁ በመላክ እነሱ በሊንካቹህ ሲገቡ ብር ይሰጣቹሀል 500 ብር ሲሆን ማውጣት ትችላላቹህ 100% እውነት ነው ለመጀመር👇👇 https://www.vivapay.top?id=MjE1MjA3NjIwODUyOTQwOQ==&from=OTM2NDY0ODk0|MjE1MjA3NjA4ODAwMDUxMg==&lang=en&cid=hbcp&channel=web

Repost from A2SV - Discussion
Hello fellow coders, After a brief break, we've returned! Get ready for our fun weekly community coding contest happening every Saturday 🗓. It's your chance to compete with other awesome programmers, learn more about coding, and, most importantly, have a great time! 🥳 🏆 Contest Details: 📅 Date: November 9, 2024 ⏰ Time: 6:00 PM 🔗 Link for Contest: Community Weekly Contest Return - Contest No 1 P.S. Remember to fill out this form to secure your spot for our upcoming community classes and lectures. It’s your golden ticket to enriching experiences you won’t want to miss. 📚✨