Skip to content

Instantly share code, notes, and snippets.

View adagio's full-sized avatar
👨‍💻
practicing Django / learning about blockchain

Edu F adagio

👨‍💻
practicing Django / learning about blockchain
  • HartasCuerdas
  • Lima, Peru
View GitHub Profile
'''Fun with Anagrams:
QUESTION DESCRIPTION
Two strings are anagrams if they are permutations of each other. For example, "aaagmnrs" is an anagram of "anagrams".
Given an array of strings, remove each string that is an anagram of an earlier string, then return the remaining array
in sorted order.
For example, given the strings s = ['code', 'doce', 'ecod', 'framer', 'frame'], the strings 'doce' and 'ecod' are both
anagrams of 'code' so they are removed from the list. The words 'frame' and 'framer' are not anagrams due to the extra
'r' in 'framer', so they remain. The final list of strings in alphabetical order is ['code', 'frame', 'framer'].
@joyrexus
joyrexus / README.md
Last active February 24, 2024 15:16
collapsible markdown

collapsible markdown?

CLICK ME

yes, even hidden code blocks!

print("hello world!")
@jansanchez
jansanchez / ios.md
Last active February 14, 2019 21:14

iOS Developer(Desarrollador iOS)

Estamos en busca de un Desarrollador iOS que tenga:

  • Experiencia mínima: Medio año desarrollando y dando soporte a aplicaciones iOS.
  • Experiencia desarrollando con Swift, Cocoa Touch, Xcode.
  • Comprensión de arquitecturas orientadas a servicios (REST, JSON, API/Web Services).
  • Criterio profesional y sentido de la responsabilidad.
  • Habilidad para identificar, investigar, resolver y recomendar soluciones.
@ericclemmons
ericclemmons / example.md
Last active April 24, 2024 18:09
HTML5 <details> in GitHub

Using <details> in GitHub

Suppose you're opening an issue and there's a lot noisey logs that may be useful.

Rather than wrecking readability, wrap it in a <details> tag!

<details>
 Summary Goes Here
@spalladino
spalladino / mysql-docker.sh
Created December 22, 2015 13:47
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE
@jaryl
jaryl / spec_helper.rb
Created September 13, 2013 18:53
SpecHelper configuration for sending coverage reports to Coveralls and CodeClimate.
require 'codeclimate-test-reporter'
require 'simplecov'
require 'coveralls'
formatters = [SimpleCov::Formatter::HTMLFormatter]
formatters << Coveralls::SimpleCov::Formatter if ENV['COVERALLS_REPO_TOKEN']
formatters << CodeClimate::TestReporter::Formatter if ENV['CODECLIMATE_REPO_TOKEN']
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[*formatters]
@joelverhagen
joelverhagen / README.md
Created February 12, 2012 02:14
Jekyll YouTube Embed Plugin

This is a plugin meant for Jekyll.

Example use:

Easily embed a YouTube video. Just drop this file in your _plugins directory.

{% youtube oHg5SJYRHA0 %}