Skip to content

Instantly share code, notes, and snippets.

View felixa1243's full-sized avatar
🎯
Focusing

Rajiph iqbal felixa1243

🎯
Focusing
View GitHub Profile
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<>();
@felixa1243
felixa1243 / gist:fa6ef1252364985822d593c5aad99aba
Last active December 26, 2022 09:31
submission-ec-rajiph-iqbal-ghandi
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
#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;