Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

Disclaimer: "These opinions are my own, though for a small fee they be yours too." -- Dave Haynie


devel / comp.lang.python / How to solve the given problem?

SubjectAuthor
* How to solve the given problem?NArshad
+- Re: How to solve the given problem?Christian Gollwitzer
+* Re: How to solve the given problem?Chris Angelico
|`* Re: How to solve the given problem?NArshad
| +- Re: How to solve the given problem?Chris Angelico
| `- Re: How to solve the given problem?Christian Gollwitzer
+- Re: How to solve the given problem?Marco Sulla
`* Re: How to solve the given problem?Avi Gross
 `* Re: How to solve the given problem?NArshad
  `* Re: How to solve the given problem?NArshad
   +- Re: How to solve the given problem?NArshad
   `- Re: How to solve the given problem?NArshad

1
How to solve the given problem?

<028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17001&group=comp.lang.python#17001

  copy link   Newsgroups: comp.lang.python
X-Received: by 2002:a05:620a:29ce:: with SMTP id s14mr3017554qkp.604.1644475249023;
Wed, 09 Feb 2022 22:40:49 -0800 (PST)
X-Received: by 2002:a05:620a:f10:: with SMTP id v16mr2962039qkl.648.1644475248883;
Wed, 09 Feb 2022 22:40:48 -0800 (PST)
Path: i2pn2.org!i2pn.org!usenet.goja.nl.eu.org!3.eu.feeder.erje.net!2.eu.feeder.erje.net!feeder.erje.net!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.python
Date: Wed, 9 Feb 2022 22:40:48 -0800 (PST)
Injection-Info: google-groups.googlegroups.com; posting-host=37.111.139.93; posting-account=IftX_woAAACUMrPm_t7tPycPRLi3x_9J
NNTP-Posting-Host: 37.111.139.93
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
Subject: How to solve the given problem?
From: narshad....@gmail.com (NArshad)
Injection-Date: Thu, 10 Feb 2022 06:40:49 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 9
 by: NArshad - Thu, 10 Feb 2022 06:40 UTC

Assume that there is a pattern of feeding for a special fish in a day (10 hours a day) as below:
150 100 30 30 30 20 20 10 5 5
Today, the fish is fed in the second hour 60 unit instead of 100 unit Accidently. Implement some methods to distribute the remaining 40 unit in the rest of the day and propose the new patterns. Try to keep the distribution similar to the current feeding pattern.
Note: pay attention that the total feeding amounts should be fix in a day.

Re: How to solve the given problem?

<su2eu8$58b$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17002&group=comp.lang.python#17002

  copy link   Newsgroups: comp.lang.python
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: aurio...@gmx.de (Christian Gollwitzer)
Newsgroups: comp.lang.python
Subject: Re: How to solve the given problem?
Date: Thu, 10 Feb 2022 08:30:15 +0100
Organization: A noiseless patient Spider
Lines: 21
Message-ID: <su2eu8$58b$1@dont-email.me>
References: <028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 10 Feb 2022 07:30:16 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="383a8a74739cc208f209ea26058404cf";
logging-data="5387"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+DWQPSy6OIIaVdG3ZKDYEXQu0nMXWKJ3E="
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:91.0)
Gecko/20100101 Thunderbird/91.5.1
Cancel-Lock: sha1:DP2cYuTH56tOOjF1GfiAP2tdYMA=
In-Reply-To: <028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
 by: Christian Gollwitzer - Thu, 10 Feb 2022 07:30 UTC

Am 10.02.22 um 07:40 schrieb NArshad:
>
> Assume that there is a pattern of feeding for a special fish in a day (10 hours a day) as below:
> 150 100 30 30 30 20 20 10 5 5
> Today, the fish is fed in the second hour 60 unit instead of 100 unit Accidently. Implement some methods to distribute the remaining 40 unit in the rest of the day and propose the new patterns. Try to keep the distribution similar to the current feeding pattern.
> Note: pay attention that the total feeding amounts should be fix in a day.

This is not a Python problem, it's a math problem and most probably a
homework problem. Actually the question already tells you how to solve
it. There are 40 units of fish-food left and you should distribute them
proportionally to the rest of the day. Sum up the numbers from 3rd to
last, add 40, and then distribute this to proportionally to each day.

You'll end up with fractinoal numbers in the general case, so you'll
have to find a method to fairly distribute the units, if you wan to
stick with integers.

You can also check out the various algorithms for distributing seats in
a parliament, it is almost the same problem.

Christian

Re: How to solve the given problem?

<mailman.84.1644482467.7010.python-list@python.org>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17003&group=comp.lang.python#17003

  copy link   Newsgroups: comp.lang.python
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!not-for-mail
From: ros...@gmail.com (Chris Angelico)
Newsgroups: comp.lang.python
Subject: Re: How to solve the given problem?
Date: Thu, 10 Feb 2022 19:40:55 +1100
Lines: 24
Message-ID: <mailman.84.1644482467.7010.python-list@python.org>
References: <028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
<CAPTjJmoAXy5wuHEbgbbL3KadjSx+3YJ-a3OUtAqpY2wSSRVefQ@mail.gmail.com>
Mime-Version: 1.0
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Trace: news.uni-berlin.de 0t+ecxFv/5s69YGdPITkaAbEb9EAO7xyuTPqO1VhAiTg==
Return-Path: <rosuav@gmail.com>
X-Original-To: python-list@python.org
Delivered-To: python-list@mail.python.org
Authentication-Results: mail.python.org; dkim=pass
reason="2048-bit key; unprotected key"
header.d=gmail.com header.i=@gmail.com header.b=D4lMPrAl;
dkim-adsp=pass; dkim-atps=neutral
X-Spam-Status: OK 0.132
X-Spam-Level: *
X-Spam-Evidence: '*H*': 0.74; '*S*': 0.00; 'subject:problem': 0.03;
'2022': 0.05; 'chrisa': 0.16; 'day)': 0.16; 'from:addr:rosuav':
0.16; 'from:name:chris angelico': 0.16; 'patterns.': 0.16;
'wrote:': 0.16; 'feb': 0.17; 'instead': 0.17; 'implement': 0.19;
'thu,': 0.19; 'to:addr:python-list': 0.20; 'subject:How': 0.23;
'actual': 0.25; 'again,': 0.26; 'pattern': 0.26; 'putting': 0.31;
'amounts': 0.32; 'assume': 0.32; 'message-id:@mail.gmail.com':
0.32; 'mailing': 0.33; 'there': 0.33; '100': 0.33; 'distribute':
0.33; 'header:In-Reply-To:1': 0.34; 'received:google.com': 0.34;
'trying': 0.35; 'from:addr:gmail.com': 0.35; 'fix': 0.36;
'people': 0.36; 'special': 0.37; 'received:209.85': 0.37; 'way':
0.38; 'received:209': 0.39; 'list': 0.39; 'methods': 0.39; 'rest':
0.39; 'try': 0.40; 'should': 0.40; "there's": 0.61; 'today,':
0.62; 'below:': 0.63; 'hours': 0.63; 'once': 0.63; 'bringing':
0.64; 'your': 0.64; 'similar': 0.65; 'pay': 0.65; 'day': 0.66;
'please,': 0.67; 'cheat': 0.69; 'remaining': 0.69; 'assist': 0.70;
'you.': 0.71; 'attention': 0.71; 'note:': 0.71; 'unit': 0.81
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112;
h=mime-version:references:in-reply-to:from:date:message-id:subject:to
:content-transfer-encoding;
bh=3fN9V5GaxksiToaRjPz2H9aT0LCfuOAPS2lnfx4nGl0=;
b=D4lMPrAlRcY0ojhiZk6w5+f+6fTk25fuuhY8DM7AjqDU7rf7zoEixRCJgQZxwz58Do
ERwhy8s0T4XwwFzVpB9Yl4ZGGm8njX+11CWJ9IWr19IPNFu3frnEJebqL9SW86gxRrwD
7/1K5dB89Q6Kl/AOmaSJ9y6LmxorVgRA9ZXSd2cR7AnV/aNrjI23eIN0PJKLpjOMsG7F
ZC8n21K9syV7f1JcFJ5YFVn6Tvk/99LViOPZKkLxZzzwJiqlfBLSZrEtN5RX27zsmu4V
wlsY0qSq/ZR74UHHdRQSImvTectzq8Gk7F1lphJksPJNnFYc3KijxM60QHfWAJmbFOuX
2xcg==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=1e100.net; s=20210112;
h=x-gm-message-state:mime-version:references:in-reply-to:from:date
:message-id:subject:to:content-transfer-encoding;
bh=3fN9V5GaxksiToaRjPz2H9aT0LCfuOAPS2lnfx4nGl0=;
b=bKocS6iyd+qknr51fXOHA55M1y59soTUIha5JYKLu3YBVCD2g6M6NdK5qU0FI1h7PY
KiArdP3NRdp5rvRSEMV4yEejktfSaWm+tto6uUBcb4hUCEs4Mf4AFMv2ZJ9SooWWEfdr
BqA/KS1nveQczXIkvtf8JnnRDgrIixrH1dr7JpzpLbG70yQsTnNry7WNoVcnNxuFlyA1
eCrp1uw3/7TJcUHAmXOhrSl366JqfRLz5DN+nK2xsOU/krBicz2HOST3FNsw2rZNisxM
FRG0+QvIY5yVst8JmwfJVwBEWH2xuGh9EwkLUdUsJs1U2FPRd41o9sTnE1JdF0m6tkkQ
pSuw==
X-Gm-Message-State: AOAM5317QJk8o7qk4r3G+7URwxoExDcL0orXcZp93P00MGSTyfwpsb0C
ZJvioN7PqBaHvGAyF1qRmQUO5FA0B1jdoCtBjkVaT3bO
X-Google-Smtp-Source: ABdhPJyHknku5Oc2GshnwjCXrgqm/wDzx+/6ttF+c4NGMsBPzXJqOhNl3nf507QAfgY3E4yBRQzHqT2yj0S30MTI/aI=
X-Received: by 2002:a7b:c0ce:: with SMTP id s14mr1188730wmh.9.1644482466094;
Thu, 10 Feb 2022 00:41:06 -0800 (PST)
In-Reply-To: <028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
X-BeenThere: python-list@python.org
X-Mailman-Version: 2.1.39
Precedence: list
List-Id: General discussion list for the Python programming language
<python-list.python.org>
List-Unsubscribe: <https://mail.python.org/mailman/options/python-list>,
<mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive: <https://mail.python.org/pipermail/python-list/>
List-Post: <mailto:python-list@python.org>
List-Help: <mailto:python-list-request@python.org?subject=help>
List-Subscribe: <https://mail.python.org/mailman/listinfo/python-list>,
<mailto:python-list-request@python.org?subject=subscribe>
X-Mailman-Original-Message-ID: <CAPTjJmoAXy5wuHEbgbbL3KadjSx+3YJ-a3OUtAqpY2wSSRVefQ@mail.gmail.com>
X-Mailman-Original-References: <028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
 by: Chris Angelico - Thu, 10 Feb 2022 08:40 UTC

On Thu, 10 Feb 2022 at 18:41, NArshad <narshad.380@gmail.com> wrote:
>
>
> Assume that there is a pattern of feeding for a special fish in a day (10 hours a day) as below:
> 150 100 30 30 30 20 20 10 5 5
> Today, the fish is fed in the second hour 60 unit instead of 100 unit Accidently. Implement some methods to distribute the remaining 40 unit in the rest of the day and propose the new patterns. Try to keep the distribution similar to the current feeding pattern.
> Note: pay attention that the total feeding amounts should be fix in a day..

Once again, you're bringing your homework to a mailing list and
expecting us to do it for you.

Start by putting in some actual work yourself, and stop trying to
cheat your way to a good grade.

Please, can people not assist this person until there's some
demonstration of actual work being done?

ChrisA

Re: How to solve the given problem?

<ef4ede55-3e23-483f-887c-b6a45112de1bn@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17004&group=comp.lang.python#17004

  copy link   Newsgroups: comp.lang.python
