17
Evgeny_Andronov
2 15 27
1680/ 1695
Floid Pepper
Last seen 1 month ago
Member for 7 years, 6 months, 11 days
Difficulty Normal
Best reviews / Newest reviews
Second-ciel 1
>Воскресенье, 18 декабря 2016, 3:03 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this publication is from "Non-unique Elements" Mission and in "Clear" category. >Interpreter: Python 3.6rc1 >Link to the mission: https://py.checkio.org/mission/non-unique-elements/ > >checkio=lambda d More
First-djtan2006
>Воскресенье, 25 декабря 2016, 11:44 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this publication is from "Non-unique Elements" Mission and in "Clear" category. >Interpreter: Python 3.6rc1 >Link to the mission: https://py.checkio.org/mission/non-unique-elements/ > >#Your optional More
First-patelpratik84
>Понедельник, 9 января 2017, 3:27 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this publication is from "Roman Numerals" Mission and in "Clear" category. >Interpreter: Python 2.7 >Link to the mission: https://py.checkio.org/mission/roman-numerals/ > >def checkio(data): ROMAN More
First-denya4
>Среда, 2 августа 2017, 19:04 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this solution is from "Right to Left" Mission and in "Clear" category. > >01. def left_join(phrases): >02. #s = ','.join(phrases) >03. #s = s.replace('right', 'left') >04. return ((','.join(phra More
Fizz Buzz-hellohejin
>Четверг, 10 августа 2017, 3:03 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this solution is from "Fizz Buzz" Mission and in "Clear" category. > >01. #Your optional code here >02. #You can import some modules or create additional functions >03. >04. >05. def checkio(number): >06 More
First-gornyihrebet
>Среда, 16 мая 2018, 19:17 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this solution is from "Absolute sorting" Mission and in "Clear" category. > >01. def checkio(numbers_array): >02. """Python: InsertionSort algorithm""" >03. # return sorted(numbers_array, key=abs) >04. More
First-seema0
>Воскресенье, 12 августа 2018, 19:17 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this solution is from "Easy Unpack" Mission and in "Clear" category. > >1. def easy_unpack(elements): >2. return (elements[0],elements[2],elements[-2]) >3. >To review this publication you can sim More
First-eugene100372
>Пятница, 23 ноября 2018, 11:18 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this solution is from "Easy Unpack" Mission and in "Clear" category. > >01. def easy_unpack(elements: tuple) -> tuple: >02. return (elements[0],elements[2],elements[-2]) >03. >04. if __name__ == '__ma More
First-yangfanconan
>Воскресенье, 30 декабря 2018, 3:17 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this solution is from "House Password" Mission and in "Clear" category. > >01. def checkio(data: str) -> bool: >02. >03. strlen= len(data) >04. #print(password+":"+str(strlen)) >05. havenu More
First-liw_80
>Вторник, 19 февраля 2019, 11:19 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this solution is from "Easy Unpack" Mission and in "Clear" category. > >01. def easy_unpack(elements: tuple) -> tuple: >02. """ >03. returns a tuple with 3 elements - first, third and second t More
Groupby is cool-skar123
>Четверг, 18 апреля 2019, 19:21 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this solution is from "Long Repeat" Mission and in "Clear" category. > >01. from itertools import groupby >02. >03. def long_repeat(line): >04. """ >05. length the longest substring that consi More
using datetime-skar123
>Воскресенье, 23 июня 2019, 19:18 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this solution is from "Days Between" Mission and in "Clear" category. > >01. from datetime import date >02. >03. def days_diff(date1, date2): >04. return abs((date(*date1) - date(*date2)).days) >05. More
First-Fate446
>Понедельник, 1 июля 2019, 3:17 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this solution is from "Days Between" Mission and in "Clear" category. > >01. import datetime >02. >03. def days_diff(date1, date2): >04. d1 = datetime.date(date1[0],date1[1],date1[2]) >05. d2 = d More
First-Khachatur
>Вторник, 23 июля 2019, 3:17 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this solution is from "Median" Mission and in "Clear" category. > >01. from typing import List >02. >03. def checkio(data: List[int]) -> [int, float]: >04. data.sort() >05. med_ind = len(data) // 2 > More
First-cakuba
>Вторник, 30 июля 2019, 19:17 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this solution is from "Days Between" Mission and in "Speedy" category. > >01. def days_diff(a, b): >02. # your code here >03. from datetime import date >04. >05. return abs( (date(a[0],a[1], More
First-Trailblazer 1
>Четверг, 5 сентября 2019, 19:39 +03:00 от please-reply@checkio.org: > >Hello Evgeny_Andronov, this solution is from "Median" Mission and in "Clear" category. > >01. from typing import List >02. >03. >04. def checkio(data: List[int]) -> [int, float]: >05. length = len(data) >06. middle = More