Is my friend cheating?

SungJunEun·2021년 11월 11일
0

Codewars 문제풀이

목록 보기
13/26
post-thumbnail

Description:

  • A friend of mine takes the sequence of all numbers from 1 to n (where n > 0).
  • Within that sequence, he chooses two numbers, a and b.
  • He says that the product of a and b should be equal to the sum of all numbers in the sequence, excluding a and b.
  • Given a number n, could you tell me the numbers he excluded from the sequence?

The function takes the parameter: n (n is always strictly greater than 0) and returns an array or a string (depending on the language) of the form:

[(a, b), ...] or [[a, b], ...] or {{a, b}, ...} or or [{a, b}, ...]

with all (a, b) which are the possible removed numbers in the sequence 1 to n.

[(a, b), ...] or [[a, b], ...] or {{a, b}, ...} or ... will be sorted in increasing order of the "a".

It happens that there are several possible (a, b). The function returns an empty array (or an empty string) if no possible numbers are found which will prove that my friend has not told the truth! (Go: in this case return nil).

Examples:

removNb(26) should return [(15, 21), (21, 15)]
or
removNb(26) should return { {15, 21}, {21, 15} }
or
removeNb(26) should return [[15, 21], [21, 15]]
or
removNb(26) should return [ {15, 21}, {21, 15} ]
or
removNb(26) should return "15 21, 21 15"

My solution:

function removeNb (n) {
  let a;
  let b;
  let result = [];
  const gaus = sum(n);

  for(a = 1; a<=n; a++) {
    b = (gaus-a) / (a+1) ;
    if(Number.isInteger(b) && b<=n) {
      result.push([a,b]);
    }
  }
  return result;
}

// sum function using reduce methodfunction sum(number) {
  let array=[];
  for(i = 1; i<=number ;i++) {
    array.push(i);
  }
  const sums = array.reduce(function(acc,cur){
    return acc+cur;
  });

  return sums;
}

Best solutions:

function removeNb (n) {
  // from the instruction:
  // a * b = S(n) - a - b
  
  // and the sum of all first n natural numbers is
  // S(n) = n * (n + 1) / 2
  
  // so we can refrase the first formula like this:
  // a * b = n * (n + 1) / 2 - a - b
  // a * b + b = n * (n + 1) / 2 - a
  // b * (a + 1) = n * (n + 1) / 2 - a
  // b = (n * (n + 1) / 2 - a) / (a + 1)
  
  // but a and b are natural and up to n
  
  var results = [];
  for (var a = 1; a <= n; a++) {
    var b = (n * (n + 1) / 2 - a) / (a + 1);
    if (b % 1 === 0 && b <= n) results.push([a, b]);
  }
  return results;
}

유일한 차이점은 'sum(1~n)을 구할 때 어느 방식을 사용했느냐'이다.

profile
블록체인 개발자(진)

50개의 댓글

comment-user-thumbnail
2023년 5월 6일

The https://www.airslate.com/workflows/document/shopping Academy guides each of you and your colleagues through a comprehensive certification programme that teaches you all you need to know about constructing any sort of workflow online, configuring Bots, and simulating real-world use cases.

답글 달기
comment-user-thumbnail
2023년 5월 18일

Determining whether your friend is cheating can be a complex situation. It's important to approach it with caution and gather evidence before jumping to conclusions. Trust and open communication are key. I say you can visit https://www.yellowbirdproject.com/how-to-spy-on-someones-text-messages-without-their-phone-for-free/ and gain skills about girlfriend chat. If you suspect something, have an honest conversation with your friend, expressing your concerns and seeking clarification. Remember to maintain a non-accusatory tone, as misunderstandings can often arise in relationships.

답글 달기
comment-user-thumbnail
2025년 5월 20일

Fabulous post, you have denoted out some fantastic points, I likewise think this s a very wonderful website. I will visit again for more quality contents and also, recommend this site to all. Thanks.https://m120.com/themes/pages/1xbet_promo_code_india_today_bonus.html

답글 달기
comment-user-thumbnail
2025년 5월 20일

Maximize your deposit with Linebet’s promo code BNB777! Get a 100% bonus up to €130. Win big.code promo linebet 200 de bonus

답글 달기
comment-user-thumbnail
2025년 6월 4일

I read that Post and got it fine and informative.como usar codigo promocional 1xbet

답글 달기
comment-user-thumbnail
2025년 6월 12일

Excellent article. Very interesting to read. I really love to read such a nice article. Thanks! keep rocking.恵比寿 英語 アルバイト

답글 달기
comment-user-thumbnail
2025년 6월 17일

POL88 adalah situs slot online gacor terpercaya dengan RTP tinggi dan game dari provider ternama. Daftar sekarang untuk nikmati jackpot besar serta bonus harian yang banyak. situs slot gacor

답글 달기
comment-user-thumbnail
2025년 6월 17일

