Dev #3

Merged
Aryan merged 22 commits from dev into main 2026-06-05 20:30:51 +00:00
Showing only changes of commit 6d8bee27f1 - Show all commits
+5 -5
View File
@@ -51,10 +51,10 @@ You are ONLY responsible for implementing thread-safe logic inside:
You must implement the following methods:
```java
deposit(int amount)
withdraw(int amount)
transfer(BankAccount target, int amount)
getBalance()
deposit(int amount);
withdraw(int amount);
transfer(BankAccount target, int amount);
getBalance();
```
---
@@ -119,7 +119,7 @@ Implement safe concurrent access for:
Implement:
```java
transfer(BankAccount target, int amount)
transfer(BankAccount target, int amount);
```
#### Requirements: