Jump to content

miawade

Member
  • Posts

    13
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

miawade's Achievements

Newbie

Newbie (2/6)

3

Reputation

  1. Hi there, just wanted to ask what you think of Appzila vip apk?! You get 90 small apps for 0.79,--... I mean most apps are gimmicks but a few in the pack are alright... Your opinion?
  2. So I won something in the lottery and paid for it. Does anyone know how long it will take to ship to the LCBO I picked? And will I receive an email notification when it's ready for pickup result?
  3. Okay, so this may be the wrong community to post to but I need help. I want to get my daughter (who is black) hand puppets for Christmas. Looking now due to expected shipping delays. fire emblem heroes unlimited orbs apk I would like to get her somewhat fairy tale themed puppets, but am having trouble finding black characters. Any suggestions on where to look?
  4. Hi everyone!I'm looking to buy a slow juicer and I'd like to ask a few questions about certain things.- Some companies list the operating time of the equipment (more specifically Hurom) to be 30 minutes. Does this mean that after 30min the juicer stops automatically because it has a built-in protection (overheat-protection e.g.) or the 30min is the average time for making a glass of juice? breville-bje200xl-juice-fountain-compact- Connecting to the previous question, can I juice 1kg or even 5kg of tomatoes in one sitting?- Also another question is that every slow-juicer has strains? Or can be purchased separately, I don't mind if it doesn't come with the package and has to be bought, but I want to be sure the company is offering replacements or maybe a variety.- Can I filter the tomato seeds? Or even strawberry seeds? (because of colitis)- Which kind of juicers do you recommend to a daily use or squeeze the tomatoes in the summer?The ones that I've found quality enough is Hurom, Breville, Omega, Angel juicer.The country I'm buying from is in eastern Europe.Thank you for the help! I know it's a lot to ask at first but I'd like to make a conscious decision, and been searching and thinking about these things for a while now without consensus.
  5. When using certain apps, specifically the stock email app and Metal for FB, sombols such as ', / " $ when used will swap out numbers or letters or jumble full words. Examples $30 will turn into $$0 after the 0 is added. Typing don't will change to don'' once the t is typed. Ive cleared and reset my keyboard settings, I don't use predictive text or autocorrect.
  6. Hi.I need help starting this assignment. The teacher/class is way over my head and I HAVE to do well on this assignment to pass...So if anyone could assist me in doing and understanding this assignment, it would be greatly appreciated.Thank you!____________________________________________________________________________We will write a program to solve word jumbles. You have probably seen them in the newspaper every day. Quick - what word is formed from the letters 'mezia'? 'cidde'? 'hucnah'? 'bouste'? Your program will solve these by brute force. It will have a list of English words (from Program 8, Spell Checker), and it will generate all permutations of the letters in the jumble. When it finds a permutation that is in the word list, its done.daily jumble answerRequirementsFirst, use your WordListIndexed to store the English language dictionary from the Spell Checker program. Our jumbles won't contain any punctuation marks or abbreviations. Don't store them in your WordListIndexed.The primary class in this assignment, StringPermutationIterator, generates all the permutations of the letters in a given string. This class must have an iterator interface: next( ) and hasNext( ) (no remove( ) member function). There are two major challenges for this class. First, generate the permutations recursively. For example, to generate the permutations of a four letter string, put one of the four letters as the first letter and combine it will all permutations of the remaining 3 letters. Repeat until each letter has been used at the front (see example). For simplicity, you may assume that all the letters in the input string are unique (no duplications). If this assumption does not hold then we simply generate some duplicates that cause your program to run a little slower. We still get the correct result. Second, you must generate the permutations incrementally. It is not allowed to generate all permutations, store them in a list, and have the iterator walk down the list. Nor is it allowed to utilize the fact that there will be exactly n! permutations. You must create a true dynamic iterator that generates one at a time the elements of the set of permutations. See the general plan for dynamic iterators*.Primary classes: StringPermutationIterator.Application: Write a short main method that unscrambles the 4 jumbles from the first paragraph of this assignment plus 'ueassrkpc'.____________________________________________________________________________See example:SPI("cats")'c' + an of SPI("ats"). When SPI("ats") rolls over (false == hasNext()), createan new nested SPI object'a' + an object SPI("cts"). When SPI("cts") rolls over, create a new SPI object't' + an object SPI("cas") create SPI("cat")'s' + an object SPI("cat") When SPI("cat") rolls over, we are done.SPI("cats").hasNext() == false*General plan for dynamic iterators:public class DynamicIterator<String>implements Iterator<String> {String buffer;boolean hasNext() { return buffer != null; }String next() {String result = buffer;buffer = createNextElement();return result;}}
  7. ok basicly I need to make a looping program that will output every possible combination of a word... like say I enter in the word "racecar" it would out putracecaracecareit also doesnt need to be connected to a dictionary to test to see if the words are actual words, it just needs to create every possible combination of the letters...get what I am saying? word descrambler
×
×
  • Create New...