Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - leewillz

Pages: [1] 2
1
It's on the very top of the first post.
i got it now its not available on the mobile version so thats why it didnt show up.
I am almost locking this topic, i am sorry, but this is already planned for the next version of evilzone.
Feel free to orgranize un-official things
so this isnt allowed to go on?

2
I was about to say that the problems you stated were slightly long for a week, well for some people who will only want to spend 2 hours max on it for the week, but there deffo good ideas! If this goes well it might expand to programmer of the month with a bigger program like that to do, anyway so the poll has been added to where? Haha I'm on the mobile version so I don't know where its on here haha

3
this is great! im glad theres interest!
If there would be someone dedicated to post problems then maybe we could think about it.
i'd be more han happy to post problems up weekly, well it would probably have to be every 2 weeks as a week for voting and announcing the programmer of the week.
should we start a poll to see how many want this to be added or not then if its a majority vote well add a Programmer Of The Week sub-forum, how does that sound?

4
hi all, just been thinking of a way to joing the whole prograaming section together.
what does everyone think about doing a sort of "Programming Exercise" so basically every week someone sets a problem then everyone who wants to participates just post their solution in which ever way they wnt,either in c/++ java.... anyway you think you can make a solution you do it that way the winner will be judged by maybe 3 judges who score each participant out of 10 then add the scores of each entrant together to declare the programmer of the week, and maybe the winner is entitled to a badge or logo to display in their name like "POTW Week 1" in their signature. just an idea, im not an expert in any programming language by far but if every entrant creates a program that just needs to be compiled and ran or just ran through an exe, then the judging could be made on the presentation of the answer, the overall quality of the code and what functions are used and if they are the best way, anyway just an idea  and it would be something for everyone to do in their spare time and i think it would also benefit the forum. let me know if you think the idea is great, good, awfull, not even comprehendable, if you would do it or not
thanks.

5
Java / Re: anyone done regex before?
« on: May 17, 2012, 11:36:11 pm »
haha excellent (just how i like it)  ;)

6
Java / Re: anyone done regex before?
« on: May 17, 2012, 02:36:29 pm »
correction, the reason was very simple i wasnt clearing the orig_word arraylist so basically when you were enterring yrraa it was looking for yrraa but then when you enter raary it was actually looking for yrraaraary because it wasnt clearing the array this should solve it.
Code: [Select]
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Scanner;

public class Scrambled {

    public static String scrambled_word;
    public static ArrayList<String> dictionary = new ArrayList<String>();
    public static ArrayList<Character> orig_word = new ArrayList<Character>();
    public static ArrayList<Character> array_elem = new ArrayList<Character>();
    public static char[] array_elem1 = new char[100];
    public static char[] orig_word1 = new char[100];
    public static boolean quit = false;

    public static void main(String[] args) throws FileNotFoundException, IOException {
       
            try{
               
             BufferedReader in = new BufferedReader(new FileReader("C:\\Users\\Lee\\Documents\\NetBeansProjects\\Lab12\\src\\lab15\\read.txt"));
            int add = 0;
             while(in.ready()){               
                 dictionary.add(add, in.readLine());
                   add++;             
             }
             in=null;
             
            }catch(FileNotFoundException e)
            {
                System.out.println("File not found");
            }
             while (!quit) {
            Scanner s = new Scanner(System.in);
            removeElem(orig_word);
            removeElem(array_elem);
            System.out.println("Enter a string to look for:>");
            scrambled_word = s.nextLine();
            if (scrambled_word.equalsIgnoreCase("q")) {
                quit = true;
            } else {
                orig_word1 = scrambled_word.toCharArray();
                for (int i = 0; i < orig_word1.length; i++) {
                    orig_word.add(orig_word1[i]);
                }

                for (int i = 0; i < dictionary.size(); i++) {

                    if (compare(scrambled_word.length(), dictionary.get(i).length()) == 0) {
                     
                        array_elem1 = dictionary.get(i).toCharArray();
                        swap(array_elem1);

                        if (matchWord()) {
                            System.out.println(dictionary.get(i) + " is the word you are loooking for");

                        } else {
                           
                        }
                    }
                    removeElem(array_elem);
                }

            }
        }
    }

    public static int compare(int a, int b) {

        return a - b;

    }

    public static void swap(char[] words) {
        for (int i = 0; i < words.length; i++) {
            array_elem.add(words[i]);
        }


    }

    public static void removeElem(ArrayList array) {
        for (int i = array.size() - 1; i >= 0; i--) {
            array.remove(i);
        }
    }

    public static boolean matchWord() {
        // assuming scrambled is aready sorted

        int m = 0;
        for (int i = 0; i < orig_word.size(); i++) {
            for (int j = 0; j < array_elem.size(); j++) {

                if (orig_word.get(i) == array_elem.get(j)) {

                    m = 1;
                    array_elem.remove(j);
                    array_elem.trimToSize();
                    break;
                } else {
                }
            }
            if (m == 0) {
                return false;
            } else {
                m = 0;
            }
        }
        return true;
    }
}

7
Java / Re: anyone done regex before?
« on: May 17, 2012, 02:20:32 pm »
i know why that is aswell, when it finds array once it gets deleted from the arraylist so some more tweeking i think.

8
Java / Re: anyone done regex before?
« on: May 17, 2012, 01:53:05 pm »
hi  idont know whats going on there but ive just had a go on yrraa and it seems to pick it up :S ive done a few tweeks again ill post it now, this time ive used a text file with the words and it reads from the file to an array but main code is still the same.
Code: [Select]
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Scanner;

public class Scrambled {

    public static String scrambled_word;
    public static ArrayList<String> dictionary = new ArrayList<String>();
    public static ArrayList<Character> orig_word = new ArrayList<Character>();
    public static ArrayList<Character> array_elem = new ArrayList<Character>();
    public static char[] array_elem1 = new char[100];
    public static char[] orig_word1 = new char[100];
    public static boolean quit = false;

    public static void main(String[] args) throws FileNotFoundException, IOException {
        while (!quit) {
            try{
               removeElem(dictionary);
             BufferedReader in = new BufferedReader(new FileReader("C:\\Users\\Lee\\Documents\\NetBeansProjects\\Lab12\\src\\lab15\\read.txt"));
            int add = 0;
             while(in.ready()){               
                 dictionary.add(add, in.readLine());
                 add++;
               
             }
            }catch(FileNotFoundException e)
            {
                System.out.println("File not found");
            }
            Scanner s = new Scanner(System.in);
            System.out.println("Enter a string to look for:>");
            scrambled_word = s.nextLine();
            if (scrambled_word.equalsIgnoreCase("q")) {
                quit = true;
            } else {
                orig_word1 = scrambled_word.toCharArray();
                for (int i = 0; i < orig_word1.length; i++) {
                    orig_word.add(orig_word1[i]);
                }

                for (int i = 0; i < dictionary.size(); i++) {

                    if (compare(scrambled_word.length(), dictionary.get(i).length()) == 0) {
                     
                        array_elem1 = dictionary.get(i).toCharArray();
                        swap(array_elem1);

                        if (matchWord()) {
                            System.out.println(dictionary.get(i) + " is the word you are loooking for");

                        } else {
                           
                        }
                    }
                    removeElem(array_elem);
                }

            }
        }
    }

    public static int compare(int a, int b) {

        return a - b;

    }

    public static void swap(char[] words) {
        for (int i = 0; i < words.length; i++) {
            array_elem.add(words[i]);
        }


    }

    public static void removeElem(ArrayList array) {
        for (int i = array.size() - 1; i >= 0; i--) {
            array.remove(i);
        }
    }

    public static boolean matchWord() {
        // assuming scrambled is aready sorted

        int m = 0;
        for (int i = 0; i < orig_word.size(); i++) {
            for (int j = 0; j < array_elem.size(); j++) {

                if (orig_word.get(i) == array_elem.get(j)) {

                    m = 1;
                    array_elem.remove(j);
                    array_elem.trimToSize();
                    break;
                } else {
                }
            }
            if (m == 0) {
                return false;
            } else {
                m = 0;
            }
        }
        return true;
    }
}

9
Java / Re: anyone done regex before?
« on: May 17, 2012, 01:16:25 pm »
i think this has sored it out, basically ive changed it to an array list of the characters and when if finds the element it removes it from the arraylist therefore matching the correct ammount of letters in the word. let me know if it works for you  :)

Code: [Select]
import java.util.ArrayList;
import java.util.Scanner;

public class Scrambled {

    public static String scrambled_word;
    public static String[] dictionary = {"world", "array", "scrambled", "testing", "scrambley", "largeword", "abitlargerword", "download"};
    public static ArrayList<Character> orig_word = new ArrayList<Character>();
    public static ArrayList<Character> array_elem = new ArrayList<Character>();
    public static char[] array_elem1 = new char[100];
    public static char[] orig_word1 = new char[100];
    public static boolean quit = false;

    public static void main(String[] args) {
        while (!quit) {
            Scanner s = new Scanner(System.in);
            System.out.println("Enter a string to look for:>");
            scrambled_word = s.nextLine();
            if (scrambled_word.equalsIgnoreCase("q")) {
                quit = true;
            } else {
                orig_word1 = scrambled_word.toCharArray();
                for (int i = 0; i < orig_word1.length; i++) {
                    orig_word.add(orig_word1[i]);
                }

                for (int i = 0; i < dictionary.length; i++) {

                    if (compare(scrambled_word.length(), dictionary[i].length()) == 0) {
                        System.out.println("Testing: " + dictionary[i]);
                        array_elem1 = dictionary[i].toCharArray();
                        swap(array_elem1);

                        if (matchWord()) {
                            System.out.println(dictionary[i] + " is the word you are loooking for");

                        } else {
                            System.out.println("this is not the scrambled word");
                        }
                    }
                    removeElem();
                }

            }
        }
    }

    public static int compare(int a, int b) {

        return a - b;

    }

    public static void swap(char[] words) {
        for (int i = 0; i < words.length; i++) {
            array_elem.add(words[i]);
        }


    }

    public static void removeElem() {
        for (int i = array_elem.size() - 1; i >= 0; i--) {
            array_elem.remove(i);
        }
    }

    public static boolean matchWord() {
        // assuming scrambled is aready sorted

        int m = 0;
        for (int i = 0; i < orig_word.size(); i++) {
            for (int j = 0; j < array_elem.size(); j++) {

                if (orig_word.get(i) == array_elem.get(j)) {

                    m = 1;
                    array_elem.remove(j);
                    array_elem.trimToSize();
                    break;
                } else {
                }
            }
            if (m == 0) {
                return false;
            } else {
                m = 0;
            }
        }
        return true;
    }
}

10
Java / Re: anyone done regex before?
« on: May 17, 2012, 11:34:33 am »
indeed, i have thought of a way to overcome this, i shall test this now and post the results.

11
Java / Re: anyone done regex before?
« on: May 16, 2012, 11:10:08 pm »
ive just downloaded the file and tried to compile, the problem is the comment in the else statement,
else
                {//do nothing basically}
if u want it to run then get rid of the comment or the else in total, up to you but basically the comment is commenting out the bracket, work after that.

12
Java / Re: anyone done regex before?
« on: May 16, 2012, 06:55:46 pm »
the code does work fine, bearing in mind it was 2:30 on me doing it, the toChar method is pointless i see it now ive changed it, the output i get is attatched. ive not corrected everything is it works fine even if its not to "java convention"
 thanks Lee

13
Java / Re: anyone done regex before?
« on: May 16, 2012, 03:25:48 am »
excellent thanks for this, ive rewritten in java and adapted slightly this is what i have now and it works wonderfully!

14
Java / Re: anyone done regex before?
« on: May 16, 2012, 01:03:42 am »
thanks guys,
glad this sparked some interest and discussion, it was just something that interested me, being able to find a jumbled word from a list of words, the solutions are very good and different being the key, sadly i still have no complete solution to this but i will update you if i find one. thanks all for the replies!

15
Java / Re: How hard is it to code Android apps?
« on: May 12, 2012, 09:29:08 pm »
Iphone apps are programmed in objective-c, u need a mac for it u can use something like VMWare and host it on windows/unix but its probably bette to use a mac, anyway objective c isnt the hardest language to learn plus it comes with an ide called Xcode which does the apple design guidelines for you so all the gui is dealt in a storyboard feature, its probably easier than java if im honest and java is a piece off piss to learn so thats saying something!

Pages: [1] 2