To Adminstrator-- How can i get the recognization........

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Indianraja
    New Member
    • Apr 2007
    • 22

    To Adminstrator-- How can i get the recognization........

    sir...
    actually i did the zudoku prog in c. It comes under only in 100 lines.... and i checked some zudoku solutions alredy solved by others.... its r too big.... wht i want is i want to knw my prog is good r not.... how can i knw sir....
    if is it good comparing to other solutions did by others, then hw can i get the recognization.. ....plz tell me.... i wil sent the codings for that after getting the reply.....
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by Indianraja
    sir...
    actually i did the zudoku prog in c. It comes under only in 100 lines.... and i checked some zudoku solutions alredy solved by others.... its r too big.... wht i want is i want to knw my prog is good r not.... how can i knw sir....
    if is it good comparing to other solutions did by others, then hw can i get the recognization.. ....plz tell me.... i wil sent the codings for that after getting the reply.....
    When comparing programs, you don't just look at the number of lines only. There are many factors to consider: recoverability, usability, efficiency, e.t.c. Your program can be better than another in one aspect but might be inferior in another different aspect.

    Comment

    • Ganon11
      Recognized Expert Specialist
      • Oct 2006
      • 3651

      #3
      Exactly. I remember I was trying to make a function that would determine the total number of ways I could reach a monetary total X given a money set Y (a.k.a. reaching $0.25 with penny, nickel, and dime). My final solution ended up being about 10 lines of code. The solution given with the contest (as this problem was in a contest) was about 3 times as long, but when I ran both programs with the same input, mine took about 5 seconds while the other took less than 1 second. The given solution was far more efficient (I think it used dynamic programming or some such advanced technique).

      Comment

      • Indianraja
        New Member
        • Apr 2007
        • 22

        #4
        Originally posted by r035198x
        When comparing programs, you don't just look at the number of lines only. There are many factors to consider: recoverability, usability, efficiency, e.t.c. Your program can be better than another in one aspect but might be inferior in another different aspect.
        k sir...... how can i know abt my efficiency of the programme...... tel me plz

        Comment

        Working...