Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 0dfbf99

Browse files
Merge pull request #39 from hexbreak/patch-17
Update README.md
2 parents 4210bf4 + 3520965 commit 0dfbf99

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

‎exercises/15.2-Parking_lot_check/README.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,18 @@ parking_state = [
1414
```
1515

1616
# 📝Instructions
17-
1. Create a function get_parking_lot() that returns an object
17+
1. Create a function get_parking_lot() that returns a dictionary
1818
with total_slots, available_slots and occupied_slots like the following:
19-
const state = {
20-
totalSlots: 12,
21-
availableSlots: 3,
22-
occupiedSlots: 9
19+
20+
```python
21+
state = {
22+
total_Slots: 12,
23+
available_Slots: 3,
24+
occupied_Slots: 9
2325
}
26+
```
2427

25-
💡Hints
26-
You have to do a nested loop
27-
Declare a variables to store the value
28-
Compare the statements
28+
💡Hints:
29+
- Declare the key names to store the values.
30+
- You have to do a nested loop.
31+
-Compare the statements.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /