• BallV's Activity

Commented a forum post "Welcome email" created by BallV
Got it! Thanks a lot!
Created a forum post "Welcome email"
Hi all! Does anyone have an idea, why this code actually works and sends emails, but Fails on: send_
Liked a comment created by kurosawa4434 for forum post "The Fastest Horse - got stuck"
I think...  
First you will need to fix as the following:

    
    import re    
    
    def faste
Commented a forum post "The Fastest Horse - got stuck" created by BallV
Thanks a lot!
Created a forum post "The Fastest Horse - got stuck"
Hi guys! Got stuck with lists, which contain nested lists with this code: import re
Liked forum post "Common words" created by knsgvh
def checkio(first, second): a = set(first.split(",")) b = set(second.split(","
Liked a comment created by Phil15 for forum post "Common words"
You forgot a closed parenthesis at the end.
Commented a forum post "Sort arr by elem frequency: fail on final assert" created by BallV
Thank you!!!
import collections def frequency_sort(items): if items == []: r
Thanks again!!!)
from datetime import datetime def time_converter(time): am = ' a.m.'
Liked a comment created by Phil15 for forum post "Assertion error on third example"
    asasasasasasasaas

for each letter, it pass `char.islower()` test then integrity is increased by
Created a forum post "Assertion error on third example"
length = len(data) integrity = 1 if length >= 10: for char in data:
Liked a comment created by genadiik for forum post "The Most Numbers - stuck on empty sequence check"
Your condition is on line 5. However the error occurs on line 2.

You should check the size of input
Commented a forum post "The Most Numbers - stuck on empty sequence check" created by BallV
Thanks a lot!!!!
def checkio(*args): min_element = min(args) max_element = max(args) d
Liked a comment created by HeNeArKr for forum post "Not sure how to solve this;"
`result = sorted(numbers_array, key=abs)`

`key` takes the **name** of a function to be used on each
Liked forum post "Not sure how to solve this;" created by matdibobe
def checkio(numbers_array: tuple) -> list: result = sorted(numbers_array, key=abs(range(number
Thanks a lot!