Lottery number checker


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Lottery number checker
# 8  
Old 02-01-2018
If your shell supports arrays this change based on rdrtx1's original may suffice:

Code:
mx=50
mn=35
while (( ${#LN[@]} < mn ))
do
   read -p "Enter numbers from 1 to 50 ($((mn - ${#LN[@]})) to go): " numbers

   for num in $numbers
   do
       ((num < 1 || num > mx)) && echo "$num is invalid" || LN[num]=$num
       (( ${#LN[@]} == mn )) && break 2
   done
   echo "Numbers entered so far: ${LN[@]}"
done

for i in {1..10}; do printf "%d\n" {1..50} | shuf -n 6 | sort -g | tr '\n' ' ' ;echo; done > my_numbers
# or use input file

awk '
   NR==1 {
      print "";
      print "Lottery Numbers: " lottery_numbers;
      print "";
      printf("%-25s\t%-10s\t%-10s\n", "My Numbers", "#s Matched", "Result")
      n=split(lottery_numbers, ln);
   }
   {
      c=0;
      for (i=1; i<=NF; i++) for (j=1; j<=n ; j++) if ($i==ln[j]) c++;
      printf("%-25s\t%-10d\t%-10s\n", $0, c, ((c < 6) ? "lose" : "win"));
   }
' lottery_numbers="${LN[*]}" my_numbers

# 9  
Old 02-02-2018
Hi Chubler,

The script worked out well with your modification.. Thanks a lot...
Between, I got what I expected.
Code:
[root@linux lottery]# sh script.sh
Enter numbers from 1 to 50 (35 to go): 2        19      47      1       46      3       6       11      15      17      26      29      32      34      40      44      48      49      5       7       9     13       22      23      25      27      45      4       8       10      14      16      18      30      35

Lottery Numbers: 1 2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 22 23 25 26 27 29 30 32 34 35 40 44 45 46 47 48 49

My Numbers                      #s Matched      Result
4 17 21 25 33 48                4               lose
10 24 26 28 32 44               4               lose
5 7 24 44 48 49                 5               lose
3 7 17 23 32 47                 6               win
5 28 34 36 38 45                3               lose
18 20 27 43 48 49               4               lose


But with this result, i need to generate the sequence of 6 nos within the 35 numbers i have mentioned and need to compare with the my_numbers file.
# 10  
Old 02-02-2018
Is this the sort of thing you mean?

Code:
mx=50
mn=35
while (( ${#LN[@]} < mn ))
do
   read -p "Enter numbers from 1 to 50 ($((mn - ${#LN[@]})) to go): " numbers

   for num in $numbers
   do
      [[ $num =~ ^([[:digit:]])+$ ]] && ((num > 0 && num <= mx)) && LN[num]=$num ||
           echo "$num is invalid"
       (( ${#LN[@]} == mn )) && break 2
   done
   echo "Numbers entered so far: ${LN[@]}"
done

for i in {1..10}; do printf "%d\n" {1..50} | shuf -n 6 | sort -g | tr '\n' ' ' ;echo; done > my_numbers
lottery_numbers=$(printf "%d\n" ${LN[@]}| shuf -n 6 | sort -g| tr '\n' ' ')
# or use input file

awk '
   NR==1 {
      print "";
      print "Lottery Numbers: " lottery_numbers;
      print "";
      printf("%-25s\t%-10s\t%-10s\n", "My Numbers", "#s Matched", "Result")
      n=split(lottery_numbers, ln);
   }
   {
      c=0;
      for (i=1; i<=NF; i++) for (j=1; j<=n ; j++) if ($i==ln[j]) c++;
      printf("%-25s\t%-10d\t%-10s\n", $0, c, ((c < 6) ? "lose" : "win"));
   }
' lottery_numbers="$lottery_numbers" my_numbers

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. What is on Your Mind?

Nu Html Checker at w3.org

Started out today with around 350 errors or warnings using the Nu Html Checker. After working nearly 6 hours, it's down to only 6 (5 errors and 1 warning). What an accomplishment! LOL https://www.unix.com/members/1-albums215-picture943.png (2 Replies)
Discussion started by: Neo
2 Replies

2. Shell Programming and Scripting

Lottery result checker

So, i made a simple lottery number generator like this: for i in `seq 10`; do seq 1 35 | shuf -n 7 | sort -g | tr '\n' ' ' ;echo; done i've file with winning numbers: Eg:1 10 15 20 25 30 35 2 6 10 14 18 22 26 My problem here is how to compare or check if my generated numbers are match... (10 Replies)
Discussion started by: PuLPi
10 Replies

3. Debian

Getting a better spell checker

Guys I am new to Linux in general and want to know what is the use of the following files-: /usr/share/dict/words /usr/share/dict/words.pre-dictionaries-common Are they used by the spell checker to find potential typos ? If so are there any better larger word lists out there ? I am sure... (2 Replies)
Discussion started by: sreyan32
2 Replies

4. Shell Programming and Scripting

64-32 architecture checker also OS version

hello is it possible to check systsme architecture and also system OS versions? like 32 bit centos 5 64 bit centos 6 how about cpu versions? (6 Replies)
Discussion started by: nimafire
6 Replies

5. Homework & Coursework Questions

spell checker script

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: When "niuspell" is invoked from the command line it reads "file" and checks it for spelling of the words it... (1 Reply)
Discussion started by: Jeffthrow5
1 Replies

6. What is on Your Mind?

This Weeks Lottery - Jackpot Now 219,500 Bits

If you want to win some Bits, the jackpot for tomorrow's drawing is up to 219,500 Bits Lottery tickets are only 100 Bits :D (0 Replies)
Discussion started by: Neo
0 Replies

7. Shell Programming and Scripting

Date format checker

Hi I want the user to enter a date in the format 16-APR-2000 . I need to put validations for that in my script .. Please help Thanks and Regards Ultimatix (1 Reply)
Discussion started by: ultimatix
1 Replies

8. Programming

Proxy Checker in C

Hello Everyone Im planning to make a C program to check a proxy server if it is working or bot, test the proxy speed ,response time , as well as a proxy type. i'm learning using libcurl right now to fetch http headers. do you guys have some links about how to check proxy headers?. Thank you. ... (0 Replies)
Discussion started by: magictalong
0 Replies

9. Shell Programming and Scripting

spell checker program

2.I need shell script to list all the 'words' in a given file (text) that are not listed in a specified dictionary. Let us call this utility 'spell-check'. 'spell-check' will be called as follows. $ spell-check letter Lucent UNIX UNIX OS a $ dictionary words are listed in lower... (2 Replies)
Discussion started by: ksjanakan
2 Replies
Login or Register to Ask a Question