Add initialize_list_with_values snippet
This commit is contained in:
@ -5,7 +5,7 @@ tags: list,intermediate
|
||||
|
||||
Initializes a 2D list of given width and height and value.
|
||||
|
||||
Use array comprehension and `range()` to generate `h` rows where each is a list with length `h`, initialized with `val`.
|
||||
Use list comprehension and `range()` to generate `h` rows where each is a list with length `h`, initialized with `val`.
|
||||
If `val` is not provided, default to `None`.
|
||||
|
||||
Explain briefly how the snippet works.
|
||||
|
||||
18
snippets/initialize_list_with_values.md
Normal file
18
snippets/initialize_list_with_values.md
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
title: initialize_list_with_values
|
||||
tags: list,beginner
|
||||
---
|
||||
|
||||
Initializes and fills a list with the specified value.
|
||||
|
||||
Use list comprehension and `range()` to generate a list of length equal to `n`, filled with the desired values.
|
||||
Omit `val` to use the default value of `0`.
|
||||
|
||||
```py
|
||||
def initialize_list_with_values(n, val = 0):
|
||||
return [val for x in range(n)]
|
||||
```
|
||||
|
||||
```py
|
||||
initialize_list_with_values(5, 2) # [2, 2, 2, 2, 2]
|
||||
```
|
||||
Reference in New Issue
Block a user