Tech Rumors
3 subscribers
235K photos
239K links
Download Telegram
dev.to

1. Azure-cli: Installing the tool on Linux
This post is the beginning of a series of others in which we will talk about Azure Cli. This tool is a command line interface in which one can manage microsoft azure resources.
My current linux is that.

romerito@dev:~$ cat /etc/os-release | head -3

NAME="Pop!_OS"
VERSION="22.04 LTS"
ID=pop

My OS as you can see is PopOS which was built based on the ubuntu/debian architecture, so we will use the APT package manager (Advanced package tool).
There are several ways to install the program, but we h…
#linux #azure #devops #cloud

2. LeetCode's Add Two Numbers in Linked List Solution - Beats 86% in Memory, Simple Brute Force Algorithm in Java
Overview

In this post, we will be discussing an ultra low memory Java solution for a LeetCode problem (2. Add Two Numbers) that involves adding two numbers represented as linked lists.

Problem Statement

Given two linked lists representing two non-negative integers, add the two numbers together and return the sum as a linked list.

The digits are stored in reverse order, such that the 1's digit is at the head of the list.

Example

Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Output: 7 -> 0 -> 8
Exp…
#leetcode #java #tutorial #computerscience