X-Received: by 2002:a05:622a:514:: with SMTP id l20mr4362641qtx.187.1644488818076;
Thu, 10 Feb 2022 02:26:58 -0800 (PST)
X-Received: by 2002:a05:6214:5084:: with SMTP id kk4mr4500421qvb.45.1644488817952;
Thu, 10 Feb 2022 02:26:57 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!1.us.feeder.erje.net!feeder.erje.net!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.python
Date: Thu, 10 Feb 2022 02:26:57 -0800 (PST)
In-Reply-To: <mailman.84.1644482467.7010.python-list@python.org>
Injection-Info: google-groups.googlegroups.com; posting-host=37.111.130.83; posting-account=IftX_woAAACUMrPm_t7tPycPRLi3x_9J
NNTP-Posting-Host: 37.111.130.83
References: <CAPTjJmoAXy5wuHEbgbbL3KadjSx+3YJ-a3OUtAqpY2wSSRVefQ@mail.gmail.com>
<028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com> <mailman.84.1644482467.7010.python-list@python.org>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <ef4ede55-3e23-483f-887c-b6a45112de1bn@googlegroups.com>
Subject: Re: How to solve the given problem?
From: narshad....@gmail.com (NArshad)
Injection-Date: Thu, 10 Feb 2022 10:26:58 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 24
 by: NArshad - Thu, 10 Feb 2022 10:26 UTC

-ChrisA:
You don't reply if you have problems.
When I don't find any solution elsewhere then only I place in this group

-Christian:
One problem of different type requires the same elaboration.

Q. What technique of statistics or numerical computation or general mathematics to use to solve this problem. Can you tell one example.

Find the values of 𝑥subscript(𝑖) for i from 1 to n (n =100).

𝑥subscript(1) + 𝑥subscript(2) = 3,

𝑥subscript(𝑖+1) − 𝑥subscript(𝑖+2) = 1, 𝑓𝑜𝑟 𝑖 = 1, … , 𝑛 − 2

𝑥subscript(n-1) + 𝑥subscript(n) = 3

Re: How to solve the given problem?

<mailman.87.1644506596.7010.python-list@python.org>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17009&group=comp.lang.python#17009

  copy link   Newsgroups: comp.lang.python
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!not-for-mail
From: ros...@gmail.com (Chris Angelico)
Newsgroups: comp.lang.python
Subject: Re: How to solve the given problem?
Date: Fri, 11 Feb 2022 02:23:03 +1100
Lines: 14
Message-ID: <mailman.87.1644506596.7010.python-list@python.org>
References: <CAPTjJmoAXy5wuHEbgbbL3KadjSx+3YJ-a3OUtAqpY2wSSRVefQ@mail.gmail.com>
<028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
<mailman.84.1644482467.7010.python-list@python.org>
<ef4ede55-3e23-483f-887c-b6a45112de1bn@googlegroups.com>
<CAPTjJmpSECwJT5wU69yd390ezpPGPqtMakrB+NStTyiDsCNxAw@mail.gmail.com>
Mime-Version: 1.0
Content-Type: text/plain; charset="UTF-8"
X-Trace: news.uni-berlin.de LNKWDelJnUDkQT0LDtMtkg7I1GBMFW9q1WXUmWMi6UuQ==
Return-Path: <rosuav@gmail.com>
X-Original-To: python-list@python.org
Delivered-To: python-list@mail.python.org
Authentication-Results: mail.python.org; dkim=pass
reason="2048-bit key; unprotected key"
header.d=gmail.com header.i=@gmail.com header.b=dyEixeJS;
dkim-adsp=pass; dkim-atps=neutral
X-Spam-Status: OK 0.019
X-Spam-Evidence: '*H*': 0.96; '*S*': 0.00; 'subject:problem': 0.03;
'2022': 0.05; 'chrisa': 0.16; 'elsewhere': 0.16;
'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16;
'received:209.85.221.42': 0.16; 'received:mail-
wr1-f42.google.com': 0.16; 'wrote:': 0.16; 'feb': 0.17; 'instead':
0.17; 'to:addr:python-list': 0.20; 'fri,': 0.22; 'subject:How':
0.23; 'actual': 0.25; 'message-id:@mail.gmail.com': 0.32; 'header
:In-Reply-To:1': 0.34; 'received:google.com': 0.34;
'from:addr:gmail.com': 0.35; 'people': 0.36; 'received:209.85':
0.37; 'received:209': 0.39; 'url-ip:104.26/16': 0.64; 'research':
0.64; 'your': 0.64; 'reply': 0.77; 'url-ip:104.26.12/24': 0.84;
'url-ip:104.26.13/24': 0.84
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112;
h=mime-version:references:in-reply-to:from:date:message-id:subject:to;
bh=s5zutl9AZA2Z0Sdf6lxqQe/b88w1QOSifD+fRm9ne7o=;
b=dyEixeJS9j6LrvGbzd0FYzdH0/0Yl9OvvxetsoIU8AWRTIYoFUwH8PyG3+3S67sDY7
SOtInva+Z2CCkzO1zX4t456B8dXBbbYbBAQQA8cjiSQ2y7K+bSf+n9GQ7nhVQ4wZeae4
p34A8gqamL8t0JgzOr8vlnWSnloxACmINRDK/ChL5V9SCv6HW+qiPM++WZ46uHEwJ4Pr
nXNCTewzrOJFJYPnqMZGcOee6F91v6RnEwuKWxtsPk+2Wj+m8qXFY0Yxtw8JKctbHSeh
SSPOu87ndnb86sKWvrchwzj6rv2YquTcBqGjOdIEyKqa2dM0Bv2w2Drg/oW/9QLsDqqw
bcRA==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=1e100.net; s=20210112;
h=x-gm-message-state:mime-version:references:in-reply-to:from:date
:message-id:subject:to;
bh=s5zutl9AZA2Z0Sdf6lxqQe/b88w1QOSifD+fRm9ne7o=;
b=cREyoJwtLOCPYiz1BDYvrbpSmVePkDVcJ5cEGn3MN+kS72r4/GWOI5vSWE5RIT1gv3
rDkl26El1zbijEEQ0ygDF6PPfTDtehjg1HQRZWFmIEa8lopa0Np3mbYvCTiKBoeEx4qj
+khVE9Y73fwk7ySZmyXAueVsdevXZE+0UfPn5nskRaoHxEHyLtX5sQt8kqh5H7LKGzXQ
OiQgnPY7hU6UsMazS+MZCzsRv4NLBAFupch03mQ++2Y3YJW+4EB/pAPC/WvgqTUETyNT
oQtT7PCNpGQpRtUDeZcnUzFkJ0K5oFF86KOSBjgz40C5y0QwTi1ZGngBpcsCNPlNpqcR
lwUg==
X-Gm-Message-State: AOAM5326EnHAnVoXmMwAVxa8LNTL+hknc7RZ9UeYnMZjs7ei1l5QBREP
GqyFitjZY4oIdRjL3M3oHUOcwc3UEXsEGymDzTKYXHbN7sY=
X-Google-Smtp-Source: ABdhPJzQxUsJrXA4slHdlNdwpFx52UQWxNWKZ5ekYmMR3SP4uPpMdRC9GW9etlJZmiVD6ZF1cFhGmwDwlnntrmRUx2I=
X-Received: by 2002:adf:e350:: with SMTP id n16mr6491736wrj.160.1644506594914;
Thu, 10 Feb 2022 07:23:14 -0800 (PST)
In-Reply-To: <ef4ede55-3e23-483f-887c-b6a45112de1bn@googlegroups.com>
X-BeenThere: python-list@python.org
X-Mailman-Version: 2.1.39
Precedence: list
List-Id: General discussion list for the Python programming language
<python-list.python.org>
List-Unsubscribe: <https://mail.python.org/mailman/options/python-list>,
<mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive: <https://mail.python.org/pipermail/python-list/>
List-Post: <mailto:python-list@python.org>
List-Help: <mailto:python-list-request@python.org?subject=help>
List-Subscribe: <https://mail.python.org/mailman/listinfo/python-list>,
<mailto:python-list-request@python.org?subject=subscribe>
X-Mailman-Original-Message-ID: <CAPTjJmpSECwJT5wU69yd390ezpPGPqtMakrB+NStTyiDsCNxAw@mail.gmail.com>
X-Mailman-Original-References: <CAPTjJmoAXy5wuHEbgbbL3KadjSx+3YJ-a3OUtAqpY2wSSRVefQ@mail.gmail.com>
<028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
<mailman.84.1644482467.7010.python-list@python.org>
<ef4ede55-3e23-483f-887c-b6a45112de1bn@googlegroups.com>
 by: Chris Angelico - Thu, 10 Feb 2022 15:23 UTC

On Fri, 11 Feb 2022 at 02:15, NArshad <narshad.380@gmail.com> wrote:
>
> -ChrisA:
> You don't reply if you have problems.
> When I don't find any solution elsewhere then only I place in this group
>

You're a help vampire. Stop it.

https://slash7.com/2006/12/22/vampires/

Go do some actual research instead of asking people to do your homework.

ChrisA

Re: How to solve the given problem?

<su3b5o$u45$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17010&group=comp.lang.python#17010

  copy link   Newsgroups: comp.lang.python
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: aurio...@gmx.de (Christian Gollwitzer)
Newsgroups: comp.lang.python
Subject: Re: How to solve the given problem?
Date: Thu, 10 Feb 2022 16:29:54 +0100
Organization: A noiseless patient Spider
Lines: 20
Message-ID: <su3b5o$u45$1@dont-email.me>
References: <CAPTjJmoAXy5wuHEbgbbL3KadjSx+3YJ-a3OUtAqpY2wSSRVefQ@mail.gmail.com>
<028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
<mailman.84.1644482467.7010.python-list@python.org>
<ef4ede55-3e23-483f-887c-b6a45112de1bn@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Thu, 10 Feb 2022 15:32:08 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="19c4ade47c0ac6257c15d47b2fdacbe8";
logging-data="30853"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+iCvb4q4r3BI37CRPEKlviLjabIhMtUSI="
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:91.0)
Gecko/20100101 Thunderbird/91.5.1
Cancel-Lock: sha1:eMAB1OwUo7pI5GkvX0HDQhwXsok=
In-Reply-To: <ef4ede55-3e23-483f-887c-b6a45112de1bn@googlegroups.com>
 by: Christian Gollwitzer - Thu, 10 Feb 2022 15:29 UTC

Am 10.02.22 um 11:26 schrieb NArshad:
> -ChrisA:
> You don't reply if you have problems.
> When I don't find any solution elsewhere then only I place in this group
>
>
> -Christian:
> One problem of different type requires the same elaboration.

No it doesn't

> Q. What technique of statistics or numerical computation or general mathematics to use to solve this problem. Can you tell one example
>
> Find the values of 𝑥subscript(𝑖) for i from 1 to n (n =100).

WTF? Go study maths yourself instead of asking here (Offf-topic as well)

Christian

Re: How to solve the given problem?

