Sunday, July 17, 2022
Duplicated Products | C# | HackerRank
Frequency of Max Value | C# | HackerRank
Equal Levels | HackerRank
Sunday, June 5, 2022
Customer List | HackerRank Certification | React
Monday, May 30, 2022
Count String Permutations | HackerRank Certification
Count all possible N-length vowel permutations that can be generated based on the given conditions
Given an integer N, the task is to count the number of N-length strings consisting of lowercase vowels that can be generated based the following conditions:
- Each ‘a’ may only be followed by an ‘e’.
- Each ‘e’ may only be followed by an ‘a’ or an ‘i’.
- Each ‘i’ may not be followed by another ‘i’.
- Each ‘o’ may only be followed by an ‘i’ or a ‘u’.
- Each ‘u’ may only be followed by an ‘a’.a
nput: N = 1
Output: 5
Explanation: All strings that can be formed are: “a”, “e”, “i”, “o” and “u”.
Input: N = 2
Output: 10
Explanation: All strings that can be formed are: “ae”, “ea”, “ei”, “ia”, “ie”, “io”, “iu”, “oi”, “ou” and “ua”.
Condensed List | HackerRank Certification | Remove repeated node from a Singly Linked List
Given a list of integers, remove any nodes that have values that have previously occurred in the list and return a reference to the head of the list.
For e.g:
Linked List
Input : 3 --> 4 --> 3 --> 6
Output: 3 --> 4 --> 6
Sunday, April 17, 2022
Staircase | HackerRank | C#
This is a staircase of size :
#
##
###
####
Its base and height are both equal to . It is drawn using # symbols and spaces. The last line is not preceded by any spaces.
Write a program that prints a staircase of size .
Function Description
Complete the staircase function in the editor below.
staircase has the following parameter(s):
- int n: an integer
Print a staircase as described above.
Input Format
A single integer, , denoting the size of the staircase.
Constraints
.
Output Format
Print a staircase of size using # symbols and spaces.
Note: The last line must have spaces in it.
Sample Input
6
Sample Output
#
##
###
####
#####
######
Explanation
The staircase is right-aligned, composed of # symbols and spaces, and has a height and width of .
Solution
US Government Bans Claude Fable 5 & Mythos 5: Everything You Need to Know
US Government Bans Claude Fable 5 & Mythos 5: Everything You Need to Know June 13, 2026 Last Updated: Ju...
horizontal ads
-
using System; using System.Collections.Generic; using System.IO; namespace Solution { public class NotesStore { public IDict...
-
using System ; using System . Collections . Generic ; using System . IO ; using System . Linq ; namespace Solution { public class ...
-
import React , { useState } from "react" ; import "./index.css" ; function CustomerList (){ const [ customer ,...