1
0
forked from kalmar/DALGLI0
This commit is contained in:
kalmarek 2018-05-18 11:58:52 +02:00
parent 8bf068c6fe
commit 679f76a102

View File

@ -1,22 +1,19 @@
## Zadanie ## Zadanie
Napisać algorytm, który dla danego `n ∈ ` znajdzie wszystkie: Napisać algorytm, który dla danego `n ∈ ` znajdzie wszystkie:
1. elementy odwracalne 1. elementy odwracalne
2. dzielniki zera 2. dzielniki zera
3. elementy nilpotentne 3. elementy nilpotentne
4. elementy idempotentne 4. elementy idempotentne
w pierścieniu `{/n, +, ⋅}`. w pierścieniu `{/n, +, ⋅}`.
### Przykłady: ### Przykłady:
* Input: > Input: `4`
> `4` > Output: `[[1,3], [0,2], [0,2], [0,1]]`
* Output:
> `[[1,3], [0,2], [0,2], [0,1]]`
* Input:
> `6`
* Output:
> `[[1,5], [0,2,3,4], [0], [0,1,3,4]]`
> Input: `6`
> Output: `[[1,5], [0,2,3,4], [0], [0,1,3,4]]`