<mailman.103.1644530114.7010.python-list@python.org>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17030&group=comp.lang.python#17030

  copy link   Newsgroups: comp.lang.python
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!not-for-mail
From: Marco.Su...@gmail.com (Marco Sulla)
Newsgroups: comp.lang.python
Subject: Re: How to solve the given problem?
Date: Thu, 10 Feb 2022 22:54:34 +0100
Lines: 2
Message-ID: <mailman.103.1644530114.7010.python-list@python.org>
References: <028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
<CABbU2U9cEVSzH6r2z-vTiBh7ZOghVd2ApjUAv42f0pTfx=EUHQ@mail.gmail.com>
Mime-Version: 1.0
Content-Type: text/plain; charset="UTF-8"
X-Trace: news.uni-berlin.de WoOsC5tH9VX5pAjPWLrpBgWghVauhjHmq2KUazfvyGiA==
Return-Path: <elbarbun@gmail.com>
X-Original-To: python-list@python.org
Delivered-To: python-list@mail.python.org
Authentication-Results: mail.python.org; dkim=pass
reason="2048-bit key; unprotected key"
header.d=gmail.com header.i=@gmail.com header.b=aspqVIBk;
dkim-adsp=pass; dkim-atps=neutral
X-Spam-Status: OK 0.012
X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'subject:problem': 0.03;
'cc:addr:python-list': 0.09; 'received:209.85.219': 0.09; 'cc:no
real name:2**0': 0.14; 'from:name:marco sulla': 0.16; 'happy.':
0.16; 'cc:addr:python.org': 0.20; 'subject:How': 0.23; 'cc:2**0':
0.25; 'message-id:@mail.gmail.com': 0.32; "i'm": 0.33; 'header:In-
Reply-To:1': 0.34; 'received:google.com': 0.34;
'from:addr:gmail.com': 0.35; 'received:209.85': 0.37;
'received:209': 0.39; 'your': 0.64
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112;
h=mime-version:references:in-reply-to:from:date:message-id:subject:to
:cc; bh=/V34eZYN/ZJX+pcoD6t3UOHWoBaaRvhIgt940eFIBfk=;
b=aspqVIBkObzXPg1kxoK5iyVXeZoeeB2gEFeZOsMq9n6BL35mgX/pL9LqabFiWPz3CH
azhi3VrY4pdggKsjECEv1xIUEcu7PMeAhmXtdYQpTO6tst+HpsoNOhFYcGxLTvix3GU1
do+w/xp/Fk5W79/AHqlMN18JS6JJlUhow3NuXLRlRo8SaqJTyWYHSsdGkh1pSethQAtV
DQDekyvJSi0HnPO4kw7vJcYh6u45s9ZViP6un6zEia+n9td+vVV3xzNXoR2tZH6ii2Yb
fJ1r1aiPeW9I2jEXoVLOaldEZULPauudFemB8XTcWgd/1x5L02rpwj/ZRS43guAPXl5B
iYjw==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=1e100.net; s=20210112;
h=x-gm-message-state:mime-version:references:in-reply-to:from:date
:message-id:subject:to:cc;
bh=/V34eZYN/ZJX+pcoD6t3UOHWoBaaRvhIgt940eFIBfk=;
b=1f2+lSNGUdLujwgIYyjizSl/jPnxzHfLDV5aQoSZPn/74gGwT/wVF7XX98Jvk1uN7B
FpOHIc72J3+5fTcwQs7Hk7wku3ukEX6uuSmNBjW1+SmOA+5PBUGgZmb0gDA2afnso0Nu
KuNlLtJ7kUfzfc2leGW1g3pQBqvHtiZOc7WI0Z+6OvQe4S5cUp/k7M7+zUELbTud+xHw
NOvxJTgo8rXTxpsaIW440+rrEhSn0hGYmA0hEALQ22393clL8nwZKl3QWS/TTavhh4oP
yJWpEjbhXtLCtQD3xKBWKLRN2sav2Ozd6PxQ8XwOOK6lWs4rusx8OQCWlkTwmDnyHZGs
goug==
X-Gm-Message-State: AOAM533AZoz8Nb51lP2osbg/ey1Qqruy9/Pjfc8Lll3UUB0AG//+3jKp
rWBTxPrwefa/LojOVzCkxsCDdWl5wfq56MJW85XjkGFN
X-Google-Smtp-Source: ABdhPJyeopeXDRI7YdglgBGKze3deg2KpwckR2O14krAqlPIZN7Pm4PEYGOxNQGPNOZJXzCaQ4pJMwrLAdulTRipqJ0=
X-Received: by 2002:a25:dc06:: with SMTP id y6mr9098478ybe.692.1644530110905;
Thu, 10 Feb 2022 13:55:10 -0800 (PST)
In-Reply-To: <028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
X-BeenThere: python-list@python.org
X-Mailman-Version: 2.1.39
Precedence: list
List-Id: General discussion list for the Python programming language
<python-list.python.org>
List-Unsubscribe: <https://mail.python.org/mailman/options/python-list>,
<mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive: <https://mail.python.org/pipermail/python-list/>
List-Post: <mailto:python-list@python.org>
List-Help: <mailto:python-list-request@python.org?subject=help>
List-Subscribe: <https://mail.python.org/mailman/listinfo/python-list>,
<mailto:python-list-request@python.org?subject=subscribe>
X-Mailman-Original-Message-ID: <CABbU2U9cEVSzH6r2z-vTiBh7ZOghVd2ApjUAv42f0pTfx=EUHQ@mail.gmail.com>
X-Mailman-Original-References: <028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
 by: Marco Sulla - Thu, 10 Feb 2022 21:54 UTC

Narshad, I propose you post your questions to StackOverflow. I'm sure
they will be very happy.

Re: How to solve the given problem?

