===== Tytuł ===== -------- Podtytuł -------- :Autor: Łukasz Cieśnik :Kontakt: lukasz.ciesnik@gmail.com :Organizacja: Politechnika Poznańska Plan prezentacji ================ .. contents:: Część 1 ======= Slajd 1 ------- Hello world! Slajd 2 ------- Akapit 1 Akapit 2 Część 2 ======= Slajd 3 ------- Wypunktowanie: * jest * fantastyczne Slajd 4 ------- Numerowanie: 1. po pierwsze... 2. i po drugie A to *podkreślenie* i **pogrubienie**. Slajd 5 ------- .. note:: Notatki do slajdów. .. code-block:: python def compute(m): count = 0 for x1, y1 in States: for x2, y2 in States: x3, y3 = ((6-x1-x2)%3, (6-y1-y2)%3) count += m[(x1,y1)] * m[(x2,y2)] * m[(x3,y3)] for x, y in States: count -= m[(x,y)] assert count % 6 == 0, count count /= 6 for x, y in States: count -= m[(x,y)]*(m[(x,y)]-1) / 2 return count Slajd 6 ------- .. code-block:: erlang -module(factor). -export([factor/1]). factor(N) when N > 0 -> factor(N, 2). factor(N, Div) when N rem Div == 0 -> [Div | factor(N div Div, Div)]; factor(N, Div) when Div*Div =< N -> factor(N, Div+1); factor(N, _) when N > 1 -> [N]; % N is prime factor(_, _) -> []. % N == 1 .. vim700: spell spelllang=pl .. vim: ft=rest .. vim: ts=4 sw=4 et