I haven’t any word to appreciate this post.....Really i am impressed from this post....the person who create this post it was a great human..thanks for shared this with us. Buy btc

답글 달기
comment-user-thumbnail
2025년 6월 17일

I haven’t any word to appreciate this post.....Really i am impressed from this post....the person who create this post it was a great human..thanks for shared this with us. slot scatter hitam

답글 달기
comment-user-thumbnail
2025년 6월 22일

Thanks for sharing this quality information with us. I really enjoyed reading. Will surely going to share this URL with my friends. jay rufer

답글 달기
comment-user-thumbnail
2025년 6월 23일

Wow, What an Outstanding post. I found this too much informatics. It is what I was seeking for. I would like to recommend you that please keep sharing such type of info.If possible, Thanks. บอลสเต็ป

답글 달기
comment-user-thumbnail
2025년 6월 23일

This is my first time visit here. From the tons of comments on your articles,I guess I am not only one having all the enjoyment right here! DeepL

답글 달기
comment-user-thumbnail
2025년 6월 24일

Awesome article! I want people to know just how good this information is in your article. It’s interesting, compelling content. Your views are much like my own concerning this subject. situs togel alam

답글 달기
comment-user-thumbnail
2025년 6월 24일

Nice to be visiting your blog once more, it has been months for me. Well this article that ive been waited for therefore long. i want this article to finish my assignment within the faculty, and it has same topic together with your article. Thanks, nice share. picfair reviews

답글 달기
comment-user-thumbnail
2025년 6월 26일

Determining whether your friend is cheating can be a complex situation. It's important to approach it wi
agen togel
agen togel online
togel 4d
olxtoto
togel 4d
paito togel sgp

답글 달기
comment-user-thumbnail
2025년 6월 29일
답글 달기
comment-user-thumbnail
2025년 6월 29일

You make so many great points here that I read your article a couple of times. Your views are in accordance with my own for the most part. This is great content for your readers.olxtoto alternatif

답글 달기
comment-user-thumbnail
2025년 6월 30일

Thanks for the blog loaded with so many information. Stopping by your blog helped me to get what I was looking for.iosbet login

답글 달기
comment-user-thumbnail
2025년 6월 30일

Thanks for the blog post buddy! Keep them coming...keluaran toto macau

답글 달기
comment-user-thumbnail
2025년 7월 1일

Thanks for a very interesting blog. What else may I get that kind of info written in such a perfect approach? I’ve a undertaking that I am simply now operating on, and I have been at the look out for such info.mawartoto login

답글 달기
comment-user-thumbnail
2025년 7월 1일

I admire this article for the well-researched content and excellent wording. I got so involved in this material that I couldn’t stop reading. I am impressed with your work and skill. Thank you so much.keytoto

답글 달기
comment-user-thumbnail
2025년 7월 1일

Wow, What a Excellent post. I really found this to much informatics. It is what i was searching for.I would like to suggest you that please keep sharing such type of info.ThanksSports betting India

답글 달기
comment-user-thumbnail
2025년 7월 2일

I felt very happy while reading this site. This was really very informative site for me. I really liked it. This was really a cordial post. Thanks a lot!. SoundCloud Download

답글 달기
comment-user-thumbnail
2025년 7월 7일

Thanks for the blog filled with so many information. Stopping by your blog helped me to get what I was looking for. Now my task has become as easy as ABC.toto macau resmiagenolxWorld Cup betting in Californiaonline casino for Californialocal sprinkler repair servicecommercial pest control dallas

답글 달기
comment-user-thumbnail
2025년 7월 13일

This is just the information I am finding everywhere. Thanks for your blog, I just subscribe your blog. This is a nice blog.. olxtoto slot login This is just the information I am finding everywhere. Thanks for your blog, I just subscribe your blog. This is a nice blog.. olxtoto login alternatif This is just the information I am finding everywhere. Thanks for your blog, I just subscribe your blog. This is a nice blog.. bebtoto link This is just the information I am finding everywhere. Thanks for your blog, I just subscribe your blog. This is a nice blog.. slot via dana This is just the information I am finding everywhere. Thanks for your blog, I just subscribe your blog. This is a nice blog.. keluaran macau This is just the information I am finding everywhere. Thanks for your blog, I just subscribe your blog. This is a nice blog.. bandar togel online

답글 달기
comment-user-thumbnail
2025년 7월 14일

Your content is nothing short of brilliant in many ways. I think this is engaging and eye-opening material. Thank you so much for caring about your content and your readers.situs slot gacor

답글 달기
comment-user-thumbnail
2025년 7월 17일

You make so many great points here that I read your article a couple of times. Your views are in accordance with my own for the most part. This is great content for your readers.วิเคราะห์บอล 7m

답글 달기
comment-user-thumbnail
2025년 7월 19일

