π¨βπ» Here is a detail explanation for the above questionπ
ππ @AceCoding Presents! ππ
https://leetcode.com/problems/maximum-number-of-coins-you-can-get/
class Solution:
def maxCoins(self, piles: List[int]) -> int:
# first determine how many piles each person will get
piles_per_person = len(piles) // 3
# sort the piles in descending order
piles.sort(reverse=True)
# Hypothetically we want to give the least piles in the sorted pile for bob
# [9,8,7,6,5,4,3,2,1] 1, 2, 3 are given for bob
p = piles_per_person
score = piles[1:-p:2] # starting from the second value and increment by 2 until we reach len(piles) - piles_per_person
return sum(score)
ππ @AceCoding Presents! ππ
https://leetcode.com/problems/maximum-number-of-coins-you-can-get/
LeetCode
Maximum Number of Coins You Can Get - LeetCode
Can you solve this real interview question? Maximum Number of Coins You Can Get - There are 3n piles of coins of varying size, you and your friends will take piles of coins as follows:
* In each step, you will choose any 3 piles of coins (not necessarilyβ¦
* In each step, you will choose any 3 piles of coins (not necessarilyβ¦
π’ A2SV past years interview questions π
Β©οΈEthio Toolkit
This problem is lighter version of a classic interview question: "1561. Maximum Number of Coins You Can Get" π°which we have solved on Ace Coding.
β Solution: Β©οΈAce Coding
π @AceCoding Presents! ππ
Β©οΈEthio Toolkit
You have some apples and a basket that can carry up to 5000 units of weight. Given an integer array weight where weight[i] is the weight of the ith apple,
return the maximum number of apples you can put in the basket.
Example 1:
Input: weight = [100,200,150,1000]
Output: 4
Explanation: All 4 apples can be carried by the basket since their sum of weights is 1450.
Example 2:
Input: weight = [900,950,800,1000,700,800]
Output: 5
Constraints:
1 <= weight.length <= 1000
1 <= weight[i] <= 1000
This problem is lighter version of a classic interview question: "1561. Maximum Number of Coins You Can Get" π°which we have solved on Ace Coding.
β Solution: Β©οΈAce Coding
def maxNumberOfApples(weight):
weight.sort()
total_weight = 0
count = 0
for w in weight:
if total_weight + w <= 5000:
total_weight += w
count += 1
else:
return count
π @AceCoding Presents! ππ
π1
π Quick Reminder!
If you found this problem helpful, make sure to share it with your friends. Remember the saying:
Letβs solve these challenges together and grow as a community! π
ππ @AceCoding Presents! ππ
If you found this problem helpful, make sure to share it with your friends. Remember the saying:
If you want to go fast, go alone. If you want to go far, go together. πͺ
Letβs solve these challenges together and grow as a community! π
ππ @AceCoding Presents! ππ
π€4
π₯ High ROI (Return on Investment) LeetCode Questions! π°π‘
ππ @AceCoding Presents! ππ
ππ @AceCoding Presents! ππ
π‘ 189. Rotate Array
ππ @AceCoding Presents! ππ
https://leetcode.com/problems/rotate-array/description/
class Solution:
def rotate(self, nums: List[int], k: int) -> None:
"""
Do not return anything, modify nums in-place instead.
"""
rotation_point = k % len(nums)
k = rotation_point
if k != 0:
nums[:k], nums[k : ] = nums[-k : ], nums[:-k]
# the rotation_point should be counted for the end of nums
# Ex. [1, 2, 3, 4, 5, 6, 7] nums[:k] = [1, 2, 3]
# But nums[:-k] = [1, 2, 3, 4] which is correct
# nums[-k:] = [5, 6, 7]
class Solution:
def rotate(self, nums: List[int], k: int) -> None:
"""
Do not return anything, modify nums in-place instead.
"""
k = k % len(nums)
def reverse(left, right):
while left < right:
nums[left], nums[right] = nums[right], nums[left]
right -= 1
left += 1
reverse(0, len(nums)-1)
reverse(0, k-1)
reverse(k, len(nums)-1)
ππ @AceCoding Presents! ππ
https://leetcode.com/problems/rotate-array/description/
LeetCode
Rotate Array - LeetCode
Can you solve this real interview question? Rotate Array - Given an integer array nums, rotate the array to the right by k steps, where k is non-negative.
Example 1:
Input: nums = [1,2,3,4,5,6,7], k = 3
Output: [5,6,7,1,2,3,4]
Explanation:
rotate 1β¦
Example 1:
Input: nums = [1,2,3,4,5,6,7], k = 3
Output: [5,6,7,1,2,3,4]
Explanation:
rotate 1β¦
π Heads up, everyone! π
The questions we share here will likely appear in the A2SV technical interviews. Keep an eye on them and practice regularly to boost your preparation! πͺπ
Happy Codingπ»
Stay tuned and don't miss out on these key problems. π§ β¨
The questions we share here will likely appear in the A2SV technical interviews. Keep an eye on them and practice regularly to boost your preparation! πͺπ
Happy Codingπ»
Stay tuned and don't miss out on these key problems. π§ β¨
π1
π£ Update Alert: Info Session RSVP & Location Details!
π Great News! Weβve expanded the RSVP tickets to accommodate more attendees! If you havenβt RSVPβd yet, nowβs your chance to grab a spot and join the action.
π RSVP Now to secure your spot : GDG AASTU x AASTU SEA INFO SESSION π
π Location Reminder: The Info Session will take place at AASTU Old Graduation Hall.
π Study Session Registration:
Interested in the upcoming student study session? Registration will be open at the venue during the event. Be sure to attend to secure your spot!
Spread the word, and we canβt wait to see you on 20 November 2024! Letβs make this event unforgettable. β¨
π Join Us for the INFO SESSION by AASTUSEA! π
Ready to dive into tech? Whether you're brand new, dreaming of becoming a developer, or already coding away, this event is for YOU! No experience neededβjust bring your passion and excitement!
β¨ What's in Store?
π« Connect with Google Developer Groups (GDG) and AASTUSEA
π« Learn about plans and opportunities provided by the Association.
π« Secure your spot in our project preregistration.
π« Get the Details needed to ace Huawei ICT Competition 2024-25, Join Huawei ICT Academy and Get FREE certifications.
π«Learn the basics, get inspired, and kickstart your coding journey
π«Network with fellow tech enthusiasts and mentors
π Date: November 20, 2024
π Time: 8:30 - 11:00 LT
π Location: Old Graduation Hall
ππ RSVP Here ππ
Don't miss this great opportunity to connect and collab with like-minded once!
@AASTUSEA aastu.software
Ready to dive into tech? Whether you're brand new, dreaming of becoming a developer, or already coding away, this event is for YOU! No experience neededβjust bring your passion and excitement!
β¨ What's in Store?
π« Connect with Google Developer Groups (GDG) and AASTUSEA
π« Learn about plans and opportunities provided by the Association.
π« Secure your spot in our project preregistration.
π« Get the Details needed to ace Huawei ICT Competition 2024-25, Join Huawei ICT Academy and Get FREE certifications.
π«Learn the basics, get inspired, and kickstart your coding journey
π«Network with fellow tech enthusiasts and mentors
π Date: November 20, 2024
π Time: 8:30 - 11:00 LT
π Location: Old Graduation Hall
ππ RSVP Here ππ
Don't miss this great opportunity to connect and collab with like-minded once!
@AASTUSEA aastu.software
π5
π Part 2 Quiz: Computer Organization and Architecture π₯
Weβre back with another round of quiz questions on Computer Organization and Architecture! π§
ππ @AceCoding Presents! ππ
Weβre back with another round of quiz questions on Computer Organization and Architecture! π§
ππ @AceCoding Presents! ππ
π₯1
Which of the following best describes computer architecture?
Anonymous Quiz
32%
The physical components of a computer
47%
The logic and structure defining the system's operations
11%
The assembly language of the system
11%
The interconnections of the system's hardware
Which part of a computer system is primarily concerned with the implementation of the instruction set?
Anonymous Quiz
18%
Operating System
41%
Computer Architecture
41%
Computer Organization
0%
Compiler
Which of the following is NOT a component of computer organization?
Anonymous Quiz
6%
ALU (Arithmetic Logic Unit)
22%
Bus system
17%
Cache memory
56%
Instruction set design
The ____________ specifies the logical layout of the computer and defines how software interacts with the hardware.
Anonymous Quiz
44%
Instruction Set Architecture (ISA)
19%
Control Unit
6%
CPU Registers
31%
Bus System
Computer architecture focuses solely on hardware components.
Anonymous Quiz
52%
β
True
48%
β False
What role does cache memory play in system performance?
Anonymous Quiz
79%
Provides faster access to frequently used data
0%
Replaces the need for a hard drive
14%
Acts as a storage unit for programs
7%
Improves GPU performance
Execution Time Calculation
A processor has the following specs:
Clock Speed: 3 GHz CPI: 2 Total Instructions: 5 billion How much time does it take to execute the program?
A processor has the following specs:
Clock Speed: 3 GHz CPI: 2 Total Instructions: 5 billion How much time does it take to execute the program?
Anonymous Quiz
0%
1.5 seconds
9%
2.5 seconds
91%
3.33 seconds
0%
4 seconds
< Ace Coding /> π
Execution Time Calculation
A processor has the following specs:
Clock Speed: 3 GHz CPI: 2 Total Instructions: 5 billion How much time does it take to execute the program?
A processor has the following specs:
Clock Speed: 3 GHz CPI: 2 Total Instructions: 5 billion How much time does it take to execute the program?
β
Solution
π» Try to do it by yourself before you check the solutions.
π» Try to do it by yourself before you check the solutions.
π Two Pointers Problems upcoming! π§βπ»β‘οΈπ¨βπ»
β A2SV Prep π»
ππ @AceCoding Presents! ππ
β A2SV Prep π»
ππ @AceCoding Presents! ππ
π» Topic: Two Pointers
β The following questions should be done sequentially. Level 1 and Level 2
π‘ 2079. Watering Plants This an Easy Medium
β³ This costed me 5 min
π Problem link : https://leetcode.com/problems/watering-plants/
π‘ 2105. Watering Plants II This one is also an easy medium but it has more edge cases so watch out before you hit submit π
β³ This costed me 15 min; if there is anyone who did this under 10 minutes Excellent, Great job
π Problem link : https://leetcode.com/problems/watering-plants-ii/description/
β The following questions should be done sequentially. Level 1 and Level 2
π‘ 2079. Watering Plants This an Easy Medium
β³ This costed me 5 min
class Solution:
def wateringPlants(self, plants: List[int], capacity: int) -> int:
steps = 0
can = capacity
for i, plant in enumerate(plants):
if plant > can:
steps += (2 * i)
can = capacity
steps += 1
can -= plant
return steps
π Problem link : https://leetcode.com/problems/watering-plants/
π‘ 2105. Watering Plants II This one is also an easy medium but it has more edge cases so watch out before you hit submit π
β³ This costed me 15 min; if there is anyone who did this under 10 minutes Excellent, Great job
class Solution:
def minimumRefill(self, plants: List[int], capacityA: int, capacityB: int) -> int:
refill = 0
L, R = 0, len(plants) - 1
alice, bob = capacityA, capacityB
while L < R:
if plants[L] > alice:
alice = capacityA
refill += 1
if plants[R] > bob:
bob = capacityB
refill += 1
alice -= plants[L]
bob -= plants[R]
L += 1
R -= 1
if L == R:
max_water = max(alice, bob)
if plants[L] > max_water:
refill += 1
return refill
π Problem link : https://leetcode.com/problems/watering-plants-ii/description/
LeetCode
Watering Plants - LeetCode
Can you solve this real interview question? Watering Plants - You want to water n plants in your garden with a watering can. The plants are arranged in a row and are labeled from 0 to n - 1 from left to right where the ith plant is located at x = i. Thereβ¦
π4