This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.palindrome | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.TreeMap; | |
public class GroupByAnagram { | |
public static String[][] groupAnagrams(String[] words) { | |
Map<String, List<String>> anagrams = new TreeMap<>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
production deployment: https://cartsubmission-rajiph.vercel.app/ | |
source code: https://github.com/felixa1243/react-cart | |
start project: 24 dec 2020 | |
finished last question: 25 dec 2020 4:58:23 PM | |
hackerrank profile: https://www.hackerrank.com/felixarajiph |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
#include <conio.h> | |
#include<cstdlib> | |
using namespace std; | |
int pointInitializer(int a=1){ | |
system("color b"); | |
cout<<"System initializing!...\n"; | |
sleep(1); | |
cout<<"Enter how many lifes do you want: "; | |
cin>>a; |