Cool stuff you have got and you keep update all of us.

답글 달기
comment-user-thumbnail
2025년 7월 19일

Cool stuff you have got and you keep update all of us.situs slot gacor

답글 달기
comment-user-thumbnail
2025년 7월 19일

I can set up my new idea from this post. It gives in depth information. Thanks for this valuable information for all,.. macau jitu This is just the information I am finding everywhere. Thanks for your blog, I just subscribe your blog. This is a nice blog.. casino88 This type of message always inspiring and I prefer to read quality content, so happy to find good place to many here in the post, the writing is just great, thanks for the post. slot online This is such a great resource that you are providing and you give it away for free. I love seeing blog that understand the value. Im glad to have found this post as its such an interesting one! I am always on the lookout for quality posts and articles so i suppose im lucky to have found this! I hope you will be adding more in the future... olxtoto macau Thanks for taking the time to discuss this, I feel strongly that love and read more on this topic. If possible, such as gain knowledge, would you mind updating your blog with additional information? It is very useful for me. toto toge Thanks for taking the time to discuss this, I feel strongly that love and read more on this topic. If possible, such as gain knowledge, would you mind updating your blog with additional information? It is very useful for me. situs toto 176 login

답글 달기
comment-user-thumbnail
2025년 7월 19일

Everything has its value. Thanks for sharing this informative information with us. GOOD works!toto

답글 달기
comment-user-thumbnail
2025년 7월 21일

This is actually the kind of information I have been trying to find. Thank you for writing this information.situs toto togel 4Dmawartotomawartotomawartotomawartotomawartoto

답글 달기
comment-user-thumbnail
2025년 7월 22일

Your website is really cool and this is a great inspiring article.togel online

답글 달기
comment-user-thumbnail
2025년 7월 22일

I really like your writing style, great information, thankyou for posting.miototo

답글 달기
comment-user-thumbnail
2025년 7월 24일

New web site is looking good. Thanks for the great effort.keytoto login

답글 달기
comment-user-thumbnail
2025년 7월 24일

Thanks for another wonderful post. Where else could anybody get that type of info in such an ideal way of writing?togel 4d

답글 달기
comment-user-thumbnail
2025년 7월 27일

Great post, and great website. Thanks for the information!situs toto 176

답글 달기
comment-user-thumbnail
2025년 7월 28일

Interesting and amazing how your post is! It Is Useful and helpful for me That I like it very much, and I am looking forward to Hearing from your next..olxtoto 24 jamslot dax69olxtoto alternatifbandar macaubandar togelolxtoto login

답글 달기
comment-user-thumbnail
2025년 7월 28일

Interesting and amazing how your post is! It Is Useful and helpful for me That I like it very much, and I am looking forward to Hearing from your next..olxtoto 24 jamslot dax69olxtoto alternatifbandar macaubandar togelolxtoto login

답글 달기
comment-user-thumbnail
2025년 7월 29일

I appreciate everything you have added to my knowledge base.Admiring the time and effort you put into your blog and detailed information you offer.Thanks. macau jitu Interesting post. I Have Been wondering about this issue, so thanks for posting. Pretty cool post.It 's really very nice and Useful post.Thanks casino88 I’ve been searching for some decent stuff on the subject and haven't had any luck up until this point, You just got a new biggest fan!.. pol88 Thanks for taking the time to discuss this, I feel strongly about it and love learning more on this topic. If possible, as you gain expertise, would you mind updating your blog with more information? It is extremely helpful for me. olxtoto I just found this blog and have high hopes for it to continue. Keep up the great work, its hard to find good ones. I have added to my favorites. Thank You. toto toge I just found this blog and have high hopes for it to continue. Keep up the great work, its hard to find good ones. I have added to my favorites. Thank You. situs toto 176 login

답글 달기
comment-user-thumbnail
2025년 7월 31일

I was surfing net and fortunately came across this site and found very interesting stuff here. Its really fun to read. I enjoyed a lot. Thanks for sharing this wonderful information.harga toto

답글 달기
comment-user-thumbnail
2025년 8월 2일

You have a real ability for writing unique content. I like how you think and the way you represent your views in this article. I agree with your way of thinking. Thank you for sharing.seo optimization services

답글 달기
comment-user-thumbnail
2025년 8월 4일

I learn some new stuff from it too, thanks for sharing your information.mahkota338

답글 달기
comment-user-thumbnail
2025년 8월 15일

Your post having informative & valuable content, it will be helpful.
https://www.thedarkattitude.com/mens-clothing/men-gothic-alternative-pant-for-sale

답글 달기
comment-user-thumbnail
2025년 8월 25일

Thanks for a very interesting blog. What else may I get that kind of info written in such a perfect approach? I’ve a undertaking that I am simply now operating on, and I have been at the look out for such info. Slot Gacor

situs toto

slot toto

TOTOXL

답글 달기