Warning: mysqli::__construct(): (HY000/1203): User howardkn already has more than 'max_user_connections' active connections in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\includes\artfuncs.php on line 21
Failed to connect to MySQL: (1203) User howardkn already has more than 'max_user_connections' active connections
Warning: mysqli::query(): Couldn't fetch mysqli in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\index.php on line 66
Article <v4lanu$3mt2j$1@dont-email.me>
Deutsch   English   Français   Italiano  
<v4lanu$3mt2j$1@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: HenHanna <HenHanna@devnull.tb>
Newsgroups: comp.lang.python,comp.lang.lisp
Subject: Re: diff1(x) in Python: True if all adjacent items differ by 1, False
 otherwise.
Date: Sat, 15 Jun 2024 17:13:49 -0700
Organization: A noiseless patient Spider
Lines: 13
Message-ID: <v4lanu$3mt2j$1@dont-email.me>
References: <v4kuk5$3k353$1@dont-email.me> <8734pd7v1r.fsf@nightsong.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sun, 16 Jun 2024 02:13:52 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="35c3840a03f107b42fbf945be62926e9";
	logging-data="3896403"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX19RzB8dIncdwORWTUrdtrroQbPVgvXI0G0="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:GKBNF0lfYNWeEPoO5QPHPBzjckQ=
Content-Language: en-US
In-Reply-To: <8734pd7v1r.fsf@nightsong.com>
Bytes: 1453

On 6/15/2024 2:30 PM, Paul Rubin wrote:
> HenHanna <HenHanna@devnull.tb> writes:
>> def diff1(x):
>>      if len(x) <= 1: return True
>>      for i in range(len(x) - 1):
>>          if abs(x[i] - x[i+1]) != 1:    return False
>>      return True
> 
> def diff2(x):
>    return all(abs(a-b)==1) for a,b in zip(x,x[1:]))


Does this work when x is  []  or  [1]  ?