Rageeni Sah (ragni1)

ragni1

Geek Repo

Company:https://www.oracle.com/in/index.html

Location:Bangalore

Home Page:https://www.linkedin.com/in/rageeni-sah-94524869/

Github PK Tool:Github PK Tool

Rageeni Sah's repositories

Deep-Learning

Deep Learning Projects

Language:Jupyter NotebookStargazers:0Issues:0Issues:0

Machine-Learning

Machine Learning

Language:Jupyter NotebookStargazers:0Issues:1Issues:0

ML-Projects

ML Projects Collections

Language:Jupyter NotebookStargazers:0Issues:0Issues:0

PythonCodes

Collection of all important algorithms

Language:PythonStargazers:0Issues:0Issues:0

Queen-s-Position

This is python code to find all moves that a queen can take from position (p,q) on a chess board.

Stargazers:0Issues:0Issues:0

Statistics

Statistics

Language:RStargazers:0Issues:0Issues:0

SuperReducedString

Steve has a string, , consisting of lowercase English alphabetic letters. In one operation, he can delete any pair of adjacent letters with same value. For example, string "aabcc" would become either "aab" or "bcc" after operation. Steve wants to reduce as much as possible. To do this, he will repeat the above operation as many times as it can be performed. Help Steve out by finding and printing 's non-reducible form! Note: If the final string is empty, print Empty String . Input Format A single string, . Constraints Output Format If the final string is empty, print Empty String; otherwise, print the final non-reducible string. Sample Input 0 aaabccddd Sample Output 0 abd Sample Case 0 Steve can perform the following sequence of operations to get the final string: aaabccddd → abccddd abccddd → abddd abddd → abd Thus, we print abd. Sample Input 1 baab Sample Output 1 Empty String Explanation 1 Steve can perform the following sequence of operations to get the final string: baab → bb bb → Empty String Thus, we print Empty String. Sample Input 2 aa Sample Output 2 Empty String

Stargazers:0Issues:0Issues:0