Category: Uncategorized

dzenanhamzic.com blog

My thoughts on Strategy, Strategic Management and it’s Importance

Kodak as a mighty camera/photography company in 20th century went bankrupt. This company was rated as one of the world’s most valuable brands until 1990s. Kodak’s management simply ignored innovations on the field of digital photography and smartphones, which at the the end, led them to have to “lock the doors for good”. Nokia was ...

Monty Hall Simulation with Python and Plotly

“Suppose you’re on a game show, and you’re given the choice of three doors: Behind one door is a car; behind the others, goats. You pick a door, say No. 1, and the host, who knows what’s behind the doors, opens another door, say No. 3, which has a goat. He then says to you, “Do you ...

Breadth First Search (BFS) in Java – Code

Long time ago, I had to implement BFS in Java as a part of exercise at the university. BFS, like Depth First Search (DFS), is a search algorithm for graphs and trees. They have uses in route planing(google-maps, navigation devices etc.) and in many other applications. You can read about some use cases and DFS vs. BFS ...