PURECODER_IR Telegram 1070
بنظرت کدوم یک از کدهای زیر بهتره و راحتر میتونی بخونی و بفهمیش؟

(این کد قراره عامل های اول عدد n رو محاسبه کنه!!!)
1⃣
List<int> PrimeFactorsOf(int n)
{
var factors = new List<int>();
int divisor = 2;

while (n > 1)
{
while (n % divisor == 0)
{
factors.Add(divisor);
n /= divisor;
}
divisor++;
}

return factors;
}

2⃣
List<int> PrimeFactorsOf(int n)
{
var factors = new List<int>();

for (int divisor = 2; n > 1; divisor++)
for (; n % divisor == 0; n /= divisor)
factors.Add(divisor);

return factors;
}

توضیحی داشتی توی کامنت بگو 🙏😍

@purecoder_ir
👍2🏆1



tgoop.com/purecoder_ir/1070
Create:
Last Update:

بنظرت کدوم یک از کدهای زیر بهتره و راحتر میتونی بخونی و بفهمیش؟

(این کد قراره عامل های اول عدد n رو محاسبه کنه!!!)

1⃣
List<int> PrimeFactorsOf(int n)
{
var factors = new List<int>();
int divisor = 2;

while (n > 1)
{
while (n % divisor == 0)
{
factors.Add(divisor);
n /= divisor;
}
divisor++;
}

return factors;
}

2⃣
List<int> PrimeFactorsOf(int n)
{
var factors = new List<int>();

for (int divisor = 2; n > 1; divisor++)
for (; n % divisor == 0; n /= divisor)
factors.Add(divisor);

return factors;
}

توضیحی داشتی توی کامنت بگو 🙏😍

@purecoder_ir

BY Pure Coder


Share with your friend now:
tgoop.com/purecoder_ir/1070

View MORE
Open in Telegram


Telegram News

Date: |

Those being doxxed include outgoing Chief Executive Carrie Lam Cheng Yuet-ngor, Chung and police assistant commissioner Joe Chan Tung, who heads police's cyber security and technology crime bureau. With the administration mulling over limiting access to doxxing groups, a prominent Telegram doxxing group apparently went on a "revenge spree." Polls For crypto enthusiasts, there was the “gm” app, a self-described “meme app” which only allowed users to greet each other with “gm,” or “good morning,” a common acronym thrown around on Crypto Twitter and Discord. But the gm app was shut down back in September after a hacker reportedly gained access to user data. In the “Bear Market Screaming Therapy Group” on Telegram, members are only allowed to post voice notes of themselves screaming. Anything else will result in an instant ban from the group, which currently has about 75 members.
from us


Telegram Pure Coder
FROM American