<mailman.106.1644533830.7010.python-list@python.org>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17033&group=comp.lang.python#17033

  copy link   Newsgroups: comp.lang.python
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!not-for-mail
From: avigr...@verizon.net (Avi Gross)
Newsgroups: comp.lang.python
Subject: Re: How to solve the given problem?
Date: Thu, 10 Feb 2022 22:57:05 +0000 (UTC)
Lines: 27
Message-ID: <mailman.106.1644533830.7010.python-list@python.org>
References: <028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
<1323924283.239248.1644533825969@mail.yahoo.com>
Reply-To: Avi Gross <avigross@verizon.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-Trace: news.uni-berlin.de W9ofPtmsW//ZpvcDvm4LuQ2WXnPDl3Gy5v55ya9ui4gg==
Return-Path: <avigross@verizon.net>
X-Original-To: python-list@python.org
Delivered-To: python-list@mail.python.org
Authentication-Results: mail.python.org; dkim=pass
reason="2048-bit key; unprotected key"
header.d=verizon.net header.i=@verizon.net header.b=DvzY4T6P;
dkim-adsp=pass; dkim-atps=neutral
X-Spam-Status: OK 0.168
X-Spam-Level: *
X-Spam-Evidence: '*H*': 0.67; '*S*': 0.00; 'subject:problem': 0.03;
'2022': 0.05; 'problem?': 0.09; 'url:mailman': 0.15; 'day)': 0.16;
'frustration': 0.16; 'patterns.': 0.16; 'feb': 0.17; 'instead':
0.17; 'solve': 0.19; 'implement': 0.19; 'thu,': 0.19; 'to:addr
:python-list': 0.20; 'subject:How': 0.23; 'to:name:python-
list@python.org': 0.24; 'skip:- 10': 0.25; 'url-
ip:188.166.95.178/32': 0.25; 'url-ip:188.166.95/24': 0.25;
'url:listinfo': 0.25; 'url-ip:188.166/16': 0.25; 'anyone': 0.25;
'seems': 0.26; 'library': 0.26; 'pattern': 0.26; 'url-ip:188/8':
0.31; 'think': 0.32; 'amounts': 0.32; 'assume': 0.32;
'discussions': 0.32; 'there': 0.33; '100': 0.33; 'distribute':
0.33; 'someone': 0.34; 'header:In-Reply-To:1': 0.34; 'fix': 0.36;
'special': 0.37; 'methods': 0.39; 'rest': 0.39; 'try': 0.40;
'should': 0.40; '10,': 0.61; 'from:': 0.62; 'to:': 0.62; 'today,':
0.62; 'below:': 0.63; 'hours': 0.63; 'questions?': 0.64;
'received:74.6.135': 0.64; 'similar': 0.65; 'pay': 0.65; 'day':
0.66; 'earlier': 0.67; 'day.': 0.68; 'excel': 0.69; 'remaining':
0.69; 'person.': 0.70; 'attention': 0.71; 'note:': 0.71; 'sent:':
0.78; 'header:Reply-To:1': 0.79; 'unit': 0.81; 'absolutely': 0.84;
'opt': 0.89; 'tend': 0.91
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=verizon.net; s=a2048;
t=1644533827; bh=02bCfxJxHW3FRIvD1qHj+L5lBa1JiOPbj2PMKno36gk=;
h=Date:From:Reply-To:To:In-Reply-To:References:Subject:From:Subject:Reply-To;
b=DvzY4T6PC22Lob4/yWKLlqNHiSkb7G5JbcI3qPaqm3uy12wli9s3E++K6ftagT/XOB2l3LwbHFL7+ZTkSRjILrdlgTxvEcCzexQEZJqBhJhmGYEhfsCZCCh1v6yxyiwMq3bTQDg1KCYSM4bO8exG58zyFCbHE6rHuDiDq4MIyRdQU09JiQAKmoV3yk0KWTIto1yT+N9NQid0d5RkDhqeh9b9j6TWSv/V+30zEqp1l3NBogjl694gqY5Q4dfjJ+iFKrtYjOcVXReduti9w8pMXaESlnCbCSsOwTb6hS91ZEhDlAZzjgPArUTzVIAY9L0QzyvD+I7c/X13hmRKUC3LGg==
X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048;
t=1644533827; bh=X0X+S4Rm3beu28uk0OfdkX3e4SAuv3FQWAnjut9fSof=;
h=X-Sonic-MF:Date:From:To:Subject:From:Subject;
b=gCU4YcestSspOudQ3dd4kpmsbSnoDfrMAnCZTHU126UVwJGDFV+g5EkwunsAwR4Hxs3lFvxxfKm3NXThFY86GLpowfylQr6S0pT9BEazqjD4pKYZHSRW1AEvI1f8oxuIGsfgKAFoR04IMADOliFwMyxTpKlTlSf8UfWP/4U1g8LDDjo+arZhBCcoEBMzgH/u1xRRlT167BZaTE+6Sgd7p6krHs8wc4f47sBC6UixsJTkPOSS8yNXTDxkPNk/GoUZwypojXpb2Ml8T+WXOuLzAAq+Z2TJW7UZ28tt45tUzyME+FBfwNK8p61O5sjmt4fLZ1TDgbcH6qS4w+q7Iab8aQ==
X-YMail-OSG: DMkWLGIVM1lkDKAx6_.iGq87vE_a0WPRxshi68FNFGnSAD4Yc3L0hYamrBpHerH
i7gYDYacQxUByR.mF0jHncYXM1OJVePCzp8vrIr.Av6l6fcp1402VOGwqa3G81h3iRUIfW3VnfaX
K5zcdMbLoKKcosYlb1im4tNsEu9iTbSy.mkUnBIjERe3ymafX3CnF8veBA1gFDDvJDvs124ZHfyx
JBnPR6JF_qGo0AQPRTJkhpYhCgqrJFF1sXV47Grmva8Yj.5T5.wzxYiYBMXqAC_Eo7rvD4IVgpfk
QKRi83voRcl_W0nYTQeq5qrVKJIyG0y.eVBqlMNwZJY5.c_rLIcXp.1C9pjtAO2oCV7hxhyZElQp
Z_e7auJtag9dFC.gHIZyI56ecBh_fP31YsUD9UfAl1pal5N82iGiyG7phjDoypnLQvPvCB7o1UuW
UcFmrvhqkgWkbZV5yAYN.NXUHwuaY9soybxlS333X2zzv6SWxTgN93h7ebtWKkyfGG8bdTFBb8SZ
gXydBdayWWRT0.2yBhdJ6HscgDEMfaJquZQfZWlnYcrTAKTY3TnlDWco3oQeaTK7vbL0w_suxQ5K
2cUjgQ3GT2JZiuSJBS2Jkh5AnD6cTLxaya0nPhB22Ilk8_ZNn0aROovk7vKzLISpfc00DPlW5dB_
bpqGHGMbaOEyE8myLxLjrFg5BYLSKEYBfvX31Xo4hvsjnVnTR7YHdeSErceto8RkqtDBbnNlNCfO
W7Gkdy_twANNo6izJUd1kW0rB0q2K7flI3n0lZJQr_BJ_ujR0dqBqwapb8JPMCrjr8tE2E.P_6VE
hJgqVE23wDHGc_3xFH8Bz4IqrAWH3TvDduVOPZmOiLD1FxHMUeWjCh87vCGsVnuhvjXZPUFZR3Sg
CQTLf46yp9ND5Y3M8ar5KKFewnM3p2pkrvpFdp48zoUvDvsHLuTrUPeqoU0PZw541fsz6jTmOcHP
iDYwTQt.JoVPYBHOEyPciyNSlKlUdi328.ICVhYLkNMfAjMkckeJn8U2ZtRn6M.4lY_.yHLVK2kS
1WGS6_xuwM8AB_Cy6OI4Ijx5K7Q3pmxGRmcJEVGd3K1gK45SEcx3cpuJpD_jXMNNwhuWg7uQ3ZvT
Llwh9giHT1s.81PLUmUfW8Zqi4OVSmCAMfXFHE2u52s.ksUKrfiM59.jdLtGNJF3RyDj0vBnzF82
WO25ndtjGg.LKDWcjvMLif5pSGRDfqXwA_tCSvftjzqxNyqUGUeQ9eqM7VQGqBz17R56aUOtRuqd
5qWFTOC9QOprO8UY9CwsS3OUS3hKMnB_LhOJD9UuX7uIkgvSyMaYaOsTtP4nmT_N77MQ8Nwl1FBT
RcjGaKNO7zeWNlJf.CVmbiEhEraIUGNuJX_iI4ZlPYXhXO3U3UOqK.QpuVXHaaW__F2LGaH2ax1k
eJSSDKiOtZ7BP0KYccbe1CMEEp4NKEYmKTAIdKBr1XJcdUEtu7kIzZgE_Tk3FWvXoFiZeTxnmfj.
4hnMDaHf0QS4QXWEjAWaY4IwOUm6oNmYuVTO4BX4C62lS6k7t1rskvfmg0sjryR0AJDTxPpUpOI3
HNZ9jxhzcSFL2iXG8XqYI1QkeTwOgfPPf85Wlex_QBayHhmlF24VUwVDN21rt9csqCpiFe7GbfT7
xCJjJlS0qKJoKGokT6wbmLyUNkcjRFaFOcWidVz_2jf_2zPx5th.pVakG1Lzx7Sl.ylYh.OZOdu_
ahSy6h1MzvAGHLQrPlJTGWDY8pLaG_lTf.22H6A4JAZoKZ3ceftIC3GFJvPKQPdrUGPjMER8MTeT
n7_8wsIMJ.L5L2YD_tID2NSzgLbHkTXAbHNTaTjQfTH3feqv.GHv.ZgePqcov7_rX5A7PDb1mTQQ
FFiCA_ySFyRGFcdNzs4TzhNqd.ih0e1jjgHqXYBiFRMOR3Aic63OzgeRKHPBVIc369hGEFQPfO7O
uBu3KgEBFTyfmhXFdyrRc3ak0Rehndm3_VaunBFypcmF9ZjGRsT2iPY704pU5k055Bz.LsusbZZO
FtR6nOSqrMynkq4_u2wOWGoHDwrfBZZld03ZyEYvZsEyQJcpCf96nlknG3rlZEtAuA2h1DEASv.Z
dKT1W5I13Qekm5w6WKaBr.AosN6.7HwIJpKs.2rPVvFrwjHmdbb9mn5HiFFnVELfL5A5vt0ZKyPG
OBtHyjxsD2YNnI6mquOiVKXy69zkX6aPfRpJfkhngTTrr0H.aK3PPuyHu4XmsoonV.8Tvs.mNP0n
ARlO16jUvWywZrFMEbIbJ7JSWhC4R
X-Sonic-MF: <avigross@verizon.net>
In-Reply-To: <028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
X-Mailer: WebService/1.1.19724 aolwebmail
X-Content-Filtered-By: Mailman/MimeDel 2.1.39
X-BeenThere: python-list@python.org
X-Mailman-Version: 2.1.39
Precedence: list
List-Id: General discussion list for the Python programming language
<python-list.python.org>
List-Unsubscribe: <https://mail.python.org/mailman/options/python-list>,
<mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive: <https://mail.python.org/pipermail/python-list/>
List-Post: <mailto:python-list@python.org>
List-Help: <mailto:python-list-request@python.org?subject=help>
List-Subscribe: <https://mail.python.org/mailman/listinfo/python-list>,
<mailto:python-list-request@python.org?subject=subscribe>
X-Mailman-Original-Message-ID: <1323924283.239248.1644533825969@mail.yahoo.com>
X-Mailman-Original-References: <028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com>
 by: Avi Gross - Thu, 10 Feb 2022 22:57 UTC

