DVDevesh Vermaindeveshcodes.hashnode.dev·May 20, 2023 · 1 min readTo find Missing Number in an arrayGiven an array of size N-1 such that it only contains distinct integers in the range of 1 to N. Find the missing element. Explanation : Calculate the expected sum of all numbers from 1 to n using the formula: expected_sum = n * (n + 1) / 2. Iterate...00
DVDevesh Vermaindeveshcodes.hashnode.dev·Apr 6, 2023 · 3 min readText Formatting in HTMLHello Coders and Friends, Different tags that are useful for text formatting in HTML along with their syntax are ● <strong>: Makes text bold. ● <b>: Makes text bold. ● <em>: Italicizes text. ● <i>: Italicizes text ● <u>: The <u> tag in HTML is used t...00