MaiDeveloper

Remove All Adjacent Duplicates In String

Given a string S of lowercase letters, a duplicate removal consists of choosing two adjacent and equal letters, and removing them. We repeatedly make duplicate removals on S until we no longer can.

Remove Outermost Parentheses

A valid parentheses string is either empty (""), "(" + A + ")", or A + B, where A and B are valid parentheses strings, and + represents string concatenation. For example, "", "()", "(())()", and "(()(()))" are all valid parentheses strings.

How to renew LetsEncrypt SSL Certificate for Zimbra?

First, renew letsencrypt ssl certificate. And then copy the new SSL certificate files to zimbra's folder. Follow by replacing the existing commercial key with private key. Finally, deploy and then restart zimbra service.

Search a 2D Matrix

Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integers in each row are sorted from left to right. The first integer of each row is greater than the last integer of the previous row.

Minimum Size Subarray Sum

Given an array of n positive integers and a positive integer s, find the minimal length of a contiguous subarray of which the sum ≥ s. If there isn't one, return 0 instead.

Diagonal Traverse

Given a matrix of M x N elements (M rows, N columns), return all elements of the matrix in diagonal order as shown in the below image.

How to change security protocol to tls1.2 in IIS/ASP.NET?

Edit `Global.asax` file. Import the `System.Net` class and then change the security protocol to tls1.2 in the `Applicatin_Start` method.

Valid Parentheses

Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.

How to set website's default encoding in IIS? How to fix a page that can't display foreign language like Chinese?

Add the <meta charset="utf-8" /> tag inside the head tag of the web page. Also add the following setting inside the <configuration><system.web> tag in the web.config file.

First Missing Positive

Given an unsorted integer array, find the smallest missing positive integer.

Palindromic Substrings

Given a string, your task is to count how many palindromic substrings in this string. The substrings with different start indexes or end indexes are counted as different substrings even they consist of same characters.

How to install or move Ghost blog to a subdirectory using Nginx?

Palindrome Number

Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.

Reverse Integer

Given a 32-bit signed integer, reverse digits of an integer.

Remove Duplicates from Sorted Array

Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length. Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory.

Lowest Common Ancestor of a Binary Tree

Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. The lowest common ancestor is defined between two nodes p and q as the lowest node in T that has both p and q as descendants.

Valid Perfect Square

Given a positive integer num, write a function which returns True if num is a perfect square else False.

String to Integer

The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this character, takes an optional initial plus or minus sign followed by as many numerical digits as possible, and interprets them as a numerical value.

Merge Two Sorted Lists

Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.

Two sum

Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same element twice.