Skip to content

Instantly share code, notes, and snippets.

View mhammiche's full-sized avatar

Mourad Hammiche mhammiche

View GitHub Profile
@mhammiche
mhammiche / russian.exs
Last active February 23, 2016 21:50
Elixir implementation of russian peasant algorithm
defmodule Russian do
require Integer
use Bitwise
@doc ~S"""
Multiply two integer using the Russian Peasant Algorithm
## Examples
iex> Russian.mult(5,3)
15
"""
@mhammiche
mhammiche / remove_all_cvs
Last active December 29, 2015 12:49
Recursively remove all CVS files or directory in the current directory
find . -depth -name 'CVS' -exec rm -rf '{}' \; -print