Our server costs ~$56 per month to run. Please consider donating or becoming a Patron to help keep the site running. Help us gain new members by following us on Twitter and liking our page on Facebook!
Current time: April 19, 2024, 3:18 am

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Here's a simple programming problem for you to solve
#11
RE: Here's a simple programming problem for you to solve
nested for loops. You can figure out how many and what to iterate over.
Reply
#12
RE: Here's a simple programming problem for you to solve
(April 26, 2016 at 10:51 am)Cthulhu Dreaming Wrote: nested for loops. You can figure out how many and what to iterate over.

Lol! I Kind of expected something more!!! Tongue
Reply
#13
RE: Here's a simple programming problem for you to solve
(April 26, 2016 at 11:27 am)pool the great Wrote:
(April 26, 2016 at 10:51 am)Cthulhu Dreaming Wrote: nested for loops.  You can figure out how many and what to iterate over.

Lol!  I Kind of expected something more!!! Tongue

You could also have it represented as z digits of mod x and simply add 1 to that until you overflow.
The fool hath said in his heart, There is a God. They are corrupt, they have done abominable works, there is none that doeth good.
Psalm 14, KJV revised edition

Reply
#14
RE: Here's a simple programming problem for you to solve
In python:

Code:
import itertools

if __name__ == '__main__':
   S = list(input('Input string: '))
   z = int(input('Input integer: '))
   for combo in itertools.product(S, repeat=z):
       print(''.join(str(c) for c in combo))
Reply
#15
RE: Here's a simple programming problem for you to solve
https://www.youtube.com/watch?v=PztgWdMEJdg
Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.

Albert Einstein
Reply
#16
RE: Here's a simple programming problem for you to solve
(April 26, 2016 at 11:27 am)pool the great Wrote:
(April 26, 2016 at 10:51 am)Cthulhu Dreaming Wrote: nested for loops.  You can figure out how many and what to iterate over.

Lol!  I Kind of expected something more!!! Tongue

Hint: you will have an array of char, and the number of items should be countable.  You will also have a number of items, which is (obviously) countable.  Now, what to do with those numbers?
Reply
#17
RE: Here's a simple programming problem for you to solve
(April 26, 2016 at 11:27 am)pool the great Wrote:
(April 26, 2016 at 10:51 am)Cthulhu Dreaming Wrote: nested for loops.  You can figure out how many and what to iterate over.

Lol!  I Kind of expected something more!!! Tongue

My consulting rate is $150/hour, two hour minimum.
Reply
#18
RE: Here's a simple programming problem for you to solve
Lol this is totally your homework.
"There remain four irreducible objections to religious faith: that it wholly misrepresents the origins of man and the cosmos, that because of this original error it manages to combine the maximum servility with the maximum of solipsism, that it is both the result and the cause of dangerous sexual repression, and that it is ultimately grounded on wish-thinking." ~Christopher Hitchens, god is not Great

PM me your email address to join the Slack chat! I'll give you a taco(or five) if you join! --->There's an app and everything!<---
Reply
#19
RE: Here's a simple programming problem for you to solve
Totally.

Homework is $300/hr.
Reply
#20
RE: Here's a simple programming problem for you to solve
(April 26, 2016 at 3:16 pm)AFTT47 Wrote: https://www.youtube.com/watch?v=PztgWdMEJdg

He's already said it isn't his homework.  It's his "friend's" homework.

-

Sets can't have duplications, so if you dump all your results into a set, that will eliminate the duplicates.
Reply



Possibly Related Threads...
Thread Author Replies Views Last Post
  Cryptocurrency in simple details. WinterHold 49 3204 September 10, 2021 at 11:02 am
Last Post: Spongebob
  Programming Language Swift Poll Shining_Finger 24 4181 December 2, 2015 at 7:21 pm
Last Post: bennyboy
  Programming Question Shining_Finger 8 1366 December 2, 2015 at 5:30 pm
Last Post: Tiberius
  Programming the Human Mind: Shining_Finger 21 4585 November 24, 2015 at 7:56 pm
Last Post: bennyboy
  Anyone into Android programming? emjay 97 18184 September 20, 2015 at 6:50 am
Last Post: bennyboy
  Advice Sought for Web Programming AFTT47 13 3266 April 4, 2015 at 10:41 pm
Last Post: bennyboy



Users browsing this thread: 1 Guest(s)