Today, I will rewrite my résumé and complete the Python course.

I’ll start by learning Python.

Then I’ll think about how to improve the wording on my résumé.

🖥️ Built an Adjacency List to Matrix Converter

def adjacency_list_to_matrix(adjacency_list):
    n = len(adjacency_list)
    matrix = [[0] * n for _ in range(n)]
    for node, neighbors in adjacency_list.items():
        for neighbor in neighbors:
            matrix[node][neighbor] = 1
    for row in matrix:
        print(row)
    return matrix

🖥️ Implemented the Breadth-First Search Algorithm

📰 Checked this week’s Dense Discovery #382.

🔗 Reading list

📖 Started reading Wonder


<
Previous Post
0330 Did some work, wrote and thought
>
Blog Archive
Archive of all previous blog posts