Anyone think someone keeps asking homework questions? This seems absolutely unrelated to earlier discussions from this person. Jobs often tend to remain focused.
I opt out after frustration with earlier exchanges with NArshad about library books and EXCEL ...

-----Original Message-----
From: NArshad <narshad.380@gmail.com>
To: python-list@python.org
Sent: Thu, Feb 10, 2022 1:40 am
Subject: How to solve the given problem?

Assume that there is a pattern of feeding for a special fish in a day (10 hours a day) as below:
                              150    100    30    30    30    20    20    10    5    5
Today, the fish is fed in the second hour 60 unit instead of 100 unit Accidently. Implement some methods to distribute the remaining 40 unit in the rest of the day and propose the new patterns. Try to keep the distribution similar to the current feeding pattern.
Note: pay attention that the total feeding amounts should be fix in a day.
--
https://mail.python.org/mailman/listinfo/python-list

Re: How to solve the given problem?

<1d8c2edf-6d36-4af5-81d5-b60d74a951a3n@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17070&group=comp.lang.python#17070

  copy link   Newsgroups: comp.lang.python
X-Received: by 2002:a05:6214:4104:b0:42c:1db0:da28 with SMTP id kc4-20020a056214410400b0042c1db0da28mr906521qvb.67.1644997995980;
Tue, 15 Feb 2022 23:53:15 -0800 (PST)
X-Received: by 2002:a05:622a:608:b0:2db:65c9:3ca0 with SMTP id
z8-20020a05622a060800b002db65c93ca0mr1122444qta.655.1644997995853; Tue, 15
Feb 2022 23:53:15 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.python
Date: Tue, 15 Feb 2022 23:53:15 -0800 (PST)
In-Reply-To: <mailman.106.1644533830.7010.python-list@python.org>
Injection-Info: google-groups.googlegroups.com; posting-host=37.111.130.65; posting-account=IftX_woAAACUMrPm_t7tPycPRLi3x_9J
NNTP-Posting-Host: 37.111.130.65
References: <1323924283.239248.1644533825969@mail.yahoo.com>
<028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com> <mailman.106.1644533830.7010.python-list@python.org>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <1d8c2edf-6d36-4af5-81d5-b60d74a951a3n@googlegroups.com>
Subject: Re: How to solve the given problem?
From: narshad....@gmail.com (NArshad)
Injection-Date: Wed, 16 Feb 2022 07:53:15 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 6
 by: NArshad - Wed, 16 Feb 2022 07:53 UTC

The feed remaining of the second hour will be distributed and adjusted in the next third and fourth hour not the next day because the fish must be hungry. This can be done by both taking the average or the percentage left. What I think is taking the average and then distributing in the third and fourth feed is better. If the feed is given in the next day there is a chance that the fish will not survive because the fish is special.

Re: How to solve the given problem?

<d089e36b-99c5-43a2-a3a1-49a599f0d90dn@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17071&group=comp.lang.python#17071

  copy link   Newsgroups: comp.lang.python
