Skip to content

Instantly share code, notes, and snippets.

View francoj22's full-sized avatar
🎯
Focusing

Franco Gutierrez francoj22

🎯
Focusing
View GitHub Profile
@gokulkrishh
gokulkrishh / media-query.css
Last active August 23, 2025 03:07
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */
package jp.noxi.sample;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTabHost;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
@zac-xin
zac-xin / Anagrams.java
Created December 26, 2012 04:54
Given an array of strings, return all groups of strings that are anagrams.
public class Solution {
public ArrayList<String> anagrams(String[] strs) {
// Start typing your Java solution below
// DO NOT write main() function
HashMap<String, ArrayList<String>> map = new HashMap<String, ArrayList<String>>();
ArrayList<String> result = new ArrayList<String>();
if(strs.length < 2)
return result;