Merge pull request #4 from TiagoRG/dev-tiagorg
README update and small simplification
This commit is contained in:
commit
6e4b512298
|
@ -5,12 +5,8 @@
|
||||||
# os primeiros n elementos igualam os últimos n elementos (sem sobreposição).
|
# os primeiros n elementos igualam os últimos n elementos (sem sobreposição).
|
||||||
|
|
||||||
def firstEqualLast(lst):
|
def firstEqualLast(lst):
|
||||||
if len(lst) <= 1:
|
|
||||||
return 0
|
|
||||||
|
|
||||||
n = 0
|
n = 0
|
||||||
for i in range(1, len(lst)//2+1):
|
for i in range(1, len(lst)//2+1):
|
||||||
if lst[:i] == lst[len(lst)-i:]:
|
if lst[:i] == lst[-i:]:
|
||||||
n = i
|
n = i
|
||||||
|
|
||||||
return n
|
return n
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
- [Laboratórios de Informática](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/labi)
|
- [Laboratórios de Informática](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/labi)
|
||||||
- [Laboratório de Sistemas Digitais](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/lsd)
|
- [Laboratório de Sistemas Digitais](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/lsd)
|
||||||
- [Matemática Discreta](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/md)
|
- [Matemática Discreta](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/md)
|
||||||
|
- [Cálculo - 2](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/c2)
|
||||||
|
|
||||||
---
|
---
|
||||||
*Pode conter erros, caso encontre algum, crie um* [*ticket*](https://github.com/TiagoRG/uaveiro-leci/issues/new)
|
*Pode conter erros, caso encontre algum, crie um* [*ticket*](https://github.com/TiagoRG/uaveiro-leci/issues/new)
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
- [Laboratórios de Informática](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/labi)
|
- [Laboratórios de Informática](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/labi)
|
||||||
- [Laboratório de Sistemas Digitais](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/lsd)
|
- [Laboratório de Sistemas Digitais](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/lsd)
|
||||||
- [Matemática Discreta](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/md)
|
- [Matemática Discreta](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/md)
|
||||||
|
- [Cálculo - 2](https://github.com/TiagoRG/uaveiro-leci/tree/master/1ano/2semestre/c2)
|
||||||
|
|
||||||
---
|
---
|
||||||
*Pode conter erros, caso encontre algum, crie um* [*ticket*](https://github.com/TiagoRG/uaveiro-leci/issues/new)
|
*Pode conter erros, caso encontre algum, crie um* [*ticket*](https://github.com/TiagoRG/uaveiro-leci/issues/new)
|
||||||
|
|
Loading…
Reference in New Issue