X-Received: by 2002:a5d:588a:0:b0:1e8:b478:e74f with SMTP id n10-20020a5d588a000000b001e8b478e74fmr1632590wrf.210.1645093253907;
Thu, 17 Feb 2022 02:20:53 -0800 (PST)
X-Received: by 2002:a05:622a:18b:b0:2dc:e6ab:e2ac with SMTP id
s11-20020a05622a018b00b002dce6abe2acmr1726222qtw.87.1645093253605; Thu, 17
Feb 2022 02:20:53 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.128.87.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.python
Date: Thu, 17 Feb 2022 02:20:53 -0800 (PST)
In-Reply-To: <vtbq0hh47arejt7m9ogncl9gig2be7hmjn@4ax.com>
Injection-Info: google-groups.googlegroups.com; posting-host=37.111.139.27; posting-account=IftX_woAAACUMrPm_t7tPycPRLi3x_9J
NNTP-Posting-Host: 37.111.139.27
References: <1323924283.239248.1644533825969@mail.yahoo.com>
<028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com> <mailman.106.1644533830.7010.python-list@python.org>
<1d8c2edf-6d36-4af5-81d5-b60d74a951a3n@googlegroups.com> <vtbq0hh47arejt7m9ogncl9gig2be7hmjn@4ax.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <d089e36b-99c5-43a2-a3a1-49a599f0d90dn@googlegroups.com>
Subject: Re: How to solve the given problem?
From: narshad....@gmail.com (NArshad)
Injection-Date: Thu, 17 Feb 2022 10:20:53 +0000
Content-Type: text/plain; charset="UTF-8"
 by: NArshad - Thu, 17 Feb 2022 10:20 UTC

I have completed the homework or what so ever it used to be its only I am telling the solution which looks to me as better as compared to what others have given like the one that Christian has given.

Re: How to solve the given problem?

<ed03b9df-c8a2-47d3-ab91-3cc538710d0en@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17215&group=comp.lang.python#17215

  copy link   Newsgroups: comp.lang.python
X-Received: by 2002:a05:620a:cee:b0:60d:d694:44b3 with SMTP id c14-20020a05620a0cee00b0060dd69444b3mr7010578qkj.604.1645872556214;
Sat, 26 Feb 2022 02:49:16 -0800 (PST)
X-Received: by 2002:a05:620a:81a:b0:60d:f4ea:b79 with SMTP id
s26-20020a05620a081a00b0060df4ea0b79mr6975433qks.460.1645872556067; Sat, 26
Feb 2022 02:49:16 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.python
Date: Sat, 26 Feb 2022 02:49:15 -0800 (PST)
In-Reply-To: <1g1t0hdrj3tn1jqvnevicare8r2i26bhbb@4ax.com>
Injection-Info: google-groups.googlegroups.com; posting-host=103.7.77.9; posting-account=IftX_woAAACUMrPm_t7tPycPRLi3x_9J
NNTP-Posting-Host: 103.7.77.9
References: <1323924283.239248.1644533825969@mail.yahoo.com>
<028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com> <mailman.106.1644533830.7010.python-list@python.org>
<1d8c2edf-6d36-4af5-81d5-b60d74a951a3n@googlegroups.com> <vtbq0hh47arejt7m9ogncl9gig2be7hmjn@4ax.com>
<d089e36b-99c5-43a2-a3a1-49a599f0d90dn@googlegroups.com> <1g1t0hdrj3tn1jqvnevicare8r2i26bhbb@4ax.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <ed03b9df-c8a2-47d3-ab91-3cc538710d0en@googlegroups.com>
Subject: Re: How to solve the given problem?
From: narshad....@gmail.com (NArshad)
Injection-Date: Sat, 26 Feb 2022 10:49:16 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 0
 by: NArshad - Sat, 26 Feb 2022 10:49 UTC

Its better to adjust the feed in the coming next two feeds that is the third and fourth one. Thirty or thirty one units in the third feed and the remaining units which are nine or ten in the fourth feed.

Re: How to solve the given problem?

<bcbcb97e-af60-44a3-acd6-24efb5c6a0dan@googlegroups.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=17351&group=comp.lang.python#17351

  copy link   Newsgroups: comp.lang.python
X-Received: by 2002:a05:6214:c4b:b0:432:df0e:7a09 with SMTP id r11-20020a0562140c4b00b00432df0e7a09mr23568178qvj.127.1646416950990;
Fri, 04 Mar 2022 10:02:30 -0800 (PST)
X-Received: by 2002:ae9:e907:0:b0:4b2:aa79:b6b9 with SMTP id
x7-20020ae9e907000000b004b2aa79b6b9mr3331730qkf.173.1646416950789; Fri, 04
Mar 2022 10:02:30 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!1.us.feeder.erje.net!feeder.erje.net!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.python
Date: Fri, 4 Mar 2022 10:02:30 -0800 (PST)
In-Reply-To: <v62t1hhm0sbsicvridif0pvh9thkbtuv1c@4ax.com>
Injection-Info: google-groups.googlegroups.com; posting-host=39.57.135.249; posting-account=IftX_woAAACUMrPm_t7tPycPRLi3x_9J
NNTP-Posting-Host: 39.57.135.249
References: <1323924283.239248.1644533825969@mail.yahoo.com>
<028b56df-5ff5-4fd7-9205-eea6bdc569d7n@googlegroups.com> <mailman.106.1644533830.7010.python-list@python.org>
<1d8c2edf-6d36-4af5-81d5-b60d74a951a3n@googlegroups.com> <vtbq0hh47arejt7m9ogncl9gig2be7hmjn@4ax.com>
<d089e36b-99c5-43a2-a3a1-49a599f0d90dn@googlegroups.com> <v62t1hhm0sbsicvridif0pvh9thkbtuv1c@4ax.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <bcbcb97e-af60-44a3-acd6-24efb5c6a0dan@googlegroups.com>
Subject: Re: How to solve the given problem?
From: narshad....@gmail.com (NArshad)
Injection-Date: Fri, 04 Mar 2022 18:02:30 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 2
 by: NArshad - Fri, 4 Mar 2022 18:02 UTC

You have made everything too complicated. Just adjust the units left in the second feed into the third and fourth feed because the fish is special and that's it. The next day the second feed will be 100 units the way it used to be.

What's wrong with the solution which I have written?

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor