vicradon.hashnode.devLinear SearchIntroduction Linear search is the simplest search algorithm. The goal of Linear Search is to find an element in an array by looking comparing it with every element in the array. Linear search is a brute force algorithm. Visualization Given a problem ...Jan 21路2 min read
vicradon.hashnode.devSolving the N-Queens Problem in PythonThe N-Queens problem is the problem of placing N chess queens on an N脳N chessboard so that no two queens threaten each other. This means that no two queens should share the same row, column, or diagonal. Below is a solution on an 8x8 chessboard. Ima...Jan 21路2 min read
vicradon.hashnode.devMicroservices Architecture | Ultimate Guide & TutorialOver the last decade, web applications have grown to host millions of users and produce terabytes of data. Users of these applications expect fast responses and 24/7 availability. For applications to be fast and available, they have to respond quickl...May 16, 2024路13 min read
vicradon.hashnode.devConfiguring Network Address Translation (NAT) on Cisco Packet TracerNetwork Address Translation (NAT) is a networking process of translating a private IP address to a public IP address on the Internet. It's an integral part of internet access because it allows devices in a private network to communicate with services...Jan 16, 2024路5 min read
vicradon.hashnode.devHow to Configure Router-level DHCP in Cisco Packet TracerDynamic Host Configuration Protocol or DHCP is a networking protocol that allows for the automatic assignment of IP addresses to devices in a network. You have probably seen DHCP in action at the most basic level when you connect your laptop to an IS...Jan 9, 2024路5 min read