Logo

Programming-Idioms

  • Python
  • Rust
  • Erlang

Idiom #76 Binary digits from an integer

Create the string s of integer x written in base 2.

E.g. 13 -> "1101"

S = io_lib:format("~.2B~n", [X]).
s = format(x, 'b')
s = '{:b}'.format(x)
let s = format!("{:b}", x);

Formatting lets you choose another representation (e.g., `b` for binary, `X` for hex in upper case and `?` for debug output).
let s = format!("{x:b}");
(:require [clojure.pprint])
(defn s
  [x]
  (pprint/cl-format nil "~b" x))

Call s and pass an integer x to it and it will return your integer in base 2.

New implementation...