Keybase proof
I hereby claim:
- I am aalvarado on github.
- I am adantj (https://keybase.io/adantj) on keybase.
- I have a public key ASDVzoFdsJZ2XrWVJCP6piQo_J9C7xCAufnOoltiXhkpawo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
use std::fmt; | |
#[derive(Debug)] | |
struct CircularQueue<T> { | |
max: usize, | |
list: Vec<T>, | |
} | |
impl <T> CircularQueue<T> where T: std::string::ToString { | |
pub fn new(max: usize) -> CircularQueue<T> { |
{ | |
"title": "Escape enhancements", | |
"rules": [ | |
{ | |
"description": "Escape toggles capslock if enabled", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "escape", |
1 |
struct Person; | |
impl Person { | |
fn hello(&self) -> &'static str { | |
return "hello"; | |
} | |
} | |
fn main() { | |
println!("Hello, world!"); | |
let p = Person; |
#!/bin/bash | |
# | |
# The MIT License | |
# | |
# Copyright 2014 Jakub Jirutka <jakub@jirutka.cz>. | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
limit = 100 | |
fizz = ['']*2 << 'fizz' | |
buzz = ['']*4 << 'buzz' | |
(1..limit).to_a.zip(fizz.cycle(limit).to_a.zip(buzz.cycle(limit).to_a)).each{ |n| puts n.join(' ') } |
* Acerca de Git | |
- ¿Por que es necesario? | |
- Otras opciones en control de versiones | |
- Distribuidos y centralizados | |
* Recursos | |
- Pro Git book. http://git-scm.com/book | |
- StackOverflow | |
- Internet |
def solution(a) | |
((( a.size + 2 ) * ( a.size + 1 )) / 2) - ( a.reduce(&:+) || 0 ) | |
end |