Pinned Repositories
1119.-Remove-Vowels-from-a-String
1146.-Snapshot-Array
Implement a SnapshotArray that supports the following interface: SnapshotArray(int length) initializes an array-like data structure with the given length. Initially, each element equals 0.
ACSI-github
Apartment-Hunting
You're looking to move into a new apartment, and you're given a list of blocks where each block contains an apartment that you could move into. In order to pick your apartment, you want to optimize its location. You also have a list of requirements: a list of buildings that are important to you. For instance, you might value having a school and a gym near your apartment. The list of blocks that you have contains information at every block about all of the buildings that are present and absent at the block in question. For instance, for every block, you might know whether a school, a pool, an office, and a gym are present or not. In order to optimize your life, you want to minimize the farthest distance you'd have to walk from your apartment to reach all of your required buildings. Write a function that takes in a list of blocks and a list of your required buildings and that returns the location (the index) of the block that is most optimal for you. Sample input: [ { "gym": False, "school": True, "store": False, }, { "gym": True, "school": False, "s
Architable2
Breadth-first-search
Implement the breadthFirstSearch method on the node class
Fintrack
Web Progressive app that lets you track and manage your finances with D3 graphs. Technology used: Technology used: React, Redux, Cloud Firestore, Express, Plaid API, D3.js, Agile(Waffle), Heroku, TDD (Mocha)
PWA
RestroomFinder
SpringBootMircoservices
prince7475's Repositories
prince7475/AddItemMirco
prince7475/angular-ngrx
prince7475/angular-routing
prince7475/Binary-Search-Tree-Code
prince7475/binarySearch
Write a function that takes in a sorted array of integers and a target integer. The function should use the binary search to find the number.
prince7475/Brackets
prince7475/Doubly-Linked-List-Code
prince7475/EditItem
prince7475/graphql-node
prince7475/Hash-Table-Separate-Chaining
prince7475/HomeMicroUI
prince7475/Longest-String-Chain
Given a list of strings, write a function that returns the longest string chain that can be built from those strings. A string chain is defined as follows: let string A be a string in the initial array; if removing any single character from string A yields a new string B that is contained in the initial array of strings, then strings A and B form a string chain of length 2. Similarly, if removing any single character from string B yields a new string C that is contained in the initial array of strings, then strings A, B, and C form a string chain of length 3. The function should return the string chain in descending order (i.e., from the longest string to the shortest one). Note that string chains of length 1 do not exist; if the list of strings does not contain any string chain formed by 2 or more strings, the function should return an empty list. Sample input: ["abde","abc","abd","abcde","ade","ae","1abde","abcdef"] Sample output: ["abcdef","abcde","abde","ade","ae"]
prince7475/MDB-Setup
prince7475/MicroUIWrapper
prince7475/mssc-beer-service
Create initial Project for Beer Service, configure for java 11
prince7475/mssc-brewery
prince7475/mssc-brewery-client
prince7475/mssc-customer-client
prince7475/ng4-complete-guide
prince7475/PQ
prince7475/prince-donkor-create-new-cli
prince7475/property-management
prince7475/PWA-React
prince7475/Queue-Simple-Code
prince7475/real-estate-managment
prince7475/s-13-angular-observables
prince7475/s-15-angular-forms
prince7475/todolist
prince7475/TodoMicroUI
prince7